-
Notifications
You must be signed in to change notification settings - Fork 48
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
Lior Nabat
committed
Apr 14, 2022
1 parent
8fcea4c
commit ccdd792
Showing
3 changed files
with
336 additions
and
202 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
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,34 +1,89 @@ | ||
module github.com/kubemq-io/kubemq-community | ||
|
||
go 1.15 | ||
go 1.18 | ||
|
||
require ( | ||
github.com/AlecAivazis/survey/v2 v2.2.16 | ||
github.com/BurntSushi/toml v0.4.1 | ||
github.com/casbin/casbin/v2 v2.36.1 | ||
github.com/AlecAivazis/survey/v2 v2.3.4 | ||
github.com/BurntSushi/toml v1.1.0 | ||
github.com/casbin/casbin/v2 v2.44.0 | ||
github.com/fortytw2/leaktest v1.3.0 | ||
github.com/ghodss/yaml v1.0.0 | ||
github.com/go-resty/resty/v2 v2.6.0 | ||
github.com/golang-jwt/jwt/v4 v4.0.0 | ||
github.com/gorilla/websocket v1.4.2 | ||
github.com/json-iterator/go v1.1.11 | ||
github.com/kr/pretty v0.2.0 // indirect | ||
github.com/go-resty/resty/v2 v2.7.0 | ||
github.com/golang-jwt/jwt/v4 v4.4.1 | ||
github.com/gorilla/websocket v1.5.0 | ||
github.com/json-iterator/go v1.1.12 | ||
github.com/kubemq-io/broker v1.5.0 | ||
github.com/kubemq-io/kubemq-go v1.7.2 | ||
github.com/kubemq-io/kubemq-go v1.7.6 | ||
github.com/kubemq-io/protobuf v1.3.1 | ||
github.com/labstack/echo/v4 v4.5.0 | ||
github.com/labstack/gommon v0.3.0 | ||
github.com/nats-io/nats-server/v2 v2.3.4 // indirect | ||
github.com/labstack/echo/v4 v4.7.2 | ||
github.com/labstack/gommon v0.3.1 | ||
github.com/nats-io/nuid v1.0.1 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/prometheus/client_golang v1.11.0 | ||
github.com/prometheus/client_golang v1.12.1 | ||
github.com/prometheus/client_model v0.2.0 | ||
github.com/prometheus/common v0.30.0 | ||
github.com/smartystreets/assertions v1.1.0 // indirect | ||
github.com/spf13/cobra v1.2.1 | ||
github.com/spf13/viper v1.8.1 | ||
github.com/stretchr/testify v1.7.0 | ||
github.com/prometheus/common v0.33.0 | ||
github.com/spf13/cobra v1.4.0 | ||
github.com/spf13/viper v1.11.0 | ||
github.com/stretchr/testify v1.7.1 | ||
go.uber.org/atomic v1.9.0 | ||
go.uber.org/zap v1.19.0 | ||
google.golang.org/grpc v1.40.0 | ||
go.uber.org/zap v1.21.0 | ||
google.golang.org/grpc v1.45.0 | ||
) | ||
|
||
require ( | ||
github.com/Knetic/govaluate v3.0.1-0.20171022003610-9aa49832a739+incompatible // indirect | ||
github.com/armon/go-metrics v0.3.10 // indirect | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/cespare/xxhash/v2 v2.1.2 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/fatih/color v1.13.0 // indirect | ||
github.com/fsnotify/fsnotify v1.5.1 // indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect | ||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/hashicorp/go-hclog v1.2.0 // indirect | ||
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect | ||
github.com/hashicorp/go-msgpack v1.1.5 // indirect | ||
github.com/hashicorp/golang-lru v0.5.4 // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/hashicorp/raft v1.2.0 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.0 // indirect | ||
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect | ||
github.com/magiconair/properties v1.8.6 // indirect | ||
github.com/mattn/go-colorable v0.1.12 // indirect | ||
github.com/mattn/go-isatty v0.0.14 // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect | ||
github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b // indirect | ||
github.com/mitchellh/mapstructure v1.4.3 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.2 // indirect | ||
github.com/nats-io/jwt v1.2.2 // indirect | ||
github.com/nats-io/nats.go v1.11.1-0.20210623165838-4b75fc59ae30 // indirect | ||
github.com/nats-io/nkeys v0.3.0 // indirect | ||
github.com/pelletier/go-toml v1.9.4 // indirect | ||
github.com/pelletier/go-toml/v2 v2.0.0-beta.8 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/prometheus/procfs v0.7.3 // indirect | ||
github.com/spf13/afero v1.8.2 // indirect | ||
github.com/spf13/cast v1.4.1 // indirect | ||
github.com/spf13/jwalterweatherman v1.1.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/subosito/gotenv v1.2.0 // indirect | ||
github.com/valyala/bytebufferpool v1.0.0 // indirect | ||
github.com/valyala/fasttemplate v1.2.1 // indirect | ||
go.etcd.io/bbolt v1.3.5 // indirect | ||
go.opencensus.io v0.23.0 // indirect | ||
go.uber.org/multierr v1.6.0 // indirect | ||
golang.org/x/crypto v0.0.0-20220411220226-7b82a4e95df4 // indirect | ||
golang.org/x/net v0.0.0-20220412020605-290c469a71a5 // indirect | ||
golang.org/x/sys v0.0.0-20220412211240-33da011f77ad // indirect | ||
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
golang.org/x/time v0.0.0-20201208040808-7e3f01d25324 // indirect | ||
google.golang.org/genproto v0.0.0-20220407144326-9054f6ed7bac // indirect | ||
google.golang.org/protobuf v1.28.0 // indirect | ||
gopkg.in/ini.v1 v1.66.4 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect | ||
) |
Oops, something went wrong.