Skip to content

Commit 348a4e4

Browse files
authored
transitioned from nhooyr.io/webosocket to github.com/coder/websocket (#132)
* Update go.mod * updates websocket location/version
1 parent b944339 commit 348a4e4

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.20
55
require (
66
github.com/antlr4-go/antlr/v4 v4.13.0
77
golang.org/x/sync v0.3.0
8-
nhooyr.io/websocket v1.8.10
8+
github.com/coder/websocket v1.8.12
99
)
1010

1111
require golang.org/x/exp v0.0.0-20240325151524-a685a6edb6d8 // indirect

go.sum

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
github.com/antlr4-go/antlr/v4 v4.13.0 h1:lxCg3LAv+EUK6t1i0y1V6/SLeUi0eKEKdhQAlS8TVTI=
22
github.com/antlr4-go/antlr/v4 v4.13.0/go.mod h1:pfChB/xh/Unjila75QW7+VU4TSnWnnk9UTnmpPaOR2g=
3+
github.com/coder/websocket v1.8.12 h1:5bUXkEPPIbewrnkU8LTCLVaxi4N4J8ahufH2vlo4NAo=
4+
github.com/coder/websocket v1.8.12/go.mod h1:LNVeNrXQZfe5qhS9ALED3uA+l5pPqvwXg3CKoDBB2gs=
35
golang.org/x/exp v0.0.0-20240325151524-a685a6edb6d8 h1:aAcj0Da7eBAtrTp03QXWvm88pSyOt+UgdZw2BFZ+lEw=
46
golang.org/x/exp v0.0.0-20240325151524-a685a6edb6d8/go.mod h1:CQ1k9gNrJ50XIzaKCRR2hssIjF07kZFEiieALBM/ARQ=
57
golang.org/x/sync v0.3.0 h1:ftCYgMx6zT/asHUrPw8BLLscYtGznsLAnjq5RH9P66E=

libsql/internal/ws/websockets.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99
"sync"
1010
"time"
1111

12-
"nhooyr.io/websocket"
13-
"nhooyr.io/websocket/wsjson"
12+
"github.com/coder/websocket"
13+
"github.com/coder/websocket/wsjson"
1414
)
1515

1616
// defaultWSTimeout specifies the timeout used for initial http connection

0 commit comments

Comments
 (0)