-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathgo.mod
More file actions
24 lines (19 loc) · 694 Bytes
/
go.mod
File metadata and controls
24 lines (19 loc) · 694 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
module uploader
go 1.21
require github.com/schollz/progressbar/v3 v3.13.1
require github.com/gofrs/uuid v4.4.0+incompatible // indirect
require (
github.com/jzelinskie/whirlpool v0.0.0-20201016144138-0675e54bb004 // indirect
github.com/kelseyhightower/envconfig v1.4.0
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
github.com/sirupsen/logrus v1.9.0 // indirect
golang.org/x/term v0.11.0 // indirect
golang.org/x/time v0.3.0 // indirect
)
require (
github.com/joho/godotenv v1.5.1
github.com/mattn/go-runewidth v0.0.15 // indirect
github.com/rclone/rclone v1.63.1
github.com/rivo/uniseg v0.4.4 // indirect
golang.org/x/sys v0.11.0 // indirect
)