tdl/go.mod

53 lines
2 KiB
Modula-2
Raw Permalink Normal View History

2022-09-01 15:16:59 +08:00
module github.com/iyear/tdl
go 1.18
require (
github.com/fatih/color v1.13.0
2022-09-04 10:49:39 +08:00
github.com/gabriel-vasile/mimetype v1.4.1
github.com/go-playground/validator/v10 v10.11.0
2022-09-01 19:10:08 +08:00
github.com/gotd/contrib v0.13.0
2022-09-01 15:16:59 +08:00
github.com/gotd/td v0.68.1
2022-09-04 10:49:39 +08:00
github.com/jedib0t/go-pretty/v6 v6.3.8
2022-09-01 15:16:59 +08:00
github.com/spf13/cobra v1.5.0
github.com/tcnksm/go-input v0.0.0-20180404061846-548a7d7a8ee8
go.etcd.io/bbolt v1.3.6
2022-09-04 10:49:39 +08:00
golang.org/x/net v0.0.0-20220826154423-83b083e8dc8b
golang.org/x/sync v0.0.0-20220819030929-7fc1605a5dde
2022-09-14 09:18:02 +08:00
golang.org/x/time v0.0.0-20211116232009-f0f3c7e86c11
2022-09-01 15:16:59 +08:00
)
require (
github.com/cenkalti/backoff/v4 v4.1.3 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
github.com/go-faster/errors v0.6.1 // indirect
github.com/go-faster/jx v0.39.0 // indirect
github.com/go-faster/xor v0.3.0 // indirect
2022-09-04 10:49:39 +08:00
github.com/go-playground/locales v0.14.0 // indirect
github.com/go-playground/universal-translator v0.18.0 // indirect
2022-09-01 15:16:59 +08:00
github.com/gotd/ige v0.2.2 // indirect
github.com/gotd/neo v0.1.5 // indirect
2022-09-04 10:49:39 +08:00
github.com/inconshreveable/mousetrap v1.0.1 // indirect
2022-09-01 15:16:59 +08:00
github.com/klauspost/compress v1.15.9 // indirect
2022-09-04 10:49:39 +08:00
github.com/leodido/go-urn v1.2.1 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.16 // indirect
2022-09-01 19:10:08 +08:00
github.com/mattn/go-runewidth v0.0.13 // indirect
2022-09-04 10:49:39 +08:00
github.com/rivo/uniseg v0.3.4 // indirect
2022-09-01 15:16:59 +08:00
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/segmentio/asm v1.2.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
go.opentelemetry.io/otel v1.9.0 // indirect
go.opentelemetry.io/otel/trace v1.9.0 // indirect
go.uber.org/atomic v1.10.0 // indirect
go.uber.org/multierr v1.8.0 // indirect
go.uber.org/zap v1.23.0 // indirect
2022-09-04 10:49:39 +08:00
golang.org/x/crypto v0.0.0-20220829220503-c86fa9a7ed90 // indirect
golang.org/x/sys v0.0.0-20220829200755-d48e67d00261 // indirect
golang.org/x/term v0.0.0-20220722155259-a9ba230a4035 // indirect
golang.org/x/text v0.3.7 // indirect
2022-09-01 15:16:59 +08:00
gopkg.in/yaml.v2 v2.4.0 // indirect
nhooyr.io/websocket v1.8.7 // indirect
rsc.io/qr v0.2.0 // indirect
)