-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
30 lines (26 loc) · 912 Bytes
/
go.mod
File metadata and controls
30 lines (26 loc) · 912 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
30
module crudify
go 1.23.0
toolchain go1.23.9
require (
github.com/fatih/camelcase v1.0.0
github.com/go-sql-driver/mysql v1.9.2
github.com/jmoiron/sqlx v1.4.0
github.com/robertkrimen/otto v0.5.1
github.com/sirupsen/logrus v1.9.3
github.com/urfave/cli/v2 v2.27.6
github.com/vbauerster/mpb/v8 v8.10.1
gopkg.in/yaml.v3 v3.0.1
)
require (
filippo.io/edwards25519 v1.1.0 // indirect
github.com/VividCortex/ewma v1.2.0 // indirect
github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.7 // indirect
github.com/mattn/go-runewidth v0.0.16 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 // indirect
golang.org/x/sys v0.33.0 // indirect
golang.org/x/text v0.25.0 // indirect
gopkg.in/sourcemap.v1 v1.0.5 // indirect
)