2021-05-07 11:11:40 -04:00
|
|
|
module github.com/icinga/icingadb/tests
|
|
|
|
|
|
2024-04-10 10:02:51 -04:00
|
|
|
go 1.22
|
2021-05-07 11:11:40 -04:00
|
|
|
|
|
|
|
|
require (
|
2024-03-26 14:34:28 -04:00
|
|
|
github.com/go-sql-driver/mysql v1.8.1
|
2024-07-30 10:30:07 -04:00
|
|
|
github.com/goccy/go-yaml v1.12.0
|
2024-03-19 06:36:36 -04:00
|
|
|
github.com/google/uuid v1.6.0
|
2024-03-19 11:13:20 -04:00
|
|
|
github.com/icinga/icinga-testing v0.0.0-20240322142451-494ccd6d03e8
|
2024-04-23 14:52:25 -04:00
|
|
|
github.com/jmoiron/sqlx v1.4.0
|
2024-03-14 07:26:54 -04:00
|
|
|
github.com/lib/pq v1.10.9
|
2024-07-25 14:23:48 -04:00
|
|
|
github.com/redis/go-redis/v9 v9.6.1
|
2024-03-18 05:51:36 -04:00
|
|
|
github.com/stretchr/testify v1.9.0
|
2024-03-19 07:11:33 -04:00
|
|
|
go.uber.org/zap v1.27.0
|
2022-10-12 09:37:54 -04:00
|
|
|
golang.org/x/exp v0.0.0-20221012112151-59b0eab1532e
|
2024-04-04 14:28:36 -04:00
|
|
|
golang.org/x/sync v0.7.0
|
2022-10-12 09:32:02 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
require (
|
2024-03-18 05:51:42 -04:00
|
|
|
filippo.io/edwards25519 v1.1.0 // indirect
|
2022-10-12 09:32:02 -04:00
|
|
|
github.com/Icinga/go-libs v0.0.0-20220420130327-ef58ad52edd8 // indirect
|
2024-03-14 07:26:54 -04:00
|
|
|
github.com/Microsoft/go-winio v0.6.1 // indirect
|
|
|
|
|
github.com/cespare/xxhash/v2 v2.2.0 // indirect
|
2022-10-12 09:32:02 -04:00
|
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
|
|
|
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
|
2024-03-14 07:26:54 -04:00
|
|
|
github.com/distribution/reference v0.5.0 // indirect
|
|
|
|
|
github.com/docker/distribution v2.8.3+incompatible // indirect
|
2024-03-20 13:30:25 -04:00
|
|
|
github.com/docker/docker v24.0.9+incompatible // indirect
|
2022-10-12 09:32:02 -04:00
|
|
|
github.com/docker/go-connections v0.4.0 // indirect
|
2024-03-14 07:26:54 -04:00
|
|
|
github.com/docker/go-units v0.5.0 // indirect
|
2022-10-12 09:32:02 -04:00
|
|
|
github.com/fatih/color v1.10.0 // indirect
|
|
|
|
|
github.com/gogo/protobuf v1.3.2 // indirect
|
|
|
|
|
github.com/mattn/go-colorable v0.1.8 // indirect
|
|
|
|
|
github.com/mattn/go-isatty v0.0.12 // indirect
|
|
|
|
|
github.com/opencontainers/go-digest v1.0.0 // indirect
|
2024-03-14 07:26:54 -04:00
|
|
|
github.com/opencontainers/image-spec v1.1.0-rc5 // indirect
|
2022-10-12 09:32:02 -04:00
|
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
|
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
2024-03-14 07:26:54 -04:00
|
|
|
go.uber.org/multierr v1.11.0 // indirect
|
|
|
|
|
golang.org/x/mod v0.14.0 // indirect
|
|
|
|
|
golang.org/x/net v0.19.0 // indirect
|
|
|
|
|
golang.org/x/sys v0.16.0 // indirect
|
|
|
|
|
golang.org/x/tools v0.16.1 // indirect
|
2022-10-12 09:32:02 -04:00
|
|
|
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
|
2024-03-14 07:26:54 -04:00
|
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
2021-05-07 11:11:40 -04:00
|
|
|
)
|