-
Notifications
You must be signed in to change notification settings - Fork 22
/
go.mod
30 lines (27 loc) · 913 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
29
30
module github.com/c-bata/goptuna
go 1.21
require (
github.com/google/uuid v1.3.1
github.com/gorilla/mux v1.8.0
github.com/jinzhu/gorm v1.9.16
github.com/spf13/cobra v1.7.0
gonum.org/v1/gonum v0.14.0
gorm.io/driver/mysql v1.5.1
gorm.io/driver/postgres v1.5.2
gorm.io/driver/sqlite v1.5.3
gorm.io/gorm v1.25.4
)
require (
github.com/go-sql-driver/mysql v1.7.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
github.com/jackc/pgx/v5 v5.3.1 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/lib/pq v1.3.0 // indirect
github.com/mattn/go-sqlite3 v1.14.17 // indirect
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/crypto v0.8.0 // indirect
golang.org/x/text v0.9.0 // indirect
)