go.mod 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. module github.com/sagernet/sing-box
  2. go 1.20
  3. require (
  4. github.com/adhocore/gronx v1.19.5
  5. github.com/caddyserver/certmagic v0.20.0
  6. github.com/cloudflare/circl v1.3.7
  7. github.com/cretz/bine v0.2.0
  8. github.com/dop251/goja v0.0.0-20250125213203-5ef83b82af17
  9. github.com/go-chi/chi/v5 v5.1.0
  10. github.com/go-chi/render v1.0.3
  11. github.com/gofrs/uuid/v5 v5.3.0
  12. github.com/insomniacslk/dhcp v0.0.0-20231206064809-8c70d406f6d2
  13. github.com/libdns/alidns v1.0.3
  14. github.com/libdns/cloudflare v0.1.1
  15. github.com/logrusorgru/aurora v2.0.3+incompatible
  16. github.com/metacubex/tfo-go v0.0.0-20241006021335-daedaf0ca7aa
  17. github.com/mholt/acmez v1.2.0
  18. github.com/miekg/dns v1.1.62
  19. github.com/oschwald/maxminddb-golang v1.12.0
  20. github.com/sagernet/asc-go v0.0.0-20241217030726-d563060fe4e1
  21. github.com/sagernet/bbolt v0.0.0-20231014093535-ea5cb2fe9f0a
  22. github.com/sagernet/cloudflare-tls v0.0.0-20231208171750-a4483c1b7cd1
  23. github.com/sagernet/cors v1.2.1
  24. github.com/sagernet/fswatch v0.1.1
  25. github.com/sagernet/gomobile v0.1.4
  26. github.com/sagernet/gvisor v0.0.0-20241123041152-536d05261cff
  27. github.com/sagernet/quic-go v0.49.0-beta.1
  28. github.com/sagernet/reality v0.0.0-20230406110435-ee17307e7691
  29. github.com/sagernet/sing v0.6.0-beta.12.0.20250130112616-23af22fe01ff
  30. github.com/sagernet/sing-mux v0.3.0-alpha.1
  31. github.com/sagernet/sing-quic v0.4.0-beta.4
  32. github.com/sagernet/sing-shadowsocks v0.2.7
  33. github.com/sagernet/sing-shadowsocks2 v0.2.0
  34. github.com/sagernet/sing-shadowtls v0.2.0-alpha.2
  35. github.com/sagernet/sing-tun v0.6.0-beta.8
  36. github.com/sagernet/sing-vmess v0.2.0-beta.2
  37. github.com/sagernet/smux v0.0.0-20231208180855-7041f6ea79e7
  38. github.com/sagernet/utls v1.6.7
  39. github.com/sagernet/wireguard-go v0.0.1-beta.5
  40. github.com/sagernet/ws v0.0.0-20231204124109-acfe8907c854
  41. github.com/spf13/cobra v1.8.1
  42. github.com/stretchr/testify v1.9.0
  43. go.uber.org/zap v1.27.0
  44. go4.org/netipx v0.0.0-20231129151722-fdeea329fbba
  45. golang.org/x/crypto v0.32.0
  46. golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56
  47. golang.org/x/mod v0.20.0
  48. golang.org/x/net v0.34.0
  49. golang.org/x/sys v0.29.0
  50. golang.zx2c4.com/wireguard/wgctrl v0.0.0-20230429144221-925a1e7659e6
  51. google.golang.org/grpc v1.63.2
  52. google.golang.org/protobuf v1.33.0
  53. howett.net/plist v1.0.1
  54. )
  55. //replace github.com/sagernet/sing => ../sing
  56. require (
  57. github.com/ajg/form v1.5.1 // indirect
  58. github.com/andybalholm/brotli v1.0.6 // indirect
  59. github.com/cenkalti/backoff/v4 v4.3.0 // indirect
  60. github.com/davecgh/go-spew v1.1.1 // indirect
  61. github.com/dgrijalva/jwt-go/v4 v4.0.0-preview1 // indirect
  62. github.com/dlclark/regexp2 v1.11.4 // indirect
  63. github.com/fsnotify/fsnotify v1.7.0 // indirect
  64. github.com/go-ole/go-ole v1.3.0 // indirect
  65. github.com/go-sourcemap/sourcemap v2.1.4+incompatible // indirect
  66. github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect
  67. github.com/gobwas/httphead v0.1.0 // indirect
  68. github.com/gobwas/pool v0.2.1 // indirect
  69. github.com/google/btree v1.1.3 // indirect
  70. github.com/google/go-cmp v0.6.0 // indirect
  71. github.com/google/go-querystring v1.1.0 // indirect
  72. github.com/google/pprof v0.0.0-20240727154555-813a5fbdbec8 // indirect
  73. github.com/hashicorp/yamux v0.1.2 // indirect
  74. github.com/inconshreveable/mousetrap v1.1.0 // indirect
  75. github.com/josharian/native v1.1.0 // indirect
  76. github.com/klauspost/compress v1.17.4 // indirect
  77. github.com/klauspost/cpuid/v2 v2.2.5 // indirect
  78. github.com/libdns/libdns v0.2.2 // indirect
  79. github.com/mdlayher/netlink v1.7.2 // indirect
  80. github.com/mdlayher/socket v0.4.1 // indirect
  81. github.com/onsi/ginkgo/v2 v2.9.7 // indirect
  82. github.com/pierrec/lz4/v4 v4.1.14 // indirect
  83. github.com/pmezard/go-difflib v1.0.0 // indirect
  84. github.com/quic-go/qpack v0.4.0 // indirect
  85. github.com/quic-go/qtls-go1-20 v0.4.1 // indirect
  86. github.com/sagernet/netlink v0.0.0-20240612041022-b9a21c07ac6a // indirect
  87. github.com/sagernet/nftables v0.3.0-beta.4 // indirect
  88. github.com/spf13/pflag v1.0.5 // indirect
  89. github.com/u-root/uio v0.0.0-20230220225925-ffce2a382923 // indirect
  90. github.com/vishvananda/netns v0.0.4 // indirect
  91. github.com/zeebo/blake3 v0.2.3 // indirect
  92. go.uber.org/multierr v1.11.0 // indirect
  93. golang.org/x/sync v0.10.0 // indirect
  94. golang.org/x/text v0.21.0 // indirect
  95. golang.org/x/time v0.7.0 // indirect
  96. golang.org/x/tools v0.24.0 // indirect
  97. golang.zx2c4.com/wintun v0.0.0-20230126152724-0fa3db229ce2 // indirect
  98. google.golang.org/genproto/googleapis/rpc v0.0.0-20240227224415-6ceb2ff114de // indirect
  99. gopkg.in/yaml.v3 v3.0.1 // indirect
  100. lukechampine.com/blake3 v1.3.0 // indirect
  101. )