mirror of
https://github.com/containers/skopeo.git
synced 2025-09-20 09:30:15 +00:00
Bump github.com/containers/storage from 1.26.0 to 1.29.0
Bumps [github.com/containers/storage](https://github.com/containers/storage) from 1.26.0 to 1.29.0. - [Release notes](https://github.com/containers/storage/releases) - [Changelog](https://github.com/containers/storage/blob/master/docs/containers-storage-changes.md) - [Commits](https://github.com/containers/storage/compare/v1.26.0...v1.29.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
This commit is contained in:
committed by
Daniel J Walsh
parent
cfbabac961
commit
5485daff13
16
vendor/github.com/vbauerster/mpb/v6/bar_filler_bar.go
generated
vendored
16
vendor/github.com/vbauerster/mpb/v6/bar_filler_bar.go
generated
vendored
@@ -94,15 +94,15 @@ func (s *barFiller) parse(style string) {
|
||||
if !utf8.ValidString(style) {
|
||||
panic("invalid bar style")
|
||||
}
|
||||
srcFormat := make([][]byte, 0, len(BarDefaultStyle))
|
||||
srcRwidth := make([]int, 0, len(BarDefaultStyle))
|
||||
gr := uniseg.NewGraphemes(style)
|
||||
for gr.Next() {
|
||||
srcFormat = append(srcFormat, gr.Bytes())
|
||||
srcRwidth = append(srcRwidth, runewidth.StringWidth(gr.Str()))
|
||||
srcFormat := make([][]byte, len(BarDefaultStyle))
|
||||
srcRwidth := make([]int, len(BarDefaultStyle))
|
||||
i := 0
|
||||
for gr := uniseg.NewGraphemes(style); i < len(BarDefaultStyle) && gr.Next(); i++ {
|
||||
srcFormat[i] = gr.Bytes()
|
||||
srcRwidth[i] = runewidth.StringWidth(gr.Str())
|
||||
}
|
||||
copy(s.format, srcFormat)
|
||||
copy(s.rwidth, srcRwidth)
|
||||
copy(s.format, srcFormat[:i])
|
||||
copy(s.rwidth, srcRwidth[:i])
|
||||
if s.reverse {
|
||||
s.tip = s.format[rRevTip]
|
||||
s.flush = reverseFlush
|
||||
|
2
vendor/github.com/vbauerster/mpb/v6/go.mod
generated
vendored
2
vendor/github.com/vbauerster/mpb/v6/go.mod
generated
vendored
@@ -5,7 +5,7 @@ require (
|
||||
github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d
|
||||
github.com/mattn/go-runewidth v0.0.10
|
||||
github.com/rivo/uniseg v0.2.0
|
||||
golang.org/x/sys v0.0.0-20210113181707-4bcb84eeeb78
|
||||
golang.org/x/sys v0.0.0-20210324051608-47abb6519492
|
||||
)
|
||||
|
||||
go 1.14
|
||||
|
4
vendor/github.com/vbauerster/mpb/v6/go.sum
generated
vendored
4
vendor/github.com/vbauerster/mpb/v6/go.sum
generated
vendored
@@ -7,5 +7,5 @@ github.com/mattn/go-runewidth v0.0.10/go.mod h1:RAqKPSqVFrSLVXbA8x7dzmKdmGzieGRC
|
||||
github.com/rivo/uniseg v0.1.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc=
|
||||
github.com/rivo/uniseg v0.2.0 h1:S1pD9weZBuJdFmowNwbpi7BJ8TNftyUImj/0WQi72jY=
|
||||
github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc=
|
||||
golang.org/x/sys v0.0.0-20210113181707-4bcb84eeeb78 h1:nVuTkr9L6Bq62qpUqKo/RnZCFfzDBL0bYo6w9OJUqZY=
|
||||
golang.org/x/sys v0.0.0-20210113181707-4bcb84eeeb78/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||
golang.org/x/sys v0.0.0-20210324051608-47abb6519492 h1:Paq34FxTluEPvVyayQqMPgHm+vTOrIifmcYxFBx9TLg=
|
||||
golang.org/x/sys v0.0.0-20210324051608-47abb6519492/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||
|
Reference in New Issue
Block a user