diff options
author | Michael Muré <batolettre@gmail.com> | 2023-01-14 14:49:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-14 14:49:25 +0100 |
commit | 6e5ea512ac82972c6e0da78976f967006e5fe5c4 (patch) | |
tree | 7727fc721b4bd82fcf7869fb48f9656504cbb3af /go.mod | |
parent | a1eec9aadfa24bad4804edc5fbb1c0753f4690cb (diff) | |
parent | 7df34aa7a40be0d7b759ea3ef42cedf9f25f32b2 (diff) | |
download | git-bug-6e5ea512ac82972c6e0da78976f967006e5fe5c4.tar.gz |
Merge pull request #987 from MichaelMure/cache-progress-bar
commands: add a nice terminal progress bar when building the cache
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -26,6 +26,7 @@ require ( github.com/skratchdot/open-golang v0.0.0-20190402232053-79abb63cd66e github.com/spf13/cobra v1.6.1 github.com/stretchr/testify v1.8.1 + github.com/vbauerster/mpb/v8 v8.1.4 github.com/vektah/gqlparser/v2 v2.5.1 github.com/xanzy/go-gitlab v0.77.0 golang.org/x/crypto v0.5.0 @@ -39,6 +40,8 @@ require ( replace github.com/go-git/go-git/v5 => github.com/MichaelMure/go-git/v5 v5.1.1-0.20230114115943-17400561a81c require ( + github.com/VividCortex/ewma v1.2.0 // indirect + github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d // indirect github.com/cloudflare/circl v1.3.1 // indirect github.com/lithammer/dedent v1.1.0 // indirect github.com/owenrumney/go-sarif v1.0.11 // indirect @@ -89,14 +92,14 @@ require ( github.com/kevinburke/ssh_config v1.2.0 // indirect github.com/lucasb-eyer/go-colorful v1.0.3 // indirect github.com/mattn/go-colorable v0.1.13 // indirect - github.com/mattn/go-runewidth v0.0.12 // indirect + github.com/mattn/go-runewidth v0.0.14 // indirect github.com/mitchellh/mapstructure v1.4.1 // indirect github.com/mschoch/smat v0.2.0 // indirect github.com/mtibben/percent v0.2.1 // indirect github.com/philhofer/fwd v1.0.0 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/praetorian-inc/gokart v0.5.1 - github.com/rivo/uniseg v0.1.0 // indirect + github.com/rivo/uniseg v0.2.0 // indirect github.com/russross/blackfriday/v2 v2.1.0 // indirect github.com/sergi/go-diff v1.2.0 // indirect github.com/shurcooL/graphql v0.0.0-20181231061246-d48a9a75455f // indirect |