-
Notifications
You must be signed in to change notification settings - Fork 425
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update gitignore * update go.mod & ci * update spell
- Loading branch information
1 parent
077cd3b
commit aa08871
Showing
5 changed files
with
21 additions
and
28 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,6 +1,4 @@ | ||
.idea | ||
go.mod | ||
go.sum | ||
vendor/ | ||
coverage.txt | ||
examples/test | ||
|
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
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,20 +1,17 @@ | ||
module github.com/apache/rocketmq-client-go/v2 | ||
|
||
go 1.13 | ||
|
||
require ( | ||
github.com/emirpasic/gods v1.12.0 | ||
github.com/golang/mock v1.3.1 | ||
github.com/json-iterator/go v1.1.9 | ||
github.com/pkg/errors v0.8.1 | ||
github.com/sirupsen/logrus v1.4.1 | ||
github.com/smartystreets/goconvey v0.0.0-20190710185942-9d28bd7c0945 | ||
github.com/smartystreets/goconvey v1.6.4 | ||
github.com/stathat/consistent v1.0.0 | ||
github.com/stretchr/testify v1.3.0 | ||
github.com/tidwall/gjson v1.2.1 | ||
github.com/tidwall/match v1.0.1 // indirect | ||
github.com/tidwall/pretty v0.0.0-20190325153808-1166b9ac2b65 // indirect | ||
github.com/tidwall/gjson v1.8.1 | ||
go.uber.org/atomic v1.5.1 | ||
stathat.com/c/consistent v1.0.0 | ||
stathat.com/c/consistent v1.0.0 // indirect | ||
) | ||
|
||
replace stathat.com/c/consistent v1.0.0 => github.com/stathat/consistent v1.0.0 | ||
|
||
go 1.13 |
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