go.mod 4.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. module github.com/sagernet/sing-box
  2. go 1.20
  3. require (
  4. github.com/caddyserver/certmagic v0.20.0
  5. github.com/cloudflare/circl v1.3.7
  6. github.com/cretz/bine v0.2.0
  7. github.com/go-chi/chi/v5 v5.1.0
  8. github.com/go-chi/render v1.0.3
  9. github.com/gofrs/uuid/v5 v5.3.0
  10. github.com/insomniacslk/dhcp v0.0.0-20231206064809-8c70d406f6d2
  11. github.com/libdns/alidns v1.0.3
  12. github.com/libdns/cloudflare v0.1.1
  13. github.com/logrusorgru/aurora v2.0.3+incompatible
  14. github.com/metacubex/tfo-go v0.0.0-20241006021335-daedaf0ca7aa
  15. github.com/mholt/acmez v1.2.0
  16. github.com/miekg/dns v1.1.62
  17. github.com/oschwald/maxminddb-golang v1.12.0
  18. github.com/sagernet/bbolt v0.0.0-20231014093535-ea5cb2fe9f0a
  19. github.com/sagernet/cloudflare-tls v0.0.0-20231208171750-a4483c1b7cd1
  20. github.com/sagernet/cors v1.2.1
  21. github.com/sagernet/fswatch v0.1.1
  22. github.com/sagernet/gomobile v0.1.4
  23. github.com/sagernet/gvisor v0.0.0-20241021032506-a4324256e4a3
  24. github.com/sagernet/quic-go v0.48.0-beta.1
  25. github.com/sagernet/reality v0.0.0-20230406110435-ee17307e7691
  26. github.com/sagernet/sing v0.5.0-rc.4.0.20241101160402-8452992a6369
  27. github.com/sagernet/sing-dns v0.3.0-rc.2.0.20241023053951-feb6d5403f2a
  28. github.com/sagernet/sing-mux v0.2.1-0.20241020175909-fe6153f7a9ec
  29. github.com/sagernet/sing-quic v0.3.0-rc.1
  30. github.com/sagernet/sing-shadowsocks v0.2.7
  31. github.com/sagernet/sing-shadowsocks2 v0.2.0
  32. github.com/sagernet/sing-shadowtls v0.1.4
  33. github.com/sagernet/sing-tun v0.4.0-rc.4.0.20241023054150-3b5b396d06f7
  34. github.com/sagernet/sing-vmess v0.1.12
  35. github.com/sagernet/smux v0.0.0-20231208180855-7041f6ea79e7
  36. github.com/sagernet/utls v1.6.7
  37. github.com/sagernet/wireguard-go v0.0.0-20231215174105-89dec3b2f3e8
  38. github.com/sagernet/ws v0.0.0-20231204124109-acfe8907c854
  39. github.com/spf13/cobra v1.8.1
  40. github.com/stretchr/testify v1.9.0
  41. go.uber.org/zap v1.27.0
  42. go4.org/netipx v0.0.0-20231129151722-fdeea329fbba
  43. golang.org/x/crypto v0.28.0
  44. golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56
  45. golang.org/x/mod v0.20.0
  46. golang.org/x/net v0.30.0
  47. golang.org/x/sys v0.26.0
  48. golang.zx2c4.com/wireguard/wgctrl v0.0.0-20230429144221-925a1e7659e6
  49. google.golang.org/grpc v1.63.2
  50. google.golang.org/protobuf v1.33.0
  51. howett.net/plist v1.0.1
  52. )
  53. require (
  54. github.com/ajg/form v1.5.1 // indirect
  55. github.com/andybalholm/brotli v1.0.6 // indirect
  56. github.com/davecgh/go-spew v1.1.1 // indirect
  57. github.com/fsnotify/fsnotify v1.7.0 // indirect
  58. github.com/go-ole/go-ole v1.3.0 // indirect
  59. github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect
  60. github.com/gobwas/httphead v0.1.0 // indirect
  61. github.com/gobwas/pool v0.2.1 // indirect
  62. github.com/google/btree v1.1.3 // indirect
  63. github.com/google/go-cmp v0.6.0 // indirect
  64. github.com/google/pprof v0.0.0-20231101202521-4ca4178f5c7a // indirect
  65. github.com/hashicorp/yamux v0.1.2 // indirect
  66. github.com/inconshreveable/mousetrap v1.1.0 // indirect
  67. github.com/josharian/native v1.1.0 // indirect
  68. github.com/klauspost/compress v1.17.4 // indirect
  69. github.com/klauspost/cpuid/v2 v2.2.5 // indirect
  70. github.com/libdns/libdns v0.2.2 // indirect
  71. github.com/mdlayher/netlink v1.7.2 // indirect
  72. github.com/mdlayher/socket v0.4.1 // indirect
  73. github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
  74. github.com/onsi/ginkgo/v2 v2.9.7 // indirect
  75. github.com/pierrec/lz4/v4 v4.1.14 // indirect
  76. github.com/pmezard/go-difflib v1.0.0 // indirect
  77. github.com/quic-go/qpack v0.4.0 // indirect
  78. github.com/quic-go/qtls-go1-20 v0.4.1 // indirect
  79. github.com/sagernet/netlink v0.0.0-20240612041022-b9a21c07ac6a // indirect
  80. github.com/sagernet/nftables v0.3.0-beta.4 // indirect
  81. github.com/spf13/pflag v1.0.5 // indirect
  82. github.com/u-root/uio v0.0.0-20230220225925-ffce2a382923 // indirect
  83. github.com/vishvananda/netns v0.0.4 // indirect
  84. github.com/zeebo/blake3 v0.2.3 // indirect
  85. go.uber.org/multierr v1.11.0 // indirect
  86. golang.org/x/sync v0.8.0 // indirect
  87. golang.org/x/text v0.19.0 // indirect
  88. golang.org/x/time v0.7.0 // indirect
  89. golang.org/x/tools v0.24.0 // indirect
  90. google.golang.org/genproto/googleapis/rpc v0.0.0-20240227224415-6ceb2ff114de // indirect
  91. gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
  92. gopkg.in/yaml.v3 v3.0.1 // indirect
  93. lukechampine.com/blake3 v1.3.0 // indirect
  94. )