github.com/panekj/cli@v0.0.0-20230304125325-467dd2f3797e/vendor.mod (about)

     1  module github.com/docker/cli
     2  
     3  // 'vendor.mod' enables use of 'go mod vendor' to managed 'vendor/' directory.
     4  // There is no 'go.mod' file, as that would imply opting in for all the rules
     5  // around SemVer, which this repo cannot abide by as it uses CalVer.
     6  
     7  go 1.18
     8  
     9  require (
    10  	github.com/containerd/containerd v1.6.16
    11  	github.com/creack/pty v1.1.11
    12  	github.com/docker/distribution v2.8.1+incompatible
    13  	github.com/docker/docker v23.0.0+incompatible
    14  	github.com/docker/docker-credential-helpers v0.7.0
    15  	github.com/docker/go-connections v0.4.0
    16  	github.com/docker/go-units v0.5.0
    17  	github.com/fvbommel/sortorder v1.0.2
    18  	github.com/gogo/protobuf v1.3.2
    19  	github.com/google/go-cmp v0.5.9
    20  	github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510
    21  	github.com/imdario/mergo v0.3.12
    22  	github.com/mattn/go-runewidth v0.0.13
    23  	github.com/mitchellh/mapstructure v1.3.2
    24  	github.com/moby/buildkit v0.10.6
    25  	github.com/moby/patternmatcher v0.5.0
    26  	github.com/moby/swarmkit/v2 v2.0.0-20230119195359-904c221ac281
    27  	github.com/moby/sys/sequential v0.5.0
    28  	github.com/moby/sys/signal v0.7.0
    29  	github.com/moby/term v0.0.0-20221128092401-c43b287e0e0f
    30  	github.com/morikuni/aec v1.0.0
    31  	github.com/opencontainers/go-digest v1.0.0
    32  	github.com/opencontainers/image-spec v1.0.3-0.20220303224323-02efb9a75ee1
    33  	github.com/pkg/errors v0.9.1
    34  	github.com/sirupsen/logrus v1.9.0
    35  	github.com/spf13/cobra v1.6.1
    36  	github.com/spf13/pflag v1.0.5
    37  	github.com/theupdateframework/notary v0.7.1-0.20210315103452-bf96a202a09a
    38  	github.com/tonistiigi/go-rosetta v0.0.0-20200727161949-f79598599c5d
    39  	github.com/xeipuuv/gojsonschema v1.2.0
    40  	golang.org/x/sys v0.4.0
    41  	golang.org/x/term v0.4.0
    42  	golang.org/x/text v0.6.0
    43  	gopkg.in/yaml.v2 v2.4.0
    44  	gotest.tools/v3 v3.4.0
    45  )
    46  
    47  require (
    48  	github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
    49  	github.com/Microsoft/go-winio v0.5.2 // indirect
    50  	github.com/beorn7/perks v1.0.1 // indirect
    51  	github.com/cespare/xxhash/v2 v2.1.2 // indirect
    52  	github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c // indirect
    53  	github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c // indirect
    54  	github.com/docker/go-metrics v0.0.1 // indirect
    55  	github.com/go-sql-driver/mysql v1.6.0 // indirect
    56  	github.com/golang/protobuf v1.5.2 // indirect
    57  	github.com/gorilla/mux v1.8.0 // indirect
    58  	github.com/inconshreveable/mousetrap v1.1.0 // indirect
    59  	github.com/klauspost/compress v1.15.12 // indirect
    60  	github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
    61  	github.com/miekg/pkcs11 v1.1.1 // indirect
    62  	github.com/moby/sys/symlink v0.2.0 // indirect
    63  	github.com/opencontainers/runc v1.1.3 // indirect
    64  	github.com/prometheus/client_golang v1.14.0 // indirect
    65  	github.com/prometheus/client_model v0.3.0 // indirect
    66  	github.com/prometheus/common v0.37.0 // indirect
    67  	github.com/prometheus/procfs v0.8.0 // indirect
    68  	github.com/rivo/uniseg v0.2.0 // indirect
    69  	github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
    70  	github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
    71  	go.etcd.io/etcd/raft/v3 v3.5.6 // indirect
    72  	golang.org/x/crypto v0.2.0 // indirect
    73  	golang.org/x/net v0.5.0 // indirect
    74  	golang.org/x/time v0.1.0 // indirect
    75  	google.golang.org/genproto v0.0.0-20220706185917-7780775163c4 // indirect
    76  	google.golang.org/grpc v1.48.0 // indirect
    77  	google.golang.org/protobuf v1.28.1 // indirect
    78  )