Vendor dependencies
Showing
- go.mod 13 additions, 3 deletionsgo.mod
- go.sum 38 additions, 6 deletionsgo.sum
- vendor/github.com/cloudevents/sdk-go/protocol/nats/v2/LICENSE 0 additions, 0 deletions...or/github.com/cloudevents/sdk-go/protocol/nats/v2/LICENSE
- vendor/github.com/cloudevents/sdk-go/protocol/nats/v2/doc.go 0 additions, 0 deletionsvendor/github.com/cloudevents/sdk-go/protocol/nats/v2/doc.go
- vendor/github.com/cloudevents/sdk-go/protocol/nats/v2/message.go 0 additions, 0 deletions...github.com/cloudevents/sdk-go/protocol/nats/v2/message.go
- vendor/github.com/cloudevents/sdk-go/protocol/nats/v2/options.go 0 additions, 0 deletions...github.com/cloudevents/sdk-go/protocol/nats/v2/options.go
- vendor/github.com/cloudevents/sdk-go/protocol/nats/v2/protocol.go 0 additions, 0 deletions...ithub.com/cloudevents/sdk-go/protocol/nats/v2/protocol.go
- vendor/github.com/cloudevents/sdk-go/protocol/nats/v2/receiver.go 0 additions, 0 deletions...ithub.com/cloudevents/sdk-go/protocol/nats/v2/receiver.go
- vendor/github.com/cloudevents/sdk-go/protocol/nats/v2/sender.go 0 additions, 0 deletions.../github.com/cloudevents/sdk-go/protocol/nats/v2/sender.go
- vendor/github.com/cloudevents/sdk-go/protocol/nats/v2/subscriber.go 0 additions, 0 deletions...hub.com/cloudevents/sdk-go/protocol/nats/v2/subscriber.go
- vendor/github.com/cloudevents/sdk-go/protocol/nats/v2/write_message.go 0 additions, 0 deletions....com/cloudevents/sdk-go/protocol/nats/v2/write_message.go
- vendor/github.com/cloudevents/sdk-go/v2/LICENSE 0 additions, 0 deletionsvendor/github.com/cloudevents/sdk-go/v2/LICENSE
- vendor/github.com/cloudevents/sdk-go/v2/alias.go 0 additions, 0 deletionsvendor/github.com/cloudevents/sdk-go/v2/alias.go
- vendor/github.com/cloudevents/sdk-go/v2/binding/binary_writer.go 0 additions, 0 deletions...github.com/cloudevents/sdk-go/v2/binding/binary_writer.go
- vendor/github.com/cloudevents/sdk-go/v2/binding/doc.go 0 additions, 0 deletionsvendor/github.com/cloudevents/sdk-go/v2/binding/doc.go
- vendor/github.com/cloudevents/sdk-go/v2/binding/encoding.go 0 additions, 0 deletionsvendor/github.com/cloudevents/sdk-go/v2/binding/encoding.go
- vendor/github.com/cloudevents/sdk-go/v2/binding/event_message.go 0 additions, 0 deletions...github.com/cloudevents/sdk-go/v2/binding/event_message.go
- vendor/github.com/cloudevents/sdk-go/v2/binding/finish_message.go 0 additions, 0 deletions...ithub.com/cloudevents/sdk-go/v2/binding/finish_message.go
- vendor/github.com/cloudevents/sdk-go/v2/binding/format/doc.go 0 additions, 0 deletions...or/github.com/cloudevents/sdk-go/v2/binding/format/doc.go
- vendor/github.com/cloudevents/sdk-go/v2/binding/format/format.go 0 additions, 0 deletions...github.com/cloudevents/sdk-go/v2/binding/format/format.go
... | @@ -4,6 +4,8 @@ go 1.21 | ... | @@ -4,6 +4,8 @@ go 1.21 |
require ( | require ( | ||
github.com/cenkalti/backoff/v4 v4.2.1 | github.com/cenkalti/backoff/v4 v4.2.1 | ||
github.com/cloudevents/sdk-go/protocol/nats/v2 v2.14.0 | |||
github.com/cloudevents/sdk-go/v2 v2.14.0 | |||
github.com/google/uuid v1.3.0 | github.com/google/uuid v1.3.0 | ||
github.com/kelseyhightower/envconfig v1.4.0 | github.com/kelseyhightower/envconfig v1.4.0 | ||
github.com/prometheus/client_golang v1.16.0 | github.com/prometheus/client_golang v1.16.0 | ||
... | @@ -28,6 +30,7 @@ require ( | ... | @@ -28,6 +30,7 @@ require ( |
github.com/golang/snappy v0.0.1 // indirect | github.com/golang/snappy v0.0.1 // indirect | ||
github.com/gopherjs/gopherjs v0.0.0-20220221023154-0b2280d3ff96 // indirect | github.com/gopherjs/gopherjs v0.0.0-20220221023154-0b2280d3ff96 // indirect | ||
github.com/gorilla/websocket v1.5.0 // indirect | github.com/gorilla/websocket v1.5.0 // indirect | ||
github.com/json-iterator/go v1.1.12 // indirect | |||
github.com/jtolds/gls v4.20.0+incompatible // indirect | github.com/jtolds/gls v4.20.0+incompatible // indirect | ||
github.com/klauspost/compress v1.13.6 // indirect | github.com/klauspost/compress v1.13.6 // indirect | ||
github.com/lestrrat-go/blackmagic v1.0.1 // indirect | github.com/lestrrat-go/blackmagic v1.0.1 // indirect | ||
... | @@ -38,7 +41,14 @@ require ( | ... | @@ -38,7 +41,14 @@ require ( |
github.com/lestrrat-go/option v1.0.1 // indirect | github.com/lestrrat-go/option v1.0.1 // indirect | ||
github.com/manveru/faker v0.0.0-20171103152722-9fbc68a78c4d // indirect | github.com/manveru/faker v0.0.0-20171103152722-9fbc68a78c4d // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect | github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect | ||
github.com/minio/highwayhash v1.0.2 // indirect | |||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | |||
github.com/modern-go/reflect2 v1.0.2 // indirect | |||
github.com/montanaflynn/stats v0.0.0-20171201202039-1bf9dbcd8cbe // indirect | github.com/montanaflynn/stats v0.0.0-20171201202039-1bf9dbcd8cbe // indirect | ||
github.com/nats-io/jwt/v2 v2.5.3 // indirect | |||
github.com/nats-io/nats.go v1.13.1-0.20220308171302-2f2f6968e98d // indirect | |||
github.com/nats-io/nkeys v0.4.6 // indirect | |||
github.com/nats-io/nuid v1.0.1 // indirect | |||
github.com/pmezard/go-difflib v1.0.0 // indirect | github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/prometheus/client_model v0.3.0 // indirect | github.com/prometheus/client_model v0.3.0 // indirect | ||
github.com/prometheus/common v0.42.0 // indirect | github.com/prometheus/common v0.42.0 // indirect | ||
... | @@ -53,11 +63,11 @@ require ( | ... | @@ -53,11 +63,11 @@ require ( |
github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d // indirect | github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d // indirect | ||
github.com/zach-klippenstein/goregen v0.0.0-20160303162051-795b5e3961ea // indirect | github.com/zach-klippenstein/goregen v0.0.0-20160303162051-795b5e3961ea // indirect | ||
go.uber.org/multierr v1.10.0 // indirect | go.uber.org/multierr v1.10.0 // indirect | ||
golang.org/x/crypto v0.12.0 // indirect | golang.org/x/crypto v0.14.0 // indirect | ||
golang.org/x/mod v0.12.0 // indirect | golang.org/x/mod v0.12.0 // indirect | ||
golang.org/x/net v0.14.0 // indirect | golang.org/x/net v0.14.0 // indirect | ||
golang.org/x/sys v0.11.0 // indirect | golang.org/x/sys v0.13.0 // indirect | ||
golang.org/x/text v0.12.0 // indirect | golang.org/x/text v0.13.0 // indirect | ||
golang.org/x/tools v0.11.0 // indirect | golang.org/x/tools v0.11.0 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/protobuf v1.31.0 // indirect | google.golang.org/protobuf v1.31.0 // indirect | ||
... | ... |
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
Please register or sign in to comment