mirror of
https://github.com/jesseduffield/lazydocker.git
synced 2026-01-09 06:21:12 +08:00
- Upgrade Docker client from v27.1.1 to v28.5.2 - Update hardcoded API version from 1.25 to 1.52 - Enable API version negotiation for better compatibility - Fix compatibility with Docker Engine 29.0.0 and newer versions Resolves issues with lazydocker not working with latest Docker clients.
86 lines
3.6 KiB
Modula-2
86 lines
3.6 KiB
Modula-2
module github.com/jesseduffield/lazydocker
|
|
|
|
go 1.22
|
|
|
|
toolchain go1.23.6
|
|
|
|
require (
|
|
github.com/OpenPeeDeeP/xdg v0.2.1-0.20190312153938-4ba9e1eb294c
|
|
github.com/boz/go-throttle v0.0.0-20160922054636-fdc4eab740c1
|
|
github.com/cloudfoundry/jibber_jabber v0.0.0-20151120183258-bcc4c8345a21
|
|
github.com/docker/cli v27.1.1+incompatible
|
|
github.com/docker/docker v28.5.2+incompatible
|
|
github.com/fatih/color v1.10.0
|
|
github.com/go-errors/errors v1.5.1
|
|
github.com/gookit/color v1.5.0
|
|
github.com/imdario/mergo v0.3.16
|
|
github.com/integrii/flaggy v1.4.0
|
|
github.com/jesseduffield/asciigraph v0.0.0-20190605104717-6d88e39309ee
|
|
github.com/jesseduffield/gocui v0.3.1-0.20240418080333-8cd33929c513
|
|
github.com/jesseduffield/kill v0.0.0-20220618033138-bfbe04675d10
|
|
github.com/jesseduffield/lazycore v0.0.0-20221023210126-718a4caea996
|
|
github.com/jesseduffield/yaml v0.0.0-20190702115811-b900b7e08b56
|
|
github.com/mattn/go-runewidth v0.0.15
|
|
github.com/mcuadros/go-lookup v0.0.0-20171110082742-5650f26be767
|
|
github.com/mgutz/str v1.2.0
|
|
github.com/pmezard/go-difflib v1.0.0
|
|
github.com/samber/lo v1.31.0
|
|
github.com/sasha-s/go-deadlock v0.3.1
|
|
github.com/sirupsen/logrus v1.9.3
|
|
github.com/spkg/bom v0.0.0-20160624110644-59b7046e48ad
|
|
github.com/stretchr/testify v1.9.0
|
|
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1
|
|
)
|
|
|
|
require (
|
|
github.com/containerd/errdefs v1.0.0 // indirect
|
|
github.com/containerd/errdefs/pkg v0.3.0 // indirect
|
|
github.com/moby/sys/atomicwriter v0.1.0 // indirect
|
|
github.com/moby/sys/sequential v0.6.0 // indirect
|
|
)
|
|
|
|
require (
|
|
github.com/Microsoft/go-winio v0.6.2 // indirect
|
|
github.com/containerd/log v0.1.0 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/distribution/reference v0.6.0 // indirect
|
|
github.com/docker/docker-credential-helpers v0.8.2 // indirect
|
|
github.com/docker/go-connections v0.5.0 // indirect
|
|
github.com/docker/go-units v0.5.0 // indirect
|
|
github.com/felixge/httpsnoop v1.0.4 // indirect
|
|
github.com/fvbommel/sortorder v1.1.0 // indirect
|
|
github.com/gdamore/encoding v1.0.1 // indirect
|
|
github.com/gdamore/tcell/v2 v2.7.4 // indirect
|
|
github.com/go-logr/logr v1.4.2 // indirect
|
|
github.com/go-logr/stdr v1.2.2 // indirect
|
|
github.com/goccy/go-yaml v1.11.0
|
|
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
|
|
github.com/mattn/go-colorable v0.1.8 // indirect
|
|
github.com/mattn/go-isatty v0.0.12 // indirect
|
|
github.com/moby/docker-image-spec v1.3.1 // indirect
|
|
github.com/moby/term v0.5.0 // indirect
|
|
github.com/morikuni/aec v1.0.0 // indirect
|
|
github.com/onsi/ginkgo v1.8.0 // indirect
|
|
github.com/onsi/gomega v1.5.0 // indirect
|
|
github.com/opencontainers/go-digest v1.0.0 // indirect
|
|
github.com/opencontainers/image-spec v1.1.0 // indirect
|
|
github.com/petermattis/goid v0.0.0-20180202154549-b0b1615b78e5 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/rivo/uniseg v0.4.7 // indirect
|
|
github.com/xo/terminfo v0.0.0-20210125001918-ca9a967f8778 // indirect
|
|
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.53.0 // indirect
|
|
go.opentelemetry.io/otel v1.28.0 // indirect
|
|
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.28.0 // indirect
|
|
go.opentelemetry.io/otel/metric v1.28.0 // indirect
|
|
go.opentelemetry.io/otel/sdk v1.28.0 // indirect
|
|
go.opentelemetry.io/otel/trace v1.28.0 // indirect
|
|
golang.org/x/crypto v0.24.0 // indirect
|
|
golang.org/x/exp v0.0.0-20231006140011-7918f672742d // indirect
|
|
golang.org/x/sys v0.24.0 // indirect
|
|
golang.org/x/term v0.21.0 // indirect
|
|
golang.org/x/text v0.16.0 // indirect
|
|
golang.org/x/time v0.5.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
gotest.tools/v3 v3.5.1 // indirect
|
|
)
|