mirror of
https://github.com/containers/podman.git
synced 2026-03-28 03:22:18 -04:00
It appears[1] that ginkgo binary can be easily built from the top-level vendor, so it does not make sense to have a second copy in test/tools (and a hassle of keeping the two in sync). Inspired by [1], [2], and a run of make localtest, which shows: > Ginkgo detected a version mismatch between the Ginkgo CLI and the version of Ginkgo imported by your packages: > Ginkgo CLI Version: > 2.22.1 > Mismatched package versions found: > 2.23.3 used by podman, common, containers, parse, quadlet, rootlessport, abi, tunnel, libpod, events, file, shm, logs, annotations, libpod, utils, apiutil, auth, ctime, abi, expansion, utils, emulation, env, errorhandling, machine, compression, connection, define, ocipull, provider, proxyenv, qemu, command, shim, vmconfigs, rootless, signal, specgen, generate, kube, specgenutil, systemd, generate, notifyproxy, parser, timetype, trust, util, utils [1]:af29bb5b6e (r2020246403)[2]:e6c7ec94e2 (r2020230241)Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
76 lines
3.2 KiB
Modula-2
76 lines
3.2 KiB
Modula-2
module github.com/containers/podman/test/tools
|
|
|
|
// Warning: if there is a "toolchain" directive anywhere in this file (and most of the
|
|
// time there shouldn't be), its version must be an exact match to the "go" directive.
|
|
|
|
go 1.22.0
|
|
|
|
require (
|
|
github.com/cpuguy83/go-md2man/v2 v2.0.6
|
|
github.com/go-swagger/go-swagger v0.30.5
|
|
github.com/vbatts/git-validation v1.2.2
|
|
golang.org/x/tools v0.30.0
|
|
)
|
|
|
|
require (
|
|
github.com/Masterminds/goutils v1.1.1 // indirect
|
|
github.com/Masterminds/semver/v3 v3.2.0 // indirect
|
|
github.com/Masterminds/sprig/v3 v3.2.3 // indirect
|
|
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
|
|
github.com/fatih/color v1.15.0 // indirect
|
|
github.com/felixge/httpsnoop v1.0.3 // indirect
|
|
github.com/fsnotify/fsnotify v1.6.0 // indirect
|
|
github.com/go-openapi/analysis v0.21.4 // indirect
|
|
github.com/go-openapi/errors v0.20.4 // indirect
|
|
github.com/go-openapi/inflect v0.19.0 // indirect
|
|
github.com/go-openapi/jsonpointer v0.19.6 // indirect
|
|
github.com/go-openapi/jsonreference v0.20.2 // indirect
|
|
github.com/go-openapi/loads v0.21.2 // indirect
|
|
github.com/go-openapi/runtime v0.26.0 // indirect
|
|
github.com/go-openapi/spec v0.20.9 // indirect
|
|
github.com/go-openapi/strfmt v0.21.7 // indirect
|
|
github.com/go-openapi/swag v0.22.4 // indirect
|
|
github.com/go-openapi/validate v0.22.1 // indirect
|
|
github.com/google/uuid v1.3.0 // indirect
|
|
github.com/gorilla/handlers v1.5.1 // indirect
|
|
github.com/hashicorp/go-version v1.6.0 // indirect
|
|
github.com/hashicorp/hcl v1.0.0 // indirect
|
|
github.com/huandu/xstrings v1.3.3 // indirect
|
|
github.com/imdario/mergo v0.3.12 // indirect
|
|
github.com/jessevdk/go-flags v1.5.0 // indirect
|
|
github.com/josharian/intern v1.0.0 // indirect
|
|
github.com/kr/pretty v0.3.1 // indirect
|
|
github.com/kr/text v0.2.0 // indirect
|
|
github.com/magefile/mage v1.15.0 // indirect
|
|
github.com/magiconair/properties v1.8.7 // indirect
|
|
github.com/mailru/easyjson v0.7.7 // indirect
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/mitchellh/copystructure v1.2.0 // indirect
|
|
github.com/mitchellh/mapstructure v1.5.0 // indirect
|
|
github.com/mitchellh/reflectwalk v1.0.2 // indirect
|
|
github.com/oklog/ulid v1.3.1 // indirect
|
|
github.com/pelletier/go-toml/v2 v2.0.8 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/rogpeppe/go-internal v1.9.0 // indirect
|
|
github.com/russross/blackfriday/v2 v2.1.0 // indirect
|
|
github.com/shopspring/decimal v1.2.0 // indirect
|
|
github.com/sirupsen/logrus v1.9.3 // indirect
|
|
github.com/spf13/afero v1.9.5 // indirect
|
|
github.com/spf13/cast v1.5.1 // indirect
|
|
github.com/spf13/jwalterweatherman v1.1.0 // indirect
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
github.com/spf13/viper v1.16.0 // indirect
|
|
github.com/subosito/gotenv v1.4.2 // indirect
|
|
github.com/toqueteos/webbrowser v1.2.0 // indirect
|
|
go.mongodb.org/mongo-driver v1.11.3 // indirect
|
|
golang.org/x/crypto v0.31.0 // indirect
|
|
golang.org/x/mod v0.23.0 // indirect
|
|
golang.org/x/sync v0.11.0 // indirect
|
|
golang.org/x/sys v0.30.0 // indirect
|
|
golang.org/x/text v0.21.0 // indirect
|
|
gopkg.in/ini.v1 v1.67.0 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|