Files
EdgeAPI/go.mod

55 lines
2.1 KiB
Modula-2
Raw Normal View History

2020-07-21 17:27:00 +08:00
module github.com/TeaOSLab/EdgeAPI
2022-07-06 16:13:52 +08:00
go 1.18
2020-09-13 20:37:28 +08:00
replace github.com/TeaOSLab/EdgeCommon => ../EdgeCommon
2020-07-21 17:27:00 +08:00
require (
2020-09-13 20:37:28 +08:00
github.com/TeaOSLab/EdgeCommon v0.0.0-00010101000000-000000000000
2023-03-06 21:52:06 +08:00
github.com/aliyun/alibaba-cloud-sdk-go v1.61.1755
github.com/andybalholm/brotli v1.0.4
2023-03-06 21:52:06 +08:00
github.com/cespare/xxhash v1.1.0
2021-02-02 19:29:36 +08:00
github.com/cespare/xxhash/v2 v2.1.1
2023-03-06 21:52:06 +08:00
github.com/go-acme/lego/v4 v4.9.0
2023-03-19 17:51:21 +08:00
github.com/go-sql-driver/mysql v1.7.0
2023-03-06 21:52:06 +08:00
github.com/go-telegram-bot-api/telegram-bot-api v4.6.4+incompatible
github.com/iwind/TeaGo v0.0.0-20230304012706-c1f4a4e27470
2022-07-21 16:30:19 +08:00
github.com/iwind/gosock v0.0.0-20220505115348-f88412125a62
2023-03-06 21:52:06 +08:00
github.com/miekg/dns v1.1.50
2020-11-06 11:02:53 +08:00
github.com/mozillazg/go-pinyin v0.18.0
2020-09-06 16:19:54 +08:00
github.com/pkg/sftp v1.12.0
2022-03-21 19:46:14 +08:00
github.com/shirou/gopsutil/v3 v3.22.2
2022-10-23 19:57:43 +08:00
github.com/smartwalle/alipay/v3 v3.1.7
golang.org/x/crypto v0.1.0
2023-03-19 17:51:21 +08:00
golang.org/x/net v0.8.0
golang.org/x/sys v0.6.0
2022-03-20 10:50:34 +08:00
google.golang.org/grpc v1.45.0
2022-08-11 11:52:35 +08:00
gopkg.in/yaml.v3 v3.0.1
2020-07-21 17:27:00 +08:00
)
2022-07-06 16:13:52 +08:00
require (
2023-03-06 21:52:06 +08:00
github.com/cenkalti/backoff/v4 v4.1.3 // indirect
2022-07-06 16:13:52 +08:00
github.com/go-ole/go-ole v1.2.6 // indirect
2023-03-06 21:52:06 +08:00
github.com/golang/protobuf v1.5.2 // indirect
2022-07-06 16:13:52 +08:00
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/kr/fs v0.1.0 // indirect
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect
2022-10-23 19:57:43 +08:00
github.com/smartwalle/crypto4go v1.0.2 // indirect
2023-03-06 21:52:06 +08:00
github.com/technoweenie/multipartstreamer v1.0.1 // indirect
2022-07-06 16:13:52 +08:00
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
2023-03-19 17:51:21 +08:00
golang.org/x/mod v0.8.0 // indirect
golang.org/x/text v0.8.0 // indirect
golang.org/x/tools v0.6.0 // indirect
2022-07-06 16:13:52 +08:00
google.golang.org/genproto v0.0.0-20220317150908-0efb43f6373e // indirect
2023-03-06 21:52:06 +08:00
google.golang.org/protobuf v1.28.0 // indirect
gopkg.in/ini.v1 v1.66.6 // indirect
2022-07-06 16:13:52 +08:00
gopkg.in/square/go-jose.v2 v2.6.0 // indirect
)