go.mod 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. module github.com/sagernet/sing-box
  2. go 1.18
  3. require (
  4. berty.tech/go-libtor v1.0.385
  5. github.com/cloudflare/circl v1.2.1-0.20220831060716-4cf0150356fc
  6. github.com/cretz/bine v0.2.0
  7. github.com/database64128/tfo-go v1.1.2
  8. github.com/dustin/go-humanize v1.0.0
  9. github.com/fsnotify/fsnotify v1.5.4
  10. github.com/go-chi/chi/v5 v5.0.7
  11. github.com/go-chi/cors v1.2.1
  12. github.com/go-chi/render v1.0.2
  13. github.com/gofrs/uuid v4.3.0+incompatible
  14. github.com/gorilla/websocket v1.5.0
  15. github.com/hashicorp/yamux v0.1.1
  16. github.com/logrusorgru/aurora v2.0.3+incompatible
  17. github.com/mholt/acmez v1.0.4
  18. github.com/oschwald/maxminddb-golang v1.10.0
  19. github.com/pires/go-proxyproto v0.6.2
  20. github.com/sagernet/certmagic v0.0.0-20220819042630-4a57f8b6853a
  21. github.com/sagernet/quic-go v0.0.0-20220818150011-de611ab3e2bb
  22. github.com/sagernet/sing v0.0.0-20220905164441-f3d346256d4a
  23. github.com/sagernet/sing-dns v0.0.0-20220822023312-3e086b06d666
  24. github.com/sagernet/sing-shadowsocks v0.0.0-20220819002358-7461bb09a8f6
  25. github.com/sagernet/sing-tun v0.0.0-20220909114108-a6b5a9289ecb
  26. github.com/sagernet/sing-vmess v0.0.0-20220907073918-72d7fdf6825f
  27. github.com/sagernet/smux v0.0.0-20220907034654-1acb8471c15a
  28. github.com/spf13/cobra v1.5.0
  29. github.com/stretchr/testify v1.8.0
  30. go.etcd.io/bbolt v1.3.6
  31. go.uber.org/atomic v1.10.0
  32. go4.org/netipx v0.0.0-20220812043211-3cc044ffd68d
  33. golang.org/x/crypto v0.0.0-20220829220503-c86fa9a7ed90
  34. golang.org/x/net v0.0.0-20220909164309-bea034e7d591
  35. golang.org/x/sys v0.0.0-20220909162455-aba9fc2a8ff2
  36. golang.zx2c4.com/wireguard v0.0.0-20220904105730-b51010ba13f0
  37. google.golang.org/grpc v1.49.0
  38. google.golang.org/protobuf v1.28.1
  39. gvisor.dev/gvisor v0.0.0-20220901235040-6ca97ef2ce1c
  40. )
  41. //replace github.com/sagernet/sing => ../sing
  42. require (
  43. github.com/ajg/form v1.5.1 // indirect
  44. github.com/davecgh/go-spew v1.1.1 // indirect
  45. github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0 // indirect
  46. github.com/golang/mock v1.6.0 // indirect
  47. github.com/golang/protobuf v1.5.2 // indirect
  48. github.com/google/btree v1.0.1 // indirect
  49. github.com/inconshreveable/mousetrap v1.0.0 // indirect
  50. github.com/klauspost/cpuid/v2 v2.1.0 // indirect
  51. github.com/libdns/libdns v0.2.1 // indirect
  52. github.com/marten-seemann/qpack v0.2.1 // indirect
  53. github.com/marten-seemann/qtls-go1-18 v0.1.2 // indirect
  54. github.com/marten-seemann/qtls-go1-19 v0.1.0 // indirect
  55. github.com/nxadm/tail v1.4.8 // indirect
  56. github.com/onsi/ginkgo v1.16.5 // indirect
  57. github.com/pmezard/go-difflib v1.0.0 // indirect
  58. github.com/sagernet/abx-go v0.0.0-20220819185957-dba1257d738e // indirect
  59. github.com/sagernet/go-tun2socks v1.16.12-0.20220818015926-16cb67876a61 // indirect
  60. github.com/sagernet/netlink v0.0.0-20220905062125-8043b4a9aa97 // indirect
  61. github.com/spf13/pflag v1.0.5 // indirect
  62. github.com/vishvananda/netns v0.0.0-20211101163701-50045581ed74 // indirect
  63. go.uber.org/multierr v1.6.0 // indirect
  64. go.uber.org/zap v1.22.0 // indirect
  65. golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e // indirect
  66. golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect
  67. golang.org/x/text v0.3.7 // indirect
  68. golang.org/x/time v0.0.0-20191024005414-555d28b269f0 // indirect
  69. golang.org/x/tools v0.1.11-0.20220513221640-090b14e8501f // indirect
  70. golang.zx2c4.com/wintun v0.0.0-20211104114900-415007cec224 // indirect
  71. google.golang.org/genproto v0.0.0-20210722135532-667f2b7c528f // indirect
  72. gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
  73. gopkg.in/yaml.v3 v3.0.1 // indirect
  74. lukechampine.com/blake3 v1.1.7 // indirect
  75. )