nurse/go.mod

69 lines
3 KiB
Modula-2
Raw Normal View History

2022-04-28 16:35:02 +00:00
module github.com/baez90/nurse
go 1.18
require (
github.com/PaesslerAG/jsonpath v0.1.1
github.com/alecthomas/participle/v2 v2.0.0-beta.1
github.com/docker/go-connections v0.4.0
2022-04-28 16:35:02 +00:00
github.com/go-redis/redis/v8 v8.11.5
github.com/go-sql-driver/mysql v1.6.0
github.com/google/uuid v1.3.0
github.com/jackc/pgx/v5 v5.0.0-alpha.3
2022-04-28 16:35:02 +00:00
github.com/maxatome/go-testdeep v1.11.0
github.com/mitchellh/mapstructure v1.5.0
2022-04-28 16:35:02 +00:00
github.com/testcontainers/testcontainers-go v0.13.0
github.com/valyala/bytebufferpool v1.0.0
go.uber.org/multierr v1.8.0
go.uber.org/zap v1.21.0
golang.org/x/exp v0.0.0-20220613132600-b0d781184e0d
2022-06-02 17:31:28 +00:00
golang.org/x/sync v0.0.0-20220601150217-0de741cfad7f
gopkg.in/yaml.v3 v3.0.1
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
2022-06-02 17:31:28 +00:00
github.com/Microsoft/hcsshim v0.9.3 // indirect
github.com/PaesslerAG/gval v1.0.0 // indirect
2022-04-28 16:35:02 +00:00
github.com/cenkalti/backoff/v4 v4.1.3 // indirect
github.com/cespare/xxhash/v2 v2.1.2 // indirect
2022-06-02 17:31:28 +00:00
github.com/containerd/cgroups v1.0.4 // indirect
github.com/containerd/containerd v1.6.4 // 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
2022-06-02 17:31:28 +00:00
github.com/docker/docker v20.10.16+incompatible // indirect
2022-04-28 16:35:02 +00:00
github.com/docker/go-units v0.4.0 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
github.com/jackc/pgconn v1.12.1 // indirect
github.com/jackc/pgio v1.0.0 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgproto3/v2 v2.3.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect
github.com/jackc/pgtype v1.11.0 // indirect
github.com/jackc/pgx/v4 v4.16.1 // indirect
2022-04-28 16:35:02 +00:00
github.com/magiconair/properties v1.8.6 // indirect
github.com/moby/sys/mount v0.3.2 // indirect
github.com/moby/sys/mountinfo v0.6.1 // indirect
github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6 // indirect
github.com/morikuni/aec v1.0.0 // indirect
github.com/opencontainers/go-digest v1.0.0 // indirect
2022-06-02 17:31:28 +00:00
github.com/opencontainers/image-spec v1.0.3-0.20211202183452-c5a74bcca799 // indirect
github.com/opencontainers/runc v1.1.2 // indirect
2022-04-28 16:35:02 +00:00
github.com/pkg/errors v0.9.1 // indirect
github.com/sirupsen/logrus v1.8.1 // indirect
go.opencensus.io v0.23.0 // indirect
go.uber.org/atomic v1.9.0 // indirect
golang.org/x/crypto v0.0.0-20211209193657-4570a0811e8b // indirect
2022-06-02 17:31:28 +00:00
golang.org/x/net v0.0.0-20220531201128-c960675eff93 // indirect
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect
golang.org/x/text v0.3.7 // indirect
2022-06-02 17:31:28 +00:00
google.golang.org/genproto v0.0.0-20220602131408-e326c6e8e9c8 // indirect
google.golang.org/grpc v1.47.0 // indirect
2022-04-28 16:35:02 +00:00
google.golang.org/protobuf v1.28.0 // indirect
)