forked from mirrors/homebox
9361997a42
* new reporting service * API route * code gen * get tsv export from tools page * fix naming
57 lines
2.2 KiB
Modula-2
57 lines
2.2 KiB
Modula-2
module github.com/hay-kot/homebox/backend
|
|
|
|
go 1.19
|
|
|
|
require (
|
|
ariga.io/atlas v0.9.1-0.20230119145809-92243f7c55cb
|
|
entgo.io/ent v0.11.7
|
|
github.com/ardanlabs/conf/v3 v3.1.3
|
|
github.com/go-chi/chi/v5 v5.0.8
|
|
github.com/go-playground/validator/v10 v10.11.2
|
|
github.com/gocarina/gocsv v0.0.0-20230123225133-763e25b40669
|
|
github.com/google/uuid v1.3.0
|
|
github.com/mattn/go-sqlite3 v1.14.16
|
|
github.com/rs/zerolog v1.29.0
|
|
github.com/stretchr/testify v1.8.1
|
|
github.com/swaggo/http-swagger v1.3.3
|
|
github.com/swaggo/swag v1.8.10
|
|
github.com/yeqown/go-qrcode/v2 v2.2.1
|
|
github.com/yeqown/go-qrcode/writer/standard v1.2.1
|
|
golang.org/x/crypto v0.6.0
|
|
)
|
|
|
|
require (
|
|
github.com/KyleBanks/depth v1.2.1 // indirect
|
|
github.com/agext/levenshtein v1.2.3 // indirect
|
|
github.com/apparentlymart/go-textseg/v13 v13.0.0 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/fogleman/gg v1.3.0 // indirect
|
|
github.com/go-openapi/inflect v0.19.0 // indirect
|
|
github.com/go-openapi/jsonpointer v0.19.5 // indirect
|
|
github.com/go-openapi/jsonreference v0.20.0 // indirect
|
|
github.com/go-openapi/spec v0.20.7 // indirect
|
|
github.com/go-openapi/swag v0.22.3 // indirect
|
|
github.com/go-playground/locales v0.14.1 // indirect
|
|
github.com/go-playground/universal-translator v0.18.1 // indirect
|
|
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect
|
|
github.com/google/go-cmp v0.5.9 // indirect
|
|
github.com/hashicorp/hcl/v2 v2.15.0 // indirect
|
|
github.com/josharian/intern v1.0.0 // indirect
|
|
github.com/leodido/go-urn v1.2.1 // indirect
|
|
github.com/mailru/easyjson v0.7.7 // indirect
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
github.com/mattn/go-isatty v0.0.17 // indirect
|
|
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/swaggo/files v1.0.0 // indirect
|
|
github.com/yeqown/reedsolomon v1.0.0 // indirect
|
|
github.com/zclconf/go-cty v1.12.1 // indirect
|
|
golang.org/x/image v0.0.0-20200927104501-e162460cd6b5 // indirect
|
|
golang.org/x/mod v0.7.0 // indirect
|
|
golang.org/x/net v0.6.0 // indirect
|
|
golang.org/x/sys v0.5.0 // indirect
|
|
golang.org/x/text v0.7.0 // indirect
|
|
golang.org/x/tools v0.4.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|