From d794400c8f6e2a04aed790196271aff251db701f Mon Sep 17 00:00:00 2001 From: Richard Ramos Date: Sun, 23 Oct 2022 09:00:46 -0400 Subject: [PATCH] chore: upgrade to go 1.17 and rename module for easier integration --- go.mod | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/go.mod b/go.mod index b6a93ed..8e2dbe9 100644 --- a/go.mod +++ b/go.mod @@ -1,8 +1,14 @@ -module github.com/flynn/noise +module github.com/status-im/noise -go 1.16 +go 1.17 require ( golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2 gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c ) + +require ( + github.com/kr/pretty v0.2.1 // indirect + github.com/kr/text v0.1.0 // indirect + golang.org/x/sys v0.0.0-20201119102817-f84b799fce68 // indirect +)