teldrive/go.mod

85 lines
3.2 KiB
Modula-2
Raw Normal View History

2023-08-16 05:53:02 +08:00
module github.com/divyam234/teldrive
2023-08-07 03:32:46 +08:00
2023-08-12 19:21:42 +08:00
go 1.21
2023-08-07 03:32:46 +08:00
require (
2023-11-02 21:51:30 +08:00
github.com/coocood/freecache v1.2.4
2023-08-12 19:21:42 +08:00
github.com/divyam234/cors v1.4.2
2023-08-07 03:32:46 +08:00
github.com/gin-gonic/gin v1.9.1
github.com/go-jose/go-jose/v3 v3.0.1
2023-08-12 19:21:42 +08:00
github.com/gotd/contrib v0.19.0
github.com/gotd/td v0.89.0
2023-08-12 19:21:42 +08:00
github.com/joho/godotenv v1.5.1
2023-08-13 04:15:19 +08:00
github.com/kelseyhightower/envconfig v1.4.0
2023-08-07 03:32:46 +08:00
github.com/mitchellh/mapstructure v1.5.0
2023-08-12 19:21:42 +08:00
github.com/pkg/errors v0.9.1
github.com/quantumsheep/range-parser v1.1.0
2023-09-20 03:20:44 +08:00
github.com/thoas/go-funk v0.9.3
go.etcd.io/bbolt v1.3.8
2023-09-20 03:20:44 +08:00
go.uber.org/zap v1.26.0
2023-08-12 19:21:42 +08:00
golang.org/x/exp v0.0.0-20230811145659-89c5cff77bcb
golang.org/x/time v0.5.0
gorm.io/driver/postgres v1.5.4
gorm.io/gorm v1.25.5
2023-08-07 03:32:46 +08:00
)
require (
2023-11-02 21:51:30 +08:00
github.com/cespare/xxhash/v2 v2.2.0 // indirect
2023-12-03 03:47:23 +08:00
github.com/chenzhuoyu/iasm v0.9.1 // indirect
github.com/jackc/puddle/v2 v2.2.1 // indirect
github.com/sethvargo/go-retry v0.2.4 // indirect
2023-12-03 03:47:23 +08:00
golang.org/x/tools v0.16.0 // indirect
)
2023-08-16 20:48:32 +08:00
2023-08-07 03:32:46 +08:00
require (
2023-12-03 03:47:23 +08:00
github.com/bytedance/sonic v1.10.2 // indirect
github.com/cenkalti/backoff/v4 v4.2.1
2023-09-27 17:36:12 +08:00
github.com/chenzhuoyu/base64x v0.0.0-20230717121745-296ad89f973d // indirect
2023-12-03 03:47:23 +08:00
github.com/gabriel-vasile/mimetype v1.4.3 // indirect
2023-09-08 18:37:11 +08:00
github.com/gin-contrib/gzip v0.0.6
2023-12-03 03:47:23 +08:00
github.com/gin-contrib/secure v0.0.1
2023-08-07 03:32:46 +08:00
github.com/gin-contrib/sse v0.1.0 // indirect
2023-09-08 18:37:11 +08:00
github.com/gin-gonic/contrib v0.0.0-20221130124618-7e01895a63f2
github.com/go-faster/errors v0.7.0
github.com/go-faster/jx v1.1.0 // indirect
2023-08-07 03:32:46 +08:00
github.com/go-faster/xor v1.0.0 // indirect
github.com/go-playground/locales v0.14.1 // indirect
github.com/go-playground/universal-translator v0.18.1 // indirect
2023-12-03 03:47:23 +08:00
github.com/go-playground/validator/v10 v10.16.0 // indirect
2023-08-07 03:32:46 +08:00
github.com/goccy/go-json v0.10.2 // indirect
github.com/gorilla/websocket v1.5.1
2023-08-07 03:32:46 +08:00
github.com/gotd/ige v0.2.2 // indirect
github.com/gotd/neo v0.1.5 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
github.com/jackc/pgx/v5 v5.5.0
2023-08-12 19:21:42 +08:00
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
2023-08-07 03:32:46 +08:00
github.com/json-iterator/go v1.1.12 // indirect
github.com/klauspost/compress v1.17.2 // indirect
2023-12-03 03:47:23 +08:00
github.com/klauspost/cpuid/v2 v2.2.6 // indirect
2023-08-07 03:32:46 +08:00
github.com/leodido/go-urn v1.2.4 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
2023-08-07 03:32:46 +08:00
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
2023-09-27 17:36:12 +08:00
github.com/pelletier/go-toml/v2 v2.1.0 // indirect
github.com/pressly/goose/v3 v3.16.0
2023-08-07 03:32:46 +08:00
github.com/segmentio/asm v1.2.0 // indirect
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
2023-12-03 03:47:23 +08:00
github.com/ugorji/go/codec v1.2.12 // indirect
go.opentelemetry.io/otel v1.20.0 // indirect
go.opentelemetry.io/otel/trace v1.20.0 // indirect
2023-08-07 03:32:46 +08:00
go.uber.org/atomic v1.11.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
2023-12-03 03:47:23 +08:00
golang.org/x/arch v0.6.0 // indirect
golang.org/x/crypto v0.16.0 // indirect
golang.org/x/net v0.19.0 // indirect
golang.org/x/sync v0.5.0 // indirect
2023-12-03 03:47:23 +08:00
golang.org/x/sys v0.15.0 // indirect
golang.org/x/text v0.14.0 // indirect
2023-09-27 17:36:12 +08:00
google.golang.org/protobuf v1.31.0 // indirect
2023-08-07 03:32:46 +08:00
gopkg.in/yaml.v3 v3.0.1 // indirect
nhooyr.io/websocket v1.8.10 // indirect
2023-08-07 03:32:46 +08:00
rsc.io/qr v0.2.0 // indirect
)