sing-box/go.mod

95 lines
4.1 KiB
Modula-2
Raw Normal View History

2022-06-30 13:27:56 +00:00
module github.com/sagernet/sing-box
go 1.18
require (
2022-08-20 16:59:49 +00:00
berty.tech/go-libtor v1.0.385
2023-03-20 09:27:48 +00:00
github.com/Dreamacro/clash v1.14.0
2022-10-05 13:02:44 +00:00
github.com/caddyserver/certmagic v0.17.2
2022-08-20 16:59:49 +00:00
github.com/cretz/bine v0.2.0
2023-02-02 07:38:48 +00:00
github.com/dustin/go-humanize v1.0.1
2022-10-18 05:29:18 +00:00
github.com/fsnotify/fsnotify v1.6.0
2022-12-11 07:18:25 +00:00
github.com/go-chi/chi/v5 v5.0.8
2022-07-19 14:16:49 +00:00
github.com/go-chi/cors v1.2.1
2022-07-29 16:29:22 +00:00
github.com/go-chi/render v1.0.2
2023-02-02 07:38:48 +00:00
github.com/gofrs/uuid v4.4.0+incompatible
2022-07-29 16:29:22 +00:00
github.com/hashicorp/yamux v0.1.1
2023-03-09 15:17:08 +00:00
github.com/insomniacslk/dhcp v0.0.0-20230307103557-e252950ab961
2022-06-30 13:27:56 +00:00
github.com/logrusorgru/aurora v2.0.3+incompatible
2023-02-18 06:25:50 +00:00
github.com/mholt/acmez v1.1.0
2023-03-31 01:34:43 +00:00
github.com/miekg/dns v1.1.53
2023-03-15 12:59:45 +00:00
github.com/ooni/go-libtor v1.1.7
2022-08-09 07:55:16 +00:00
github.com/oschwald/maxminddb-golang v1.10.0
2023-03-17 04:59:12 +00:00
github.com/pires/go-proxyproto v0.7.0
2022-10-31 05:30:01 +00:00
github.com/sagernet/cloudflare-tls v0.0.0-20221031050923-d70792f4c3a0
2022-10-25 04:55:00 +00:00
github.com/sagernet/gomobile v0.0.0-20221130124640-349ebaa752ca
2023-02-02 03:57:17 +00:00
github.com/sagernet/quic-go v0.0.0-20230202071646-a8c8afb18b32
2023-04-06 11:05:05 +00:00
github.com/sagernet/reality v0.0.0-20230406110435-ee17307e7691
2023-04-02 04:01:19 +00:00
github.com/sagernet/sing v0.2.2-0.20230402035613-6d63c1a7dca5
2023-04-07 00:33:52 +00:00
github.com/sagernet/sing-dns v0.1.5-0.20230407051120-06f541bbed0e
2023-03-20 09:27:48 +00:00
github.com/sagernet/sing-shadowsocks v0.2.0
2023-03-03 08:46:49 +00:00
github.com/sagernet/sing-shadowtls v0.1.0
2023-03-26 02:39:34 +00:00
github.com/sagernet/sing-tun v0.1.4-0.20230326080954-8848c0e4cbab
2023-03-09 15:17:08 +00:00
github.com/sagernet/sing-vmess v0.1.3
2023-03-12 10:31:59 +00:00
github.com/sagernet/smux v0.0.0-20230312102458-337ec2a5af37
2023-03-03 02:16:38 +00:00
github.com/sagernet/tfo-go v0.0.0-20230303015439-ffcfd8c41cf9
2023-03-09 02:51:01 +00:00
github.com/sagernet/utls v0.0.0-20230309024959-6732c2ab36f2
2022-09-13 02:41:10 +00:00
github.com/sagernet/websocket v0.0.0-20220913015213-615516348b4e
2022-11-20 03:13:16 +00:00
github.com/sagernet/wireguard-go v0.0.0-20221116151939-c99467f53f2c
2022-10-29 09:56:21 +00:00
github.com/spf13/cobra v1.6.1
2023-03-05 13:38:02 +00:00
github.com/stretchr/testify v1.8.2
2023-02-02 07:38:48 +00:00
go.etcd.io/bbolt v1.3.7
2022-08-12 02:58:05 +00:00
go.uber.org/atomic v1.10.0
2022-12-11 07:18:25 +00:00
go.uber.org/zap v1.24.0
2023-03-05 13:38:02 +00:00
go4.org/netipx v0.0.0-20230303233057-f1b76eb4bb35
golang.org/x/crypto v0.7.0
2023-03-22 23:49:14 +00:00
golang.org/x/exp v0.0.0-20230321023759-10a507213a29
2023-03-05 13:38:02 +00:00
golang.org/x/net v0.8.0
golang.org/x/sys v0.6.0
2023-03-05 02:50:51 +00:00
golang.zx2c4.com/wireguard/wgctrl v0.0.0-20230215201556-9c5414ab4bde
2023-03-22 23:49:14 +00:00
google.golang.org/grpc v1.54.0
2023-03-17 04:59:12 +00:00
google.golang.org/protobuf v1.30.0
gvisor.dev/gvisor v0.0.0-20220901235040-6ca97ef2ce1c
2022-08-16 15:37:51 +00:00
)
2023-03-15 05:34:02 +00:00
//replace github.com/sagernet/sing => ../sing
2023-02-28 03:30:46 +00:00
2022-06-30 13:27:56 +00:00
require (
2022-07-29 16:29:22 +00:00
github.com/ajg/form v1.5.1 // indirect
2023-02-20 06:08:13 +00:00
github.com/andybalholm/brotli v1.0.5 // indirect
2022-10-31 05:30:01 +00:00
github.com/cloudflare/circl v1.2.1-0.20221019164342-6ab4dfed8f3c // indirect
2022-07-26 04:37:03 +00:00
github.com/davecgh/go-spew v1.1.1 // indirect
2022-12-06 04:51:52 +00:00
github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0 // indirect
github.com/golang/mock v1.6.0 // indirect
2022-08-22 10:53:47 +00:00
github.com/golang/protobuf v1.5.2 // indirect
2022-07-09 11:18:37 +00:00
github.com/google/btree v1.0.1 // indirect
2023-02-02 03:57:17 +00:00
github.com/google/pprof v0.0.0-20210407192527-94a9f03dee38 // indirect
2022-10-18 05:29:18 +00:00
github.com/inconshreveable/mousetrap v1.0.1 // indirect
2023-02-08 08:28:52 +00:00
github.com/josharian/native v1.1.0 // indirect
2023-02-07 10:22:04 +00:00
github.com/klauspost/compress v1.15.15 // indirect
2022-10-05 13:02:44 +00:00
github.com/klauspost/cpuid/v2 v2.1.1 // indirect
github.com/libdns/libdns v0.2.1 // indirect
2022-11-28 03:25:31 +00:00
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
2023-02-02 03:57:17 +00:00
github.com/onsi/ginkgo/v2 v2.2.0 // indirect
2023-02-20 06:18:50 +00:00
github.com/pierrec/lz4/v4 v4.1.14 // indirect
2022-07-02 14:55:10 +00:00
github.com/pmezard/go-difflib v1.0.0 // indirect
2023-02-02 03:57:17 +00:00
github.com/quic-go/qpack v0.4.0 // indirect
github.com/quic-go/qtls-go1-18 v0.2.0 // indirect
github.com/quic-go/qtls-go1-19 v0.2.0 // indirect
github.com/quic-go/qtls-go1-20 v0.1.0 // indirect
2022-08-18 02:10:09 +00: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 13:27:56 +00:00
github.com/spf13/pflag v1.0.5 // indirect
2023-03-05 13:38:02 +00:00
github.com/u-root/uio v0.0.0-20230220225925-ffce2a382923 // indirect
2022-07-09 11:18:37 +00:00
github.com/vishvananda/netns v0.0.0-20211101163701-50045581ed74 // indirect
go.uber.org/multierr v1.6.0 // indirect
2023-03-05 13:38:02 +00:00
golang.org/x/mod v0.8.0 // indirect
golang.org/x/text v0.8.0 // indirect
2022-07-09 11:18:37 +00:00
golang.org/x/time v0.0.0-20191024005414-555d28b269f0 // indirect
2023-03-05 13:38:02 +00:00
golang.org/x/tools v0.6.0 // indirect
2023-02-07 10:22:04 +00:00
google.golang.org/genproto v0.0.0-20230110181048-76db0878b65f // indirect
2022-11-28 03:25:31 +00:00
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
2022-07-06 04:39:44 +00:00
gopkg.in/yaml.v3 v3.0.1 // indirect
2022-06-30 13:27:56 +00:00
lukechampine.com/blake3 v1.1.7 // indirect
)