Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 28 additions & 14 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,23 +1,37 @@
module github.com/apache/rocketmq-client-go/v2

go 1.13
go 1.22

require (
github.com/BurntSushi/toml v1.1.0 // indirect
github.com/emirpasic/gods v1.12.0
github.com/emirpasic/gods v1.18.1
github.com/go-redis/redis/v8 v8.11.5
github.com/golang/mock v1.3.1
github.com/google/uuid v1.3.0
github.com/golang/mock v1.6.0
github.com/google/uuid v1.6.0
github.com/json-iterator/go v1.1.12
github.com/patrickmn/go-cache v2.1.0+incompatible
github.com/pkg/errors v0.8.1
github.com/sirupsen/logrus v1.4.0
github.com/smartystreets/goconvey v1.6.4
github.com/stretchr/testify v1.5.1
github.com/tidwall/gjson v1.13.0
go.uber.org/atomic v1.5.1
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/natefinch/lumberjack.v2 v2.0.0
github.com/pkg/errors v0.9.1
github.com/sirupsen/logrus v1.9.3
github.com/smartystreets/goconvey v1.8.1
github.com/stretchr/testify v1.9.0
github.com/tidwall/gjson v1.17.3
go.uber.org/atomic v1.11.0
gopkg.in/natefinch/lumberjack.v2 v2.2.1
stathat.com/c/consistent v1.0.0
)

require (
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/gopherjs/gopherjs v1.17.2 // indirect
github.com/jtolds/gls v4.20.0+incompatible // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/smarty/assertions v1.16.0 // indirect
github.com/tidwall/match v1.1.1 // indirect
github.com/tidwall/pretty v1.2.1 // indirect
golang.org/x/sys v0.24.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
Loading