-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
36 lines (32 loc) · 1.05 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
32
33
34
35
36
module github.com/XDoubleU/essentia
go 1.22
require (
github.com/getsentry/sentry-go v0.31.1
github.com/goddtriffin/helmet v1.0.2
github.com/justinas/alice v1.2.0
github.com/rs/cors v1.11.1
golang.org/x/time v0.9.0
)
require (
github.com/coder/websocket v1.8.12
github.com/google/uuid v1.6.0
github.com/gorilla/schema v1.4.1
github.com/jackc/pgerrcode v0.0.0-20240316143900-6e2875d9b438
github.com/jackc/pgx/v5 v5.7.2
github.com/joho/godotenv v1.5.1
github.com/stretchr/testify v1.10.0
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
github.com/jackc/puddle/v2 v2.2.2 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rogpeppe/go-internal v1.12.0 // indirect
golang.org/x/crypto v0.31.0 // indirect
golang.org/x/sync v0.10.0 // indirect
golang.org/x/sys v0.28.0 // indirect
golang.org/x/text v0.21.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)