Progress bar (#44)

* Testing out progress indicators

* Fix sum file

* Add basic progress indicator

* Clear up progress indicator initialization

* Update dependencies
This commit is contained in:
2021-04-03 14:58:40 +02:00
committed by GitHub
parent 7948c8d861
commit fdd60472ed
5 changed files with 48 additions and 28 deletions

16
go.mod
View File

@@ -3,32 +3,36 @@ module speedrun
go 1.16
require (
cloud.google.com/go v0.80.0 // indirect
cloud.google.com/go v0.81.0 // indirect
github.com/alitto/pond v1.5.0
github.com/apex/log v1.9.0
github.com/cheggaaa/pb/v3 v3.0.7
github.com/fatih/color v1.10.0 // indirect
github.com/fsnotify/fsnotify v1.4.9 // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/jwalton/gchalk v1.0.3
github.com/lunixbochs/vtclean v1.0.0 // indirect
github.com/magiconair/properties v1.8.5 // indirect
github.com/manifoldco/promptui v0.8.0
github.com/mattn/go-runewidth v0.0.12 // indirect
github.com/melbahja/goph v1.2.1
github.com/mitchellh/go-homedir v1.1.0
github.com/mitchellh/mapstructure v1.4.1 // indirect
github.com/pelletier/go-toml v1.8.1 // indirect
github.com/pkg/sftp v1.13.0 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/spf13/afero v1.6.0 // indirect
github.com/spf13/cast v1.3.1 // indirect
github.com/spf13/cobra v1.1.3
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/viper v1.7.1
golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2
golang.org/x/net v0.0.0-20210326220855-61e056675ecf // indirect
golang.org/x/oauth2 v0.0.0-20210323180902-22b0adad7558 // indirect
golang.org/x/sys v0.0.0-20210326220804-49726bf1d181 // indirect
golang.org/x/net v0.0.0-20210331212208-0fccb6fa2b5c // indirect
golang.org/x/oauth2 v0.0.0-20210402161424-2e8d93401602 // indirect
golang.org/x/sys v0.0.0-20210402192133-700132347e07 // indirect
golang.org/x/term v0.0.0-20210317153231-de623e64d2a6 // indirect
golang.org/x/text v0.3.6 // indirect
google.golang.org/api v0.43.0
google.golang.org/genproto v0.0.0-20210325224202-eed09b1b5210 // indirect
google.golang.org/grpc v1.36.1 // indirect
gopkg.in/ini.v1 v1.62.0 // indirect
)