This commit updates the go.mod file to include the latest versions of the following dependencies: - github.com/Khan/genqlient v0.7.0 - github.com/google/uuid v1.6.0 These updates ensure that the project is using the most recent and stable versions of the dependencies, improving the overall reliability and functionality of the code.
57 lines
2.1 KiB
AMPL
57 lines
2.1 KiB
AMPL
module caatsm
|
|
|
|
go 1.22.5
|
|
|
|
require (
|
|
github.com/Khan/genqlient v0.7.0
|
|
github.com/ThreeDotsLabs/watermill v1.3.5
|
|
github.com/ThreeDotsLabs/watermill-nats/v2 v2.0.2
|
|
github.com/google/uuid v1.6.0
|
|
github.com/nats-io/nats.go v1.34.0
|
|
github.com/onsi/ginkgo/v2 v2.19.0
|
|
github.com/onsi/gomega v1.33.1
|
|
github.com/spf13/viper v1.19.0
|
|
go.uber.org/zap v1.21.0
|
|
golang.org/x/oauth2 v0.18.0
|
|
gopkg.in/natefinch/lumberjack.v2 v2.2.1
|
|
)
|
|
|
|
require (
|
|
github.com/fsnotify/fsnotify v1.7.0 // indirect
|
|
github.com/go-logr/logr v1.4.1 // indirect
|
|
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
|
|
github.com/golang/protobuf v1.5.3 // indirect
|
|
github.com/google/go-cmp v0.6.0 // indirect
|
|
github.com/google/pprof v0.0.0-20240424215950-a892ee059fd6 // indirect
|
|
github.com/hashicorp/hcl v1.0.0 // indirect
|
|
github.com/klauspost/compress v1.17.2 // indirect
|
|
github.com/lithammer/shortuuid/v3 v3.0.7 // indirect
|
|
github.com/magiconair/properties v1.8.7 // indirect
|
|
github.com/mitchellh/mapstructure v1.5.0 // indirect
|
|
github.com/nats-io/nkeys v0.4.7 // indirect
|
|
github.com/nats-io/nuid v1.0.1 // indirect
|
|
github.com/oklog/ulid v1.3.1 // indirect
|
|
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/sagikazarmark/locafero v0.4.0 // indirect
|
|
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
|
|
github.com/sourcegraph/conc v0.3.0 // indirect
|
|
github.com/spf13/afero v1.11.0 // indirect
|
|
github.com/spf13/cast v1.6.0 // indirect
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
github.com/subosito/gotenv v1.6.0 // indirect
|
|
github.com/vektah/gqlparser/v2 v2.5.11 // indirect
|
|
go.uber.org/atomic v1.9.0 // indirect
|
|
go.uber.org/multierr v1.9.0 // indirect
|
|
golang.org/x/crypto v0.23.0 // indirect
|
|
golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect
|
|
golang.org/x/net v0.25.0 // indirect
|
|
golang.org/x/sys v0.20.0 // indirect
|
|
golang.org/x/text v0.15.0 // indirect
|
|
golang.org/x/tools v0.21.0 // indirect
|
|
google.golang.org/appengine v1.6.8 // indirect
|
|
google.golang.org/protobuf v1.33.0 // indirect
|
|
gopkg.in/ini.v1 v1.67.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|