forked from tursodatabase/libsql-client-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
24 lines (20 loc) · 809 Bytes
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
module github.com/tursodatabase/libsql-client-go
go 1.20
require (
github.com/antlr/antlr4/runtime/Go/antlr/v4 v4.0.0-20230512164433-5d1fd1a340c9
github.com/libsql/sqlite-antlr4-parser v0.0.0-20230802215326-5cb5bb604475
golang.org/x/sync v0.3.0
nhooyr.io/websocket v1.8.7
)
require golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e // indirect
require (
github.com/golang/protobuf v1.5.2 // indirect
github.com/google/go-cmp v0.5.9 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/klauspost/compress v1.15.15 // indirect
github.com/mattn/go-isatty v0.0.18 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
golang.org/x/sys v0.9.0 // indirect
google.golang.org/protobuf v1.28.1 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)