Skip to content

Commit 37ba422

Browse files
feat: use cosmos module name rather than tecbot (#4)
1 parent bd4da31 commit 37ba422

3 files changed

Lines changed: 12 additions & 5 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# gorocksdb, a Go wrapper for RocksDB
22

3-
[![Build Status](https://travis-ci.org/tecbot/gorocksdb.svg)](https://travis-ci.org/tecbot/gorocksdb) [![GoDoc](https://godoc.org/github.com/tecbot/gorocksdb?status.svg)](http://godoc.org/github.com/tecbot/gorocksdb)
3+
[![Build Status](https://travis-ci.org/cosmos/gorocksdb.svg)](https://travis-ci.org/tecbot/gorocksdb) [![GoDoc](https://godoc.org/github.com/tecbot/gorocksdb?status.svg)](http://godoc.org/github.com/tecbot/gorocksdb)
44

55
## Install
66

@@ -10,7 +10,7 @@ After that, you can install gorocksdb using the following command:
1010

1111
CGO_CFLAGS="-I/path/to/rocksdb/include" \
1212
CGO_LDFLAGS="-L/path/to/rocksdb -lrocksdb -lstdc++ -lm -lz -lbz2 -lsnappy -llz4 -lzstd" \
13-
go get github.com/tecbot/gorocksdb
13+
go get github.com/cosmos/gorocksdb
1414

1515
Please note that this package might upgrade the required RocksDB version at any moment.
1616
Vendoring is thus highly recommended if you require high stability.

go.mod

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
1-
module github.com/tecbot/gorocksdb
1+
module github.com/cosmos/gorocksdb
22

3-
go 1.13
3+
go 1.17
44

55
require (
66
github.com/facebookgo/ensure v0.0.0-20200202191622-63f1cf65ac4c
7+
github.com/stretchr/testify v1.7.0
8+
)
9+
10+
require (
11+
github.com/davecgh/go-spew v1.1.0 // indirect
712
github.com/facebookgo/stack v0.0.0-20160209184415-751773369052 // indirect
813
github.com/facebookgo/subset v0.0.0-20200203212716-c811ad88dec4 // indirect
9-
github.com/stretchr/testify v1.7.0
14+
github.com/pmezard/go-difflib v1.0.0 // indirect
15+
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
1016
)

go.sum

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZN
1111
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
1212
github.com/stretchr/testify v1.7.0 h1:nwc3DEeHmmLAfoZucVR881uASk0Mfjw8xYJ99tb5CcY=
1313
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
14+
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
1415
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
1516
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c h1:dUUwHk2QECo/6vqA44rthZ8ie2QXMNeKRTHCNY2nXvo=
1617
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=

0 commit comments

Comments
 (0)