mirror of https://github.com/waku-org/go-rln.git
chore: rename package to not require replace in go.mod and update to go 1.17
This commit is contained in:
parent
7d5fb6db12
commit
e9ce4db29a
2
Makefile
2
Makefile
|
@ -1,4 +1,4 @@
|
|||
.PHONY: rlnlib-cross
|
||||
.PHONY: rlnlib
|
||||
|
||||
SHELL := bash # the shell used internally by Make
|
||||
|
||||
|
|
9
go.mod
9
go.mod
|
@ -1,10 +1,13 @@
|
|||
module github.com/decanus/go-rln
|
||||
module github.com/status-im/go-rln
|
||||
|
||||
go 1.16
|
||||
go 1.17
|
||||
|
||||
require github.com/stretchr/testify v1.7.2
|
||||
|
||||
require (
|
||||
github.com/davecgh/go-spew v1.1.1 // indirect
|
||||
github.com/kr/text v0.2.0 // indirect
|
||||
github.com/stretchr/testify v1.7.2
|
||||
github.com/pmezard/go-difflib v1.0.0 // indirect
|
||||
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
|
||||
gopkg.in/yaml.v3 v3.0.1 // indirect
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue