11module github.com/volatiletech/sqlboiler/v4
22
3- go 1.16
3+ go 1.23.0
44
55require (
66 github.com/DATA-DOG/go-sqlmock v1.4.1
@@ -9,43 +9,71 @@ require (
99 github.com/ericlagergren/decimal v0.0.0-20190420051523-6335edbaa640
1010 github.com/friendsofgo/errors v0.9.2
1111 github.com/go-sql-driver/mysql v1.6.0
12+ github.com/google/go-cmp v0.6.0
13+ github.com/lib/pq v1.10.6
14+ github.com/microsoft/go-mssqldb v0.17.0
15+ github.com/spf13/cast v1.5.0
16+ github.com/spf13/cobra v1.5.0
17+ github.com/spf13/viper v1.12.0
18+ github.com/stretchr/testify v1.8.0
19+ github.com/volatiletech/null/v8 v8.1.2
20+ github.com/volatiletech/randomize v0.0.1
21+ github.com/volatiletech/strmangle v0.0.6
22+ modernc.org/sqlite v1.18.1
23+ )
24+
25+ require (
26+ github.com/Masterminds/goutils v1.1.1 // indirect
27+ github.com/Masterminds/semver/v3 v3.1.1 // indirect
28+ github.com/fsnotify/fsnotify v1.5.4 // indirect
1229 github.com/gofrs/uuid v4.2.0+incompatible // indirect
1330 github.com/golang-sql/civil v0.0.0-20220223132316-b832511892a9 // indirect
14- github.com/google/go-cmp v0.5.8
31+ github.com/golang-sql/sqlexp v0.1.0 // indirect
32+ github.com/google/uuid v1.3.0 // indirect
33+ github.com/hashicorp/hcl v1.0.0 // indirect
1534 github.com/huandu/xstrings v1.3.2 // indirect
1635 github.com/imdario/mergo v0.3.13 // indirect
1736 github.com/inconshreveable/mousetrap v1.0.1 // indirect
18- github.com/kat-co/vala v0.0.0-20170210184112-42e1d8b61f12
19- github.com/lib/pq v1.10.6
20- github.com/microsoft /go-mssqldb v0.17.0
37+ github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
38+ github.com/magiconair/properties v1.8.6 // indirect
39+ github.com/mattn /go-isatty v0.0.16 // indirect
2140 github.com/mitchellh/copystructure v1.2.0 // indirect
41+ github.com/mitchellh/mapstructure v1.5.0 // indirect
42+ github.com/mitchellh/reflectwalk v1.0.2 // indirect
43+ github.com/pelletier/go-toml v1.9.5 // indirect
2244 github.com/pelletier/go-toml/v2 v2.0.5 // indirect
45+ github.com/pmezard/go-difflib v1.0.0 // indirect
46+ github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0 // indirect
2347 github.com/shopspring/decimal v1.3.1 // indirect
2448 github.com/spf13/afero v1.9.2 // indirect
25- github.com/spf13/cast v1.5.0
26- github.com/spf13/cobra v1.5.0
27- github.com/spf13/viper v1.12.0
28- github.com/stretchr/testify v1.8.0
49+ github.com/spf13/jwalterweatherman v1.1.0 // indirect
50+ github.com/spf13/pflag v1.0.5 // indirect
2951 github.com/subosito/gotenv v1.4.1 // indirect
30- github.com/volatiletech/null/v8 v8.1.2
31- github.com/volatiletech/randomize v0.0.1
32- github.com/volatiletech/strmangle v0.0.6
33- golang.org/x/crypto v0.0.0-20220826181053-bd7e27e6170d // indirect
34- golang.org/x/sys v0.0.0-20220825204002-c680a09ffe64 // indirect
35- golang.org/x/tools v0.1.12 // indirect
52+ github.com/volatiletech/inflect v0.0.1 // indirect
53+ golang.org/x/crypto v0.38.0 // indirect
54+ golang.org/x/mod v0.17.0 // indirect
55+ golang.org/x/sync v0.14.0 // indirect
56+ golang.org/x/sys v0.33.0 // indirect
57+ golang.org/x/text v0.25.0 // indirect
58+ golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d // indirect
3659 golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f // indirect
60+ gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
3761 gopkg.in/ini.v1 v1.67.0 // indirect
62+ gopkg.in/yaml.v2 v2.4.0 // indirect
63+ gopkg.in/yaml.v3 v3.0.1 // indirect
3864 lukechampine.com/uint128 v1.2.0 // indirect
3965 modernc.org/cc/v3 v3.36.3 // indirect
4066 modernc.org/ccgo/v3 v3.16.9 // indirect
4167 modernc.org/libc v1.17.1 // indirect
68+ modernc.org/mathutil v1.5.0 // indirect
69+ modernc.org/memory v1.2.1 // indirect
4270 modernc.org/opt v0.1.3 // indirect
43- modernc.org/sqlite v1.18.1
4471 modernc.org/strutil v1.1.3 // indirect
4572 modernc.org/token v1.0.1 // indirect
4673)
4774
4875retract (
76+ v4.19.0 // Performance issue due to cleaning up unused imports in generated code
4977 v4.17.1 // Generates faulty code for DeleteAll if the table has multiple foreign keys
5078 v4.17.0 // Generates faulty code for DeleteAll if the table has multiple foreign keys
5179 v4.10.0 // Generated models are invalid due to a wrong assignment
0 commit comments