nurse/go.mod

66 lines
2.7 KiB
Modula-2
Raw Normal View History

2022-09-22 09:46:36 +00:00
module code.icb4dc0.de/prskr/nurse
2022-04-28 16:35:02 +00:00
2022-08-03 17:19:21 +00:00
go 1.19
2022-04-28 16:35:02 +00:00
require (
github.com/PaesslerAG/jsonpath v0.1.1
2022-08-18 17:25:07 +00:00
github.com/alecthomas/participle/v2 v2.0.0-beta.5
2022-04-28 16:35:02 +00:00
github.com/go-redis/redis/v8 v8.11.5
github.com/go-sql-driver/mysql v1.7.0
github.com/google/uuid v1.3.0
github.com/jackc/pgx/v5 v5.3.0
2022-09-27 20:19:27 +00:00
github.com/magefile/mage v1.14.0
2022-08-18 17:25:07 +00:00
github.com/maxatome/go-testdeep v1.12.0
github.com/mitchellh/mapstructure v1.5.0
github.com/testcontainers/testcontainers-go v0.17.0
github.com/valyala/bytebufferpool v1.0.0
go.uber.org/multierr v1.9.0
go.uber.org/zap v1.24.0
golang.org/x/exp v0.0.0-20230212135524-a684f29349b6
golang.org/x/sync v0.1.0
2022-06-02 17:31:28 +00:00
gopkg.in/yaml.v3 v3.0.1
2022-04-28 16:35:02 +00:00
)
replace github.com/docker/docker => github.com/docker/docker v20.10.3-0.20221013203545-33ab36d6b304+incompatible
2022-04-28 16:35:02 +00:00
require (
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
github.com/Microsoft/go-winio v0.5.2 // indirect
github.com/PaesslerAG/gval v1.0.0 // indirect
github.com/cenkalti/backoff/v4 v4.2.0 // indirect
2022-04-28 16:35:02 +00:00
github.com/cespare/xxhash/v2 v2.1.2 // indirect
github.com/containerd/containerd v1.6.12 // indirect
2022-04-28 16:35:02 +00:00
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/docker/distribution v2.8.1+incompatible // indirect
github.com/docker/docker v20.10.20+incompatible // indirect
2022-08-18 17:25:07 +00:00
github.com/docker/go-connections v0.4.0 // indirect
github.com/docker/go-units v0.5.0 // indirect
2022-04-28 16:35:02 +00:00
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
github.com/klauspost/compress v1.11.13 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/magiconair/properties v1.8.7 // indirect
github.com/moby/patternmatcher v0.5.0 // indirect
github.com/moby/sys/sequential v0.5.0 // indirect
github.com/moby/term v0.0.0-20221128092401-c43b287e0e0f // indirect
2022-04-28 16:35:02 +00:00
github.com/morikuni/aec v1.0.0 // indirect
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/opencontainers/image-spec v1.1.0-rc2 // indirect
github.com/opencontainers/runc v1.1.3 // indirect
2022-04-28 16:35:02 +00:00
github.com/pkg/errors v0.9.1 // indirect
github.com/rogpeppe/go-internal v1.9.0 // indirect
github.com/sirupsen/logrus v1.9.0 // indirect
2022-08-18 17:25:07 +00:00
go.uber.org/atomic v1.10.0 // indirect
go.uber.org/goleak v1.1.12 // indirect
golang.org/x/crypto v0.6.0 // indirect
golang.org/x/net v0.6.0 // indirect
golang.org/x/sys v0.5.0 // indirect
golang.org/x/text v0.7.0 // indirect
google.golang.org/genproto v0.0.0-20220617124728-180714bec0ad // indirect
2022-06-02 17:31:28 +00:00
google.golang.org/grpc v1.47.0 // indirect
2022-04-28 16:35:02 +00:00
google.golang.org/protobuf v1.28.0 // indirect
)