-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
114 additions
and
99 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,52 +1,52 @@ | ||
module github.com/choria-io/asyncjobs | ||
|
||
go 1.19 | ||
go 1.22 | ||
|
||
require ( | ||
github.com/AlecAivazis/survey/v2 v2.3.6 | ||
github.com/choria-io/fisk v0.5.2 | ||
github.com/AlecAivazis/survey/v2 v2.3.7 | ||
github.com/choria-io/fisk v0.6.2 | ||
github.com/dustin/go-humanize v1.0.1 | ||
github.com/nats-io/jsm.go v0.0.35 | ||
github.com/nats-io/nats-server/v2 v2.9.17 | ||
github.com/nats-io/nats.go v1.26.0 | ||
github.com/onsi/ginkgo/v2 v2.9.5 | ||
github.com/onsi/gomega v1.27.7 | ||
github.com/prometheus/client_golang v1.15.1 | ||
github.com/nats-io/jsm.go v0.1.1 | ||
github.com/nats-io/nats-server/v2 v2.10.12 | ||
github.com/nats-io/nats.go v1.34.0 | ||
github.com/onsi/ginkgo/v2 v2.17.1 | ||
github.com/onsi/gomega v1.30.0 | ||
github.com/prometheus/client_golang v1.19.0 | ||
github.com/robfig/cron/v3 v3.0.1 | ||
github.com/segmentio/ksuid v1.0.4 | ||
github.com/sirupsen/logrus v1.9.2 | ||
github.com/sirupsen/logrus v1.9.3 | ||
github.com/xlab/tablewriter v0.0.0-20160610135559-80b567a11ad5 | ||
golang.org/x/term v0.8.0 | ||
golang.org/x/term v0.18.0 | ||
gopkg.in/yaml.v3 v3.0.1 | ||
) | ||
|
||
require ( | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/cespare/xxhash/v2 v2.2.0 // indirect | ||
github.com/go-logr/logr v1.2.4 // indirect | ||
github.com/expr-lang/expr v1.16.2 // indirect | ||
github.com/go-logr/logr v1.4.1 // indirect | ||
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/google/go-cmp v0.5.9 // indirect | ||
github.com/google/pprof v0.0.0-20230510103437-eeec1cb781c3 // indirect | ||
github.com/golang/protobuf v1.5.4 // indirect | ||
github.com/google/go-cmp v0.6.0 // indirect | ||
github.com/google/pprof v0.0.0-20240320155624-b11c3daa6f07 // indirect | ||
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect | ||
github.com/klauspost/compress v1.16.5 // indirect | ||
github.com/klauspost/compress v1.17.7 // indirect | ||
github.com/kr/text v0.2.0 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.19 // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect | ||
github.com/mattn/go-isatty v0.0.20 // indirect | ||
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect | ||
github.com/minio/highwayhash v1.0.2 // indirect | ||
github.com/nats-io/jwt/v2 v2.4.1 // indirect | ||
github.com/nats-io/nkeys v0.4.4 // indirect | ||
github.com/nats-io/jwt/v2 v2.5.5 // indirect | ||
github.com/nats-io/nkeys v0.4.7 // indirect | ||
github.com/nats-io/nuid v1.0.1 // indirect | ||
github.com/prometheus/client_model v0.4.0 // indirect | ||
github.com/prometheus/common v0.44.0 // indirect | ||
github.com/prometheus/procfs v0.10.1 // indirect | ||
golang.org/x/crypto v0.9.0 // indirect | ||
golang.org/x/net v0.10.0 // indirect | ||
golang.org/x/sys v0.8.0 // indirect | ||
golang.org/x/text v0.9.0 // indirect | ||
golang.org/x/time v0.3.0 // indirect | ||
golang.org/x/tools v0.9.1 // indirect | ||
google.golang.org/protobuf v1.30.0 // indirect | ||
github.com/prometheus/client_model v0.6.0 // indirect | ||
github.com/prometheus/common v0.51.1 // indirect | ||
github.com/prometheus/procfs v0.13.0 // indirect | ||
golang.org/x/crypto v0.21.0 // indirect | ||
golang.org/x/net v0.22.0 // indirect | ||
golang.org/x/sys v0.18.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
golang.org/x/time v0.5.0 // indirect | ||
golang.org/x/tools v0.19.0 // indirect | ||
google.golang.org/protobuf v1.33.0 // indirect | ||
) |
Oops, something went wrong.