summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--go.mod15
-rw-r--r--go.sum4
2 files changed, 10 insertions, 9 deletions
diff --git a/go.mod b/go.mod
index 7429449..96e7eeb 100644
--- a/go.mod
+++ b/go.mod
@@ -2,10 +2,15 @@ module euandre.org/wscat
go 1.21.5
-require github.com/gorilla/websocket v1.5.1
+require (
+ euandre.org/gobang v0.1.0
+ github.com/gorilla/websocket v1.5.3
+)
-require golang.org/x/net v0.17.0 // indirect
+require golang.org/x/net v0.26.0 // indirect
-require euandre.org/gobang v0.1.0
-
-replace euandre.org/gobang => ../gobang
+replace (
+ euandre.org/gobang => ../gobang
+ github.com/gorilla/websocket => ../websocket
+ golang.org/x/net => ../netx
+)
diff --git a/go.sum b/go.sum
deleted file mode 100644
index 272772f..0000000
--- a/go.sum
+++ /dev/null
@@ -1,4 +0,0 @@
-github.com/gorilla/websocket v1.5.1 h1:gmztn0JnHVt9JZquRuzLw3g4wouNVzKL15iLr/zn/QY=
-github.com/gorilla/websocket v1.5.1/go.mod h1:x3kM2JMyaluk02fnUJpQuwD2dCS5NDG2ZHL0uE0tcaY=
-golang.org/x/net v0.17.0 h1:pVaXccu2ozPjCXewfr1S7xza/zcXTity9cCdXQYSjIM=
-golang.org/x/net v0.17.0/go.mod h1:NxSsAGuq816PNPmqtQdLE42eU2Fs7NoRIZrHJAlaCOE=