sing-box/go.mod

80 lines
3.4 KiB
Modula-2
Raw Normal View History

2022-06-30 21:27:56 +08:00
module github.com/sagernet/sing-box
go 1.18
require (
2022-08-21 00:59:49 +08:00
berty.tech/go-libtor v1.0.385
github.com/Dreamacro/clash v1.11.12
2022-10-05 21:02:44 +08:00
github.com/caddyserver/certmagic v0.17.2
2022-08-21 00:59:49 +08:00
github.com/cretz/bine v0.2.0
2022-10-18 13:29:18 +08:00
github.com/database64128/tfo-go/v2 v2.0.2
2022-08-11 12:41:54 +08:00
github.com/dustin/go-humanize v1.0.0
2022-10-18 13:29:18 +08:00
github.com/fsnotify/fsnotify v1.6.0
2022-07-19 22:16:49 +08:00
github.com/go-chi/chi/v5 v5.0.7
github.com/go-chi/cors v1.2.1
2022-07-30 00:29:22 +08:00
github.com/go-chi/render v1.0.2
github.com/gofrs/uuid v4.3.1+incompatible
2022-07-30 00:29:22 +08:00
github.com/hashicorp/yamux v0.1.1
2022-06-30 21:27:56 +08:00
github.com/logrusorgru/aurora v2.0.3+incompatible
2022-08-24 17:04:15 +08:00
github.com/mholt/acmez v1.0.4
2022-09-09 18:19:50 +08:00
github.com/miekg/dns v1.1.50
2022-08-09 15:55:16 +08:00
github.com/oschwald/maxminddb-golang v1.10.0
2022-08-23 21:07:35 +08:00
github.com/pires/go-proxyproto v0.6.2
2022-10-18 13:29:18 +08:00
github.com/refraction-networking/utls v1.1.5
2022-10-31 13:30:01 +08:00
github.com/sagernet/cloudflare-tls v0.0.0-20221031050923-d70792f4c3a0
2022-11-08 13:31:55 +08:00
github.com/sagernet/quic-go v0.0.0-20221108053023-645bcc4f9b15
2022-10-07 20:18:50 +08:00
github.com/sagernet/sing v0.0.0-20221008120626-60a9910eefe4
2022-10-31 13:30:01 +08:00
github.com/sagernet/sing-dns v0.0.0-20221031055845-7de76401d403
github.com/sagernet/sing-shadowsocks v0.0.0-20220819002358-7461bb09a8f6
2022-11-06 10:15:13 +08:00
github.com/sagernet/sing-tun v0.0.0-20221104121441-66c48a57776f
2022-11-09 10:16:22 +08:00
github.com/sagernet/sing-vmess v0.0.0-20221109021549-b446d5bdddf0
2022-09-11 08:36:52 +08:00
github.com/sagernet/smux v0.0.0-20220831015742-e0f1988e3195
2022-09-13 10:41:10 +08:00
github.com/sagernet/websocket v0.0.0-20220913015213-615516348b4e
github.com/sagernet/wireguard-go v0.0.0-20221108054404-7c2acadba17c
2022-10-29 17:56:21 +08:00
github.com/spf13/cobra v1.6.1
github.com/stretchr/testify v1.8.1
2022-09-10 14:40:16 +08:00
go.etcd.io/bbolt v1.3.6
2022-08-12 10:58:05 +08:00
go.uber.org/atomic v1.10.0
2022-09-25 22:16:24 +08:00
go4.org/netipx v0.0.0-20220925034521-797b0c90d8ab
golang.org/x/crypto v0.1.1-0.20221024173537-a3485e174077
golang.org/x/net v0.1.1-0.20221102181756-a1278a7f7ee0
2022-11-08 13:31:55 +08:00
golang.org/x/sys v0.2.0
2022-10-18 13:29:18 +08:00
google.golang.org/grpc v1.50.1
2022-08-22 18:53:47 +08:00
google.golang.org/protobuf v1.28.1
gvisor.dev/gvisor v0.0.0-20220901235040-6ca97ef2ce1c
2022-08-16 23:37:51 +08:00
)
2022-09-03 16:58:55 +08:00
//replace github.com/sagernet/sing => ../sing
2022-06-30 21:27:56 +08:00
require (
2022-07-30 00:29:22 +08:00
github.com/ajg/form v1.5.1 // indirect
2022-09-10 10:27:00 +08:00
github.com/andybalholm/brotli v1.0.4 // indirect
2022-10-31 13:30:01 +08:00
github.com/cloudflare/circl v1.2.1-0.20221019164342-6ab4dfed8f3c // indirect
2022-07-26 12:37:03 +08:00
github.com/davecgh/go-spew v1.1.1 // indirect
2022-08-22 18:53:47 +08:00
github.com/golang/protobuf v1.5.2 // indirect
2022-07-09 19:18:37 +08:00
github.com/google/btree v1.0.1 // indirect
2022-10-18 13:29:18 +08:00
github.com/inconshreveable/mousetrap v1.0.1 // indirect
github.com/klauspost/compress v1.15.9 // indirect
2022-10-05 21:02:44 +08:00
github.com/klauspost/cpuid/v2 v2.1.1 // indirect
github.com/libdns/libdns v0.2.1 // indirect
2022-10-31 13:30:01 +08:00
github.com/marten-seemann/qpack v0.3.0 // indirect
github.com/marten-seemann/qtls-go1-18 v0.1.3 // indirect
github.com/marten-seemann/qtls-go1-19 v0.1.1 // indirect
2022-07-02 22:55:10 +08:00
github.com/pmezard/go-difflib v1.0.0 // indirect
2022-08-20 00:20:30 +08:00
github.com/sagernet/abx-go v0.0.0-20220819185957-dba1257d738e // indirect
2022-08-18 10:10:09 +08:00
github.com/sagernet/go-tun2socks v1.16.12-0.20220818015926-16cb67876a61 // indirect
github.com/sagernet/netlink v0.0.0-20220905062125-8043b4a9aa97 // indirect
2022-06-30 21:27:56 +08:00
github.com/spf13/pflag v1.0.5 // indirect
2022-07-09 19:18:37 +08:00
github.com/vishvananda/netns v0.0.0-20211101163701-50045581ed74 // indirect
go.uber.org/multierr v1.6.0 // indirect
2022-10-05 21:02:44 +08:00
go.uber.org/zap v1.23.0 // indirect
2022-10-31 13:30:01 +08:00
golang.org/x/exp v0.0.0-20221028150844-83b7d23a625f // indirect
golang.org/x/mod v0.6.0 // indirect
2022-10-29 17:56:21 +08:00
golang.org/x/text v0.4.0 // indirect
2022-07-09 19:18:37 +08:00
golang.org/x/time v0.0.0-20191024005414-555d28b269f0 // indirect
2022-10-31 13:30:01 +08:00
golang.org/x/tools v0.2.0 // indirect
2022-08-22 18:53:47 +08:00
google.golang.org/genproto v0.0.0-20210722135532-667f2b7c528f // indirect
2022-07-06 12:39:44 +08:00
gopkg.in/yaml.v3 v3.0.1 // indirect
2022-06-30 21:27:56 +08:00
lukechampine.com/blake3 v1.1.7 // indirect
)