2018-12-20 00:13:57 +08:00
|
|
|
module github.com/nadoo/glider
|
|
|
|
|
2021-02-06 00:26:58 +08:00
|
|
|
go 1.16
|
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
|
2020-10-29 22:47:57 +08:00
|
|
|
github.com/ebfe/rc2 v0.0.0-20131011165748-24b9757f5521 // indirect
|
2021-06-29 19:55:05 +08:00
|
|
|
github.com/insomniacslk/dhcp v0.0.0-20210621130208-1cac67f12b1e
|
2021-08-04 19:13:22 +08:00
|
|
|
github.com/klauspost/cpuid/v2 v2.0.9 // indirect
|
|
|
|
github.com/klauspost/reedsolomon v1.9.13 // indirect
|
2021-04-19 10:39:40 +08:00
|
|
|
github.com/mdlayher/raw v0.0.0-20210412142147-51b895745faf // indirect
|
2020-04-08 01:09:51 +08:00
|
|
|
github.com/nadoo/conflag v0.2.3
|
2020-09-26 23:34:26 +08:00
|
|
|
github.com/nadoo/ipset v0.3.0
|
2021-07-09 19:17:16 +08:00
|
|
|
github.com/tjfoc/gmsm v1.4.1 // indirect
|
2021-05-30 12:18:05 +08:00
|
|
|
github.com/u-root/uio v0.0.0-20210528151154-e40b768296a7 // indirect
|
2020-10-10 19:04:33 +08:00
|
|
|
github.com/xtaci/kcp-go/v5 v5.6.1
|
2021-07-17 22:36:42 +08:00
|
|
|
golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97
|
2021-07-29 20:05:20 +08:00
|
|
|
golang.org/x/net v0.0.0-20210726213435-c6fcb2dbf985 // indirect
|
2021-07-17 22:36:42 +08:00
|
|
|
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c
|
2018-12-20 00:13:57 +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
|
|
|
|
// replace (
|
|
|
|
// github.com/nadoo/conflag => ../conflag
|
|
|
|
// )
|