2018-12-20 00:13:57 +08:00
|
|
|
module github.com/nadoo/glider
|
|
|
|
|
2020-08-13 21:09:54 +08:00
|
|
|
go 1.15
|
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
|
2020-11-12 22:08:02 +08:00
|
|
|
github.com/insomniacslk/dhcp v0.0.0-20201112113307-4de412bc85d8
|
2020-11-06 22:47:33 +08:00
|
|
|
github.com/mmcloughlin/avo v0.0.0-20201105074841-5d2f697d268f // 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
|
2020-08-13 21:09:54 +08:00
|
|
|
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
|
2020-10-10 19:04:33 +08:00
|
|
|
github.com/xtaci/kcp-go/v5 v5.6.1
|
2020-11-17 23:58:42 +08:00
|
|
|
golang.org/x/crypto v0.0.0-20201117144127-c1f2f97bffc9
|
2020-11-20 18:11:25 +08:00
|
|
|
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68 // indirect
|
|
|
|
golang.org/x/tools v0.0.0-20201120032337-6d151481565c // indirect
|
2020-09-25 11:04:13 +08:00
|
|
|
gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b // indirect
|
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
|
|
|
|
// )
|