]>
Commit | Line | Data |
---|---|---|
6988a057 JH |
1 | module github.com/jhalter/mobius |
2 | ||
2327c11f | 3 | go 1.22 |
6988a057 JH |
4 | |
5 | require ( | |
2327c11f | 6 | github.com/go-playground/validator/v10 v10.19.0 |
2327c11f | 7 | github.com/stretchr/testify v1.9.0 |
b51f0536 JH |
8 | golang.org/x/crypto v0.22.0 |
9 | golang.org/x/text v0.14.0 | |
b4a15075 | 10 | gopkg.in/natefinch/lumberjack.v2 v2.2.1 |
96519d18 JH |
11 | gopkg.in/yaml.v3 v3.0.1 |
12 | ) | |
13 | ||
14 | require ( | |
f8e4cd54 | 15 | github.com/davecgh/go-spew v1.1.1 // indirect |
b4a15075 | 16 | github.com/gabriel-vasile/mimetype v1.4.3 // indirect |
b4a15075 JH |
17 | github.com/go-playground/locales v0.14.1 // indirect |
18 | github.com/go-playground/universal-translator v0.18.1 // indirect | |
2327c11f | 19 | github.com/leodido/go-urn v1.4.0 // indirect |
96519d18 | 20 | github.com/pmezard/go-difflib v1.0.0 // indirect |
2327c11f | 21 | github.com/stretchr/objx v0.5.2 // indirect |
b51f0536 JH |
22 | golang.org/x/net v0.24.0 // indirect |
23 | golang.org/x/sys v0.19.0 // indirect | |
6988a057 | 24 | ) |