Xray-core/go.mod

49 lines
1.9 KiB
Modula-2
Raw Normal View History

2020-12-04 01:36:16 +00:00
module github.com/xtls/xray-core
2020-11-25 11:01:53 +00:00
2021-09-07 17:13:32 +00:00
go 1.17
2020-11-25 11:01:53 +00:00
require (
2020-12-24 19:30:26 +00:00
github.com/ghodss/yaml v1.0.1-0.20190212211648-25d852aebe32
2021-09-07 17:13:32 +00:00
github.com/golang/mock v1.6.0
github.com/golang/protobuf v1.5.2
2021-09-07 17:13:32 +00:00
github.com/google/go-cmp v0.5.6
2020-11-25 11:01:53 +00:00
github.com/gorilla/websocket v1.4.2
github.com/lucas-clemente/quic-go v0.24.0
2021-09-07 17:13:32 +00:00
github.com/miekg/dns v1.1.43
github.com/pelletier/go-toml v1.9.4
2021-09-20 12:40:33 +00:00
github.com/pires/go-proxyproto v0.6.1
2021-09-07 17:13:32 +00:00
github.com/refraction-networking/utls v0.0.0-20210713165636-0b2885c8c0d4
2020-12-25 15:25:10 +00:00
github.com/seiflotfy/cuckoofilter v0.0.0-20201222105146-bc6005554a0c
2021-01-15 13:18:37 +00:00
github.com/stretchr/testify v1.7.0
2021-09-20 12:40:33 +00:00
github.com/xtls/go v0.0.0-20210920065950-d4af136d3672
2021-10-20 06:47:57 +00:00
go.starlark.net v0.0.0-20211013185944-b0039bd2cfe3
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519
golang.org/x/net v0.0.0-20211020060615-d418f374d309
2021-03-02 14:55:32 +00:00
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
2021-10-20 06:47:57 +00:00
golang.org/x/sys v0.0.0-20211020064051-0ec99a608a1b
google.golang.org/grpc v1.41.0
2021-09-07 17:13:32 +00:00
google.golang.org/protobuf v1.27.1
h12.io/socks v1.0.3
)
require (
github.com/cheekybits/genny v1.0.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
2021-10-20 06:47:57 +00:00
github.com/dgryski/go-metro v0.0.0-20211015221634-2661b20a2446 // indirect
2021-09-07 17:13:32 +00:00
github.com/fsnotify/fsnotify v1.5.1 // indirect
github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0 // indirect
github.com/marten-seemann/qtls-go1-16 v0.1.4 // indirect
github.com/marten-seemann/qtls-go1-17 v0.1.0 // indirect
github.com/nxadm/tail v1.4.8 // indirect
2021-10-20 06:47:57 +00:00
github.com/onsi/ginkgo v1.16.5 // indirect
2021-09-07 17:13:32 +00:00
github.com/pmezard/go-difflib v1.0.0 // indirect
2021-10-20 06:47:57 +00:00
golang.org/x/mod v0.5.1 // indirect
2021-09-07 17:13:32 +00:00
golang.org/x/text v0.3.7 // indirect
2021-10-20 06:47:57 +00:00
golang.org/x/tools v0.1.7 // indirect
2021-09-07 17:13:32 +00:00
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
2021-10-20 06:47:57 +00:00
google.golang.org/genproto v0.0.0-20211019152133-63b7e35f4404 // indirect
2021-09-07 17:13:32 +00:00
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
2020-11-25 11:01:53 +00:00
)