2018-12-20 00:13:57 +08:00
|
|
|
module github.com/nadoo/glider
|
|
|
|
|
2023-03-07 18:39:49 +08:00
|
|
|
go 1.20
|
2018-12-20 00:13:57 +08:00
|
|
|
|
|
|
|
require (
|
2020-10-26 21:43:56 +08:00
|
|
|
github.com/aead/chacha20 v0.0.0-20180709150244-8b13a72661da
|
2020-10-27 22:32:04 +08:00
|
|
|
github.com/dgryski/go-camellia v0.0.0-20191119043421-69a8a13fb23d
|
|
|
|
github.com/dgryski/go-idea v0.0.0-20170306091226-d2fb45a411fb
|
|
|
|
github.com/dgryski/go-rc2 v0.0.0-20150621095337-8a9021637152
|
2024-01-29 21:10:02 +08:00
|
|
|
github.com/insomniacslk/dhcp v0.0.0-20240129002554-15c9b8791914
|
2022-02-14 12:12:37 +08:00
|
|
|
github.com/nadoo/conflag v0.3.1
|
2022-03-14 13:06:26 +08:00
|
|
|
github.com/nadoo/ipset v0.5.0
|
2024-01-26 18:53:46 +08:00
|
|
|
github.com/xtaci/kcp-go/v5 v5.6.7
|
|
|
|
golang.org/x/crypto v0.18.0
|
|
|
|
golang.org/x/sys v0.16.0
|
2018-12-20 00:13:57 +08:00
|
|
|
)
|
2019-01-06 20:38:15 +08:00
|
|
|
|
2021-08-05 23:52:31 +08:00
|
|
|
require (
|
|
|
|
github.com/ebfe/rc2 v0.0.0-20131011165748-24b9757f5521 // indirect
|
2022-12-19 00:01:14 +08:00
|
|
|
github.com/josharian/native v1.1.0 // indirect
|
2023-11-28 18:26:33 +08:00
|
|
|
github.com/klauspost/cpuid/v2 v2.2.6 // indirect
|
2024-01-29 21:10:02 +08:00
|
|
|
github.com/klauspost/reedsolomon v1.12.1 // indirect
|
2024-01-26 18:53:46 +08:00
|
|
|
github.com/pierrec/lz4/v4 v4.1.21 // indirect
|
2021-08-05 23:52:31 +08:00
|
|
|
github.com/pkg/errors v0.9.1 // indirect
|
2022-12-19 00:01:14 +08:00
|
|
|
github.com/templexxx/cpu v0.1.0 // indirect
|
|
|
|
github.com/templexxx/xorsimd v0.4.2 // indirect
|
2021-08-05 23:52:31 +08:00
|
|
|
github.com/tjfoc/gmsm v1.4.1 // indirect
|
2024-01-26 18:53:46 +08:00
|
|
|
github.com/u-root/uio v0.0.0-20240118234441-a3c409a6018e // indirect
|
|
|
|
golang.org/x/net v0.20.0 // indirect
|
2021-08-05 23:52:31 +08:00
|
|
|
)
|
|
|
|
|
2019-01-06 20:38:15 +08:00
|
|
|
// Replace dependency modules with local developing copy
|
|
|
|
// use `go list -m all` to confirm the final module used
|
2024-01-26 18:53:46 +08:00
|
|
|
// replace github.com/nadoo/conflag => ../conflag
|
|
|
|
replace github.com/xtaci/kcp-go/v5 => github.com/xtaci/kcp-go/v5 v5.6.1 // Go1.20
|