1
1
module github.com/volatiletech/sqlboiler/v4
2
2
3
- go 1.16
3
+ go 1.23.0
4
4
5
5
require (
6
6
github.com/DATA-DOG/go-sqlmock v1.4.1
@@ -9,43 +9,71 @@ require (
9
9
github.com/ericlagergren/decimal v0.0.0-20190420051523-6335edbaa640
10
10
github.com/friendsofgo/errors v0.9.2
11
11
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
12
29
github.com/gofrs/uuid v4.2.0+incompatible // indirect
13
30
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
15
34
github.com/huandu/xstrings v1.3.2 // indirect
16
35
github.com/imdario/mergo v0.3.13 // indirect
17
36
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
21
40
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
22
44
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
23
47
github.com/shopspring/decimal v1.3.1 // indirect
24
48
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
29
51
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
36
59
golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f // indirect
60
+ gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
37
61
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
38
64
lukechampine.com/uint128 v1.2.0 // indirect
39
65
modernc.org/cc/v3 v3.36.3 // indirect
40
66
modernc.org/ccgo/v3 v3.16.9 // indirect
41
67
modernc.org/libc v1.17.1 // indirect
68
+ modernc.org/mathutil v1.5.0 // indirect
69
+ modernc.org/memory v1.2.1 // indirect
42
70
modernc.org/opt v0.1.3 // indirect
43
- modernc.org/sqlite v1.18.1
44
71
modernc.org/strutil v1.1.3 // indirect
45
72
modernc.org/token v1.0.1 // indirect
46
73
)
47
74
48
75
retract (
76
+ v4.19.0 // Performance issue due to cleaning up unused imports in generated code
49
77
v4.17.1 // Generates faulty code for DeleteAll if the table has multiple foreign keys
50
78
v4.17.0 // Generates faulty code for DeleteAll if the table has multiple foreign keys
51
79
v4.10.0 // Generated models are invalid due to a wrong assignment
0 commit comments