-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
36 lines (33 loc) · 1.15 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/juho05/crossonic-server
go 1.22.2
require (
github.com/andybalholm/cascadia v1.3.3
github.com/disintegration/imaging v1.6.2
github.com/go-chi/chi/v5 v5.2.0
github.com/go-chi/cors v1.2.1
github.com/gobwas/ws v1.4.0
github.com/jackc/pgx/v5 v5.7.2
github.com/jaevor/go-nanoid v1.4.0
github.com/jmoiron/sqlx v1.4.0
github.com/joho/godotenv v1.5.1
github.com/juho05/log v0.0.0-20230224211948-f9bad0acae34
github.com/nullism/bqb v1.7.2
github.com/rubenv/sql-migrate v1.7.1
golang.org/x/crypto v0.32.0
golang.org/x/net v0.34.0
)
require (
github.com/go-gorp/gorp/v3 v3.1.0 // indirect
github.com/gobwas/httphead v0.1.0 // indirect
github.com/gobwas/pool v0.2.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/mattn/go-colorable v0.1.14 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
golang.org/x/image v0.23.0 // indirect
golang.org/x/sync v0.10.0 // indirect
golang.org/x/sys v0.29.0 // indirect
golang.org/x/term v0.28.0 // indirect
golang.org/x/text v0.21.0 // indirect
)