diff --git a/Makefile b/Makefile index 23427f6..209a3be 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -.PHONY: rlnlib-cross +.PHONY: rlnlib SHELL := bash # the shell used internally by Make diff --git a/go.mod b/go.mod index c8e4c4c..2f6ae51 100644 --- a/go.mod +++ b/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 )