Files
EdgeAPI/go.mod

75 lines
3.2 KiB
Modula-2
Raw Normal View History

2020-07-21 17:27:00 +08:00
module github.com/TeaOSLab/EdgeAPI
2024-07-27 14:15:25 +08:00
go 1.22
2020-09-13 20:37:28 +08:00
replace github.com/TeaOSLab/EdgeCommon => ../EdgeCommon
2020-07-21 17:27:00 +08:00
require (
2024-05-12 15:58:50 +08:00
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.1
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.5.2
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/dns/armdns v1.2.0
github.com/aliyun/alibaba-cloud-sdk-go v1.62.712
2024-07-27 14:15:25 +08:00
github.com/andybalholm/brotli v1.0.5
github.com/aws/aws-sdk-go v1.44.279
2023-03-06 21:52:06 +08:00
github.com/cespare/xxhash v1.1.0
2024-05-12 15:58:50 +08:00
github.com/fsnotify/fsnotify v1.7.0
2024-07-27 14:15:25 +08:00
github.com/go-acme/lego/v4 v4.17.3
github.com/go-sql-driver/mysql v1.8.1
2023-03-06 21:52:06 +08:00
github.com/go-telegram-bot-api/telegram-bot-api v4.6.4+incompatible
2024-05-08 15:42:08 +08:00
github.com/iwind/TeaGo v0.0.0-20240508072741-7647e70b7070
2022-07-21 16:30:19 +08:00
github.com/iwind/gosock v0.0.0-20220505115348-f88412125a62
2024-07-27 14:15:25 +08:00
github.com/miekg/dns v1.1.59
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
2024-07-27 14:15:25 +08:00
github.com/shirou/gopsutil/v3 v3.24.2
2024-04-17 22:23:46 +08:00
github.com/smartwalle/alipay/v3 v3.2.20
2024-07-27 14:15:25 +08:00
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common v1.0.918
2024-05-12 15:58:50 +08:00
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/dnspod v1.0.898
2024-07-27 14:15:25 +08:00
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/sms v1.0.918
2023-11-24 10:21:50 +08:00
github.com/volcengine/volc-sdk-golang v1.0.124
2024-07-27 14:15:25 +08:00
golang.org/x/crypto v0.23.0
golang.org/x/net v0.25.0
golang.org/x/sys v0.20.0
google.golang.org/grpc v1.63.2
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 (
2024-07-27 14:15:25 +08:00
filippo.io/edwards25519 v1.1.0 // indirect
2024-05-12 15:58:50 +08:00
github.com/Azure/azure-sdk-for-go/sdk/internal v1.5.2 // indirect
github.com/AzureAD/microsoft-authentication-library-for-go v1.2.2 // indirect
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
2024-07-27 14:15:25 +08:00
github.com/go-jose/go-jose/v4 v4.0.1 // indirect
2022-07-06 16:13:52 +08:00
github.com/go-ole/go-ole v1.2.6 // indirect
2024-05-12 15:58:50 +08:00
github.com/golang-jwt/jwt/v5 v5.2.1 // indirect
2024-04-17 22:23:46 +08:00
github.com/google/uuid v1.6.0 // 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
2024-07-27 14:15:25 +08:00
github.com/kr/pretty v0.3.1 // indirect
2023-11-24 10:21:50 +08:00
github.com/kylelemons/godebug v1.1.0 // indirect
2022-07-06 16:13:52 +08:00
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
2023-11-24 10:21:50 +08:00
github.com/opentracing/opentracing-go v1.2.1-0.20220228012449-10b1cf09e00b // indirect
2024-05-12 15:58:50 +08:00
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
2022-07-06 16:13:52 +08:00
github.com/pkg/errors v0.9.1 // indirect
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect
2024-07-27 14:15:25 +08:00
github.com/rogpeppe/go-internal v1.12.0 // indirect
github.com/shoenig/go-m1cpu v0.1.6 // indirect
2024-04-17 22:23:46 +08:00
github.com/smartwalle/ncrypto v1.0.4 // indirect
github.com/smartwalle/ngx v1.0.9 // indirect
github.com/smartwalle/nsign v1.0.9 // indirect
2023-03-06 21:52:06 +08:00
github.com/technoweenie/multipartstreamer v1.0.1 // indirect
2024-07-27 14:15:25 +08:00
github.com/tklauser/go-sysconf v0.3.13 // indirect
github.com/tklauser/numcpus v0.7.0 // indirect
github.com/yusufpapurcu/wmi v1.2.4 // indirect
2024-05-12 15:58:50 +08:00
golang.org/x/mod v0.17.0 // indirect
golang.org/x/sync v0.7.0 // indirect
2024-07-27 14:15:25 +08:00
golang.org/x/text v0.15.0 // indirect
golang.org/x/tools v0.21.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240415180920-8c6c420018be // indirect
2024-04-17 22:23:46 +08:00
google.golang.org/protobuf v1.33.0 // indirect
2024-05-12 15:58:50 +08:00
gopkg.in/ini.v1 v1.67.0 // indirect
2022-07-06 16:13:52 +08:00
)