glider/go.mod

30 lines
1.2 KiB
Modula-2
Raw Normal View History

module github.com/nadoo/glider
go 1.15
require (
2020-10-26 21:43:56 +08:00
github.com/aead/chacha20 v0.0.0-20180709150244-8b13a72661da
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
github.com/ebfe/rc2 v0.0.0-20131011165748-24b9757f5521 // indirect
github.com/insomniacslk/dhcp v0.0.0-20201112113307-4de412bc85d8
2020-11-30 20:28:09 +08:00
github.com/mmcloughlin/avo v0.0.0-20201130012700-45c8ae10fd12 // indirect
2020-04-08 01:09:51 +08:00
github.com/nadoo/conflag v0.2.3
github.com/nadoo/ipset v0.3.0
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
github.com/xtaci/kcp-go/v5 v5.6.1
2020-12-04 12:41:38 +08:00
golang.org/x/crypto v0.0.0-20201203163018-be400aefbc4c
golang.org/x/mod v0.4.0 // indirect
2020-12-03 23:47:26 +08:00
golang.org/x/net v0.0.0-20201202161906-c7110b5ffcbb // indirect
golang.org/x/sys v0.0.0-20201202213521-69691e467435 // indirect
2020-12-04 12:41:38 +08:00
golang.org/x/tools v0.0.0-20201203230154-39497347062d // indirect
gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b // indirect
)
// Replace dependency modules with local developing copy
// use `go list -m all` to confirm the final module used
// replace (
// github.com/nadoo/conflag => ../conflag
// )