go.mod 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. module github.com/sagernet/sing-box
  2. go 1.18
  3. require (
  4. berty.tech/go-libtor v1.0.385
  5. github.com/Dreamacro/clash v1.13.0
  6. github.com/caddyserver/certmagic v0.17.2
  7. github.com/cretz/bine v0.2.0
  8. github.com/database64128/tfo-go/v2 v2.0.2
  9. github.com/dustin/go-humanize v1.0.1
  10. github.com/fsnotify/fsnotify v1.6.0
  11. github.com/go-chi/chi/v5 v5.0.8
  12. github.com/go-chi/cors v1.2.1
  13. github.com/go-chi/render v1.0.2
  14. github.com/gofrs/uuid v4.4.0+incompatible
  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/miekg/dns v1.1.50
  19. github.com/oschwald/maxminddb-golang v1.10.0
  20. github.com/pires/go-proxyproto v0.6.2
  21. github.com/refraction-networking/utls v1.2.0
  22. github.com/sagernet/cloudflare-tls v0.0.0-20221031050923-d70792f4c3a0
  23. github.com/sagernet/quic-go v0.0.0-20230202071646-a8c8afb18b32
  24. github.com/sagernet/sing v0.1.6-0.20230114115804-bc788b027182
  25. github.com/sagernet/sing-dns v0.1.3
  26. github.com/sagernet/sing-shadowsocks v0.1.1-0.20230202035033-e3123545f2f7
  27. github.com/sagernet/sing-tun v0.1.1
  28. github.com/sagernet/sing-vmess v0.1.1
  29. github.com/sagernet/smux v0.0.0-20220831015742-e0f1988e3195
  30. github.com/sagernet/websocket v0.0.0-20220913015213-615516348b4e
  31. github.com/sagernet/wireguard-go v0.0.0-20221116151939-c99467f53f2c
  32. github.com/spf13/cobra v1.6.1
  33. github.com/stretchr/testify v1.8.1
  34. go.etcd.io/bbolt v1.3.7
  35. go.uber.org/atomic v1.10.0
  36. go.uber.org/zap v1.24.0
  37. go4.org/netipx v0.0.0-20230125063823-8449b0a6169f
  38. golang.org/x/crypto v0.5.0
  39. golang.org/x/exp v0.0.0-20230105202349-8879d0199aa3
  40. golang.org/x/net v0.5.0
  41. golang.org/x/sys v0.4.0
  42. google.golang.org/grpc v1.52.3
  43. google.golang.org/protobuf v1.28.1
  44. gvisor.dev/gvisor v0.0.0-20220901235040-6ca97ef2ce1c
  45. )
  46. //replace github.com/sagernet/sing => ../sing
  47. require (
  48. github.com/ajg/form v1.5.1 // indirect
  49. github.com/andybalholm/brotli v1.0.4 // indirect
  50. github.com/cloudflare/circl v1.2.1-0.20221019164342-6ab4dfed8f3c // indirect
  51. github.com/davecgh/go-spew v1.1.1 // indirect
  52. github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0 // indirect
  53. github.com/golang/mock v1.6.0 // indirect
  54. github.com/golang/protobuf v1.5.2 // indirect
  55. github.com/google/btree v1.0.1 // indirect
  56. github.com/google/pprof v0.0.0-20210407192527-94a9f03dee38 // indirect
  57. github.com/inconshreveable/mousetrap v1.0.1 // indirect
  58. github.com/klauspost/compress v1.15.12 // indirect
  59. github.com/klauspost/cpuid/v2 v2.1.1 // indirect
  60. github.com/libdns/libdns v0.2.1 // indirect
  61. github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
  62. github.com/onsi/ginkgo/v2 v2.2.0 // indirect
  63. github.com/pmezard/go-difflib v1.0.0 // indirect
  64. github.com/quic-go/qpack v0.4.0 // indirect
  65. github.com/quic-go/qtls-go1-18 v0.2.0 // indirect
  66. github.com/quic-go/qtls-go1-19 v0.2.0 // indirect
  67. github.com/quic-go/qtls-go1-20 v0.1.0 // indirect
  68. github.com/sagernet/go-tun2socks v1.16.12-0.20220818015926-16cb67876a61 // indirect
  69. github.com/sagernet/netlink v0.0.0-20220905062125-8043b4a9aa97 // indirect
  70. github.com/spf13/pflag v1.0.5 // indirect
  71. github.com/vishvananda/netns v0.0.0-20211101163701-50045581ed74 // indirect
  72. go.uber.org/multierr v1.6.0 // indirect
  73. golang.org/x/mod v0.6.0 // indirect
  74. golang.org/x/text v0.6.0 // indirect
  75. golang.org/x/time v0.0.0-20191024005414-555d28b269f0 // indirect
  76. golang.org/x/tools v0.2.0 // indirect
  77. google.golang.org/genproto v0.0.0-20221118155620-16455021b5e6 // indirect
  78. gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
  79. gopkg.in/yaml.v3 v3.0.1 // indirect
  80. lukechampine.com/blake3 v1.1.7 // indirect
  81. )