chore: rename package to not require replace in go.mod and update to go 1.17

This commit is contained in:
Richard Ramos 2022-07-07 09:17:05 -04:00
parent 7d5fb6db12
commit e9ce4db29a
No known key found for this signature in database
GPG Key ID: BD36D48BC9FFC88C
2 changed files with 7 additions and 4 deletions

View File

@ -1,4 +1,4 @@
.PHONY: rlnlib-cross
.PHONY: rlnlib
SHELL := bash # the shell used internally by Make

9
go.mod
View File

@ -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
)