1module git.sr.ht/~gabrielgio/img
2
3go 1.19
4
5require (
6 github.com/barasher/go-exiftool v1.10.0
7 github.com/fasthttp/router v1.4.19
8 github.com/gabriel-vasile/mimetype v1.4.2
9 github.com/google/go-cmp v0.5.9
10 github.com/samber/lo v1.38.1
11 github.com/sirupsen/logrus v1.9.2
12 github.com/valyala/fasthttp v1.47.0
13 golang.org/x/crypto v0.8.0
14 gorm.io/driver/postgres v1.5.2
15 gorm.io/driver/sqlite v1.5.0
16 gorm.io/gen v0.3.22
17 gorm.io/gorm v1.25.1
18)
19
20require (
21 github.com/andybalholm/brotli v1.0.5 // indirect
22 github.com/go-sql-driver/mysql v1.7.1 // indirect
23 github.com/jackc/pgpassfile v1.0.0 // indirect
24 github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
25 github.com/jackc/pgx/v5 v5.3.1 // indirect
26 github.com/jinzhu/inflection v1.0.0 // indirect
27 github.com/jinzhu/now v1.1.5 // indirect
28 github.com/klauspost/compress v1.16.5 // indirect
29 github.com/mattn/go-sqlite3 v1.14.16 // indirect
30 github.com/savsgio/gotils v0.0.0-20230208104028-c358bd845dee // indirect
31 github.com/valyala/bytebufferpool v1.0.0 // indirect
32 golang.org/x/exp v0.0.0-20220303212507-bbda1eaf7a17 // indirect
33 golang.org/x/mod v0.10.0 // indirect
34 golang.org/x/net v0.10.0 // indirect
35 golang.org/x/sys v0.8.0 // indirect
36 golang.org/x/text v0.9.0 // indirect
37 golang.org/x/tools v0.9.3 // indirect
38 gorm.io/datatypes v1.2.0 // indirect
39 gorm.io/driver/mysql v1.5.1 // indirect
40 gorm.io/hints v1.1.2 // indirect
41 gorm.io/plugin/dbresolver v1.4.1 // indirect
42)