-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgo.mod
28 lines (24 loc) · 787 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
module github.com/madalinpopa/go-bookreview
go 1.23.4
require (
github.com/alexedwards/scs/v2 v2.8.0
github.com/justinas/alice v1.2.0
github.com/justinas/nosurf v1.1.1
github.com/mattn/go-sqlite3 v1.14.24
)
require (
github.com/alexedwards/scs/sqlite3store v0.0.0-20240316134038-7e11d57e8885
github.com/go-playground/form/v4 v4.2.1
github.com/pressly/goose/v3 v3.24.1
golang.org/x/crypto v0.32.0
)
require (
github.com/mfridman/interpolate v0.0.2 // indirect
github.com/sethvargo/go-retry v0.3.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/exp v0.0.0-20250106191152-7588d65b2ba8 // indirect
golang.org/x/sync v0.10.0 // indirect
modernc.org/libc v1.61.8 // indirect
modernc.org/memory v1.8.2 // indirect
modernc.org/sqlite v1.34.5 // indirect
)