-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgo.mod
29 lines (26 loc) · 914 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
25
26
27
28
29
module github.com/TheHackerDev/cartograph
go 1.22
require (
github.com/andybalholm/brotli v1.0.4
github.com/gofrs/uuid v4.0.0+incompatible
github.com/golang-jwt/jwt/v5 v5.0.0
github.com/gorilla/websocket v1.5.0
github.com/jackc/pgtype v1.14.0
github.com/jackc/pgx-gofrs-uuid v0.0.0-20230224015001-1d428863c2e2
github.com/jackc/pgx/v5 v5.5.4
github.com/lib/pq v1.10.2
github.com/sirupsen/logrus v1.9.0
golang.org/x/crypto v0.31.0
golang.org/x/sync v0.10.0
)
require (
github.com/gofrs/uuid/v5 v5.0.0 // indirect
github.com/jackc/pgio v1.0.0 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
github.com/jackc/pgx/v4 v4.18.2 // indirect
github.com/jackc/puddle/v2 v2.2.1 // indirect
github.com/stretchr/testify v1.8.3 // indirect
golang.org/x/sys v0.28.0 // indirect
golang.org/x/text v0.21.0 // indirect
)