-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathgo.mod
More file actions
29 lines (26 loc) · 911 Bytes
/
Copy pathgo.mod
File metadata and controls
29 lines (26 loc) · 911 Bytes
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 binvault
go 1.24
require (
github.com/fsnotify/fsnotify v1.8.0
github.com/go-jose/go-jose/v4 v4.0.5
github.com/go-playground/validator v9.31.0+incompatible
github.com/julienschmidt/httprouter v1.3.0
github.com/spf13/cobra v1.9.1
golang.org/x/crypto v0.35.0
gorm.io/driver/sqlite v1.5.7
gorm.io/gorm v1.25.12
)
require (
github.com/go-playground/locales v0.14.1 // indirect
github.com/go-playground/universal-translator v0.18.1 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/joho/godotenv v1.5.1
github.com/leodido/go-urn v1.4.0 // indirect
github.com/mattn/go-sqlite3 v1.14.24 // indirect
github.com/spf13/pflag v1.0.6 // indirect
golang.org/x/sys v0.30.0 // indirect
golang.org/x/text v0.22.0 // indirect
gopkg.in/go-playground/assert.v1 v1.2.1 // indirect
)