Files
EdgeNode/go.mod

62 lines
2.5 KiB
Modula-2
Raw Normal View History

2020-07-21 11:18:47 +08:00
module github.com/TeaOSLab/EdgeNode
2022-07-07 09:21:18 +08:00
go 1.18
2020-09-13 20:37:40 +08:00
2022-04-30 22:22:30 +08:00
replace (
github.com/TeaOSLab/EdgeCommon => ../EdgeCommon
)
2020-07-21 11:18:47 +08:00
require (
2020-09-13 20:37:40 +08:00
github.com/TeaOSLab/EdgeCommon v0.0.0-00010101000000-000000000000
2022-03-19 19:28:20 +08:00
github.com/andybalholm/brotli v1.0.4
2021-10-11 14:53:23 +08:00
github.com/biessek/golang-ico v0.0.0-20180326222316-d348d9ea4670
2020-11-21 22:29:57 +08:00
github.com/cespare/xxhash v1.1.0
2020-10-08 15:06:42 +08:00
github.com/dchest/captcha v0.0.0-20200903113550-03f5f0333e1f
2022-03-04 12:30:06 +08:00
github.com/fsnotify/fsnotify v1.5.1
2022-04-20 10:22:25 +08:00
github.com/go-redis/redis/v8 v8.11.5
github.com/golang/protobuf v1.5.2
2022-04-20 10:22:25 +08:00
github.com/google/nftables v0.0.0-20220407195405-950e408d48c6
2022-03-04 15:11:18 +08:00
github.com/iwind/TeaGo v0.0.0-20220304043459-0dd944a5b475
2021-05-28 14:00:45 +08:00
github.com/iwind/gofcgi v0.0.0-20210528023741-a92711d45f11
2022-04-20 10:22:25 +08:00
github.com/iwind/gosock v0.0.0-20211103081026-ee4652210ca4
2021-10-29 12:19:26 +08:00
github.com/iwind/gowebp v0.0.0-20211029040624-7331ecc78ed8
2022-07-07 09:21:18 +08:00
github.com/klauspost/compress v1.15.6
github.com/mattn/go-sqlite3 v1.14.9
2022-07-07 09:21:18 +08:00
github.com/mdlayher/netlink v1.4.2
github.com/miekg/dns v1.1.43
2021-12-15 16:57:06 +08:00
github.com/mssola/user_agent v0.5.3
github.com/pires/go-proxyproto v0.6.1
2022-03-12 19:11:29 +08:00
github.com/shirou/gopsutil/v3 v3.22.2
2021-12-15 16:57:06 +08:00
golang.org/x/image v0.0.0-20211028202545-6944b10bf410
2022-03-04 12:30:06 +08:00
golang.org/x/net v0.0.0-20220225172249-27dd8689420f
2022-04-20 10:22:25 +08:00
golang.org/x/sys v0.0.0-20220412211240-33da011f77ad
2021-12-15 16:57:06 +08:00
golang.org/x/text v0.3.7
2022-03-20 10:48:06 +08:00
google.golang.org/grpc v1.45.0
2022-03-04 12:30:06 +08:00
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
2020-07-21 11:18:47 +08:00
)
2022-07-07 09:21:18 +08:00
require (
github.com/BurntSushi/toml v0.4.1 // indirect
github.com/cespare/xxhash/v2 v2.1.2 // indirect
github.com/chai2010/webp v1.1.0 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/go-ole/go-ole v1.2.6 // indirect
github.com/google/go-cmp v0.5.7 // indirect
github.com/josharian/native v0.0.0-20200817173448-b6b71def0850 // indirect
github.com/jsummers/gobmp v0.0.0-20151104160322-e2ba15ffa76e // indirect
github.com/kr/text v0.2.0 // indirect
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
github.com/mdlayher/socket v0.0.0-20211102153432-57e3fa563ecb // indirect
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect
github.com/tklauser/go-sysconf v0.3.9 // indirect
github.com/tklauser/numcpus v0.3.0 // indirect
github.com/yusufpapurcu/wmi v1.2.2 // indirect
golang.org/x/mod v0.5.1 // indirect
golang.org/x/tools v0.1.8 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
google.golang.org/genproto v0.0.0-20220317150908-0efb43f6373e // indirect
google.golang.org/protobuf v1.27.1 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
honnef.co/go/tools v0.2.2 // indirect
)