-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgo.mod
31 lines (27 loc) · 1.01 KB
/
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
25
26
27
28
29
30
31
module github.com/nerdynz/datastore
go 1.22.4
toolchain go1.22.5
require (
github.com/georgysavva/scany/v2 v2.1.3
github.com/jackc/pgx/v5 v5.6.0
github.com/lib/pq v1.10.9
github.com/nerdynz/dat v1.4.0
github.com/nerdynz/security v0.0.0-20231122090124-02bb87723116
github.com/simukti/sqldb-logger v0.0.0-20230108155151-646c1a075551
github.com/timtoronto634/pgx-slog v1.1.0
)
require (
github.com/cenkalti/backoff v2.2.1+incompatible // indirect
github.com/garyburd/redigo v1.6.0 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
github.com/jackc/puddle/v2 v2.2.1 // indirect
github.com/jmoiron/sqlx v1.3.1 // indirect
github.com/mgutz/str v1.2.0 // indirect
github.com/oklog/ulid v1.3.1 // indirect
github.com/oklog/ulid/v2 v2.1.0 // indirect
github.com/pmylund/go-cache v2.1.0+incompatible // indirect
golang.org/x/crypto v0.17.0 // indirect
golang.org/x/sync v0.1.0 // indirect
golang.org/x/text v0.14.0 // indirect
)