Files
EdgeAdmin/go.mod

43 lines
1.6 KiB
Modula-2
Raw Normal View History

2020-07-22 09:59:40 +08:00
module github.com/TeaOSLab/EdgeAdmin
2022-07-07 09:16:29 +08:00
go 1.18
2020-09-13 20:37:07 +08:00
replace github.com/TeaOSLab/EdgeCommon => ../EdgeCommon
2020-07-22 09:59:40 +08:00
2020-07-22 22:19:39 +08:00
require (
2020-09-13 20:37:07 +08:00
github.com/TeaOSLab/EdgeCommon v0.0.0-00010101000000-000000000000
2020-12-02 16:09:23 +08:00
github.com/cespare/xxhash v1.1.0
2020-10-13 20:05:29 +08:00
github.com/go-sql-driver/mysql v1.5.0
2023-03-05 16:48:01 +08:00
github.com/iwind/TeaGo v0.0.0-20230304012706-c1f4a4e27470
github.com/iwind/gosock v0.0.0-20211103081026-ee4652210ca4
2022-05-09 15:51:14 +08:00
github.com/miekg/dns v1.1.43
github.com/shirou/gopsutil/v3 v3.22.5
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e
github.com/tealeg/xlsx/v3 v3.2.3
github.com/xlzd/gotp v0.0.0-20181030022105-c8557ba2c119
2023-03-19 17:46:28 +08:00
golang.org/x/crypto v0.7.0
golang.org/x/sys v0.6.0
2022-03-20 10:46:09 +08:00
google.golang.org/grpc v1.45.0
2022-11-28 11:39:38 +08:00
gopkg.in/yaml.v3 v3.0.1
2020-07-22 22:19:39 +08:00
)
2022-07-07 09:16:29 +08:00
require (
github.com/frankban/quicktest v1.11.3 // indirect
github.com/go-ole/go-ole v1.2.6 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/google/btree v1.0.0 // indirect
github.com/google/go-cmp v0.5.8 // indirect
github.com/kr/pretty v0.2.1 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect
github.com/rogpeppe/fastuuid v1.2.0 // indirect
github.com/shabbyrobe/xmlwriter v0.0.0-20200208144257-9fca06d00ffa // indirect
github.com/yusufpapurcu/wmi v1.2.2 // indirect
2023-03-19 17:46:28 +08:00
golang.org/x/net v0.8.0 // indirect
golang.org/x/text v0.8.0 // indirect
2022-07-07 09:16:29 +08:00
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
)