0
0
mirror of https://github.com/tursodatabase/libsql.git synced 2025-05-17 19:26:55 +00:00
Files
libsql/bindings/go/go.mod
Piotr Jastrzębski 4332bb6c16 Go tests (#962)
* Go bindings: TestConcurrentOnSingleConnection

Signed-off-by: Piotr Jastrzebski <piotr@chiselstrike.com>

* Go bindings: TestDataTypes

Signed-off-by: Piotr Jastrzebski <piotr@chiselstrike.com>

* Go bindings: TestPing

Signed-off-by: Piotr Jastrzebski <piotr@chiselstrike.com>

---------

Signed-off-by: Piotr Jastrzebski <piotr@chiselstrike.com>
2024-01-29 15:24:58 +00:00

17 lines
437 B
Modula-2

module github.com/libsql/go-libsql
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.6.0
gotest.tools v2.2.0+incompatible
)
require (
github.com/google/go-cmp v0.5.9 // indirect
github.com/pkg/errors v0.9.1 // indirect
golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e // indirect
)