1
Fork 0
photoview/api/go.mod

64 lines
2.4 KiB
Modula-2
Raw Normal View History

2020-12-17 22:51:43 +01:00
module github.com/photoview/photoview/api
2020-01-30 14:28:14 +01:00
go 1.22.0
2020-01-30 14:28:14 +01:00
require (
github.com/99designs/gqlgen v0.17.49
github.com/Kagami/go-face v0.0.0-20210630145111-0c14797b4d0e
github.com/barasher/go-exiftool v1.10.0
2022-02-01 23:39:19 +01:00
github.com/buckket/go-blurhash v1.1.0
github.com/disintegration/imaging v1.6.2
github.com/go-sql-driver/mysql v1.8.1
github.com/gorilla/handlers v1.5.2
github.com/gorilla/mux v1.8.1
github.com/gorilla/websocket v1.5.3
github.com/h2non/filetype v1.1.3
github.com/joho/godotenv v1.5.1
github.com/otiai10/copy v1.14.0
2020-06-22 22:01:55 +02:00
github.com/pkg/errors v0.9.1
github.com/sabhiram/go-gitignore v0.0.0-20210923224102-525f6e181f06
github.com/stretchr/testify v1.9.0
2024-09-06 13:32:22 +02:00
github.com/strukturag/libheif v1.15.1
github.com/vektah/gqlparser/v2 v2.5.16
2020-02-21 20:51:50 +01:00
github.com/wsxiaoys/terminal v0.0.0-20160513160801-0940f3fc43a0
2020-02-24 23:30:08 +01:00
github.com/xor-gate/goexif2 v1.1.0
golang.org/x/crypto v0.27.0
golang.org/x/image v0.20.0
gopkg.in/vansante/go-ffprobe.v2 v2.2.0
gorm.io/driver/mysql v1.5.7
gorm.io/driver/postgres v1.5.9
gorm.io/driver/sqlite v1.5.6
gorm.io/gorm v1.25.12
)
require (
filippo.io/edwards25519 v1.1.0 // indirect
github.com/agnivade/levenshtein v1.1.1 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.4 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/felixge/httpsnoop v1.0.4 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
github.com/jackc/pgx/v5 v5.6.0 // indirect
github.com/jackc/puddle/v2 v2.2.1 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/kr/text v0.1.0 // indirect
github.com/mattn/go-sqlite3 v1.14.22 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rogpeppe/go-internal v1.12.0 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/sosodev/duration v1.3.1 // indirect
github.com/urfave/cli/v2 v2.27.2 // indirect
github.com/xrash/smetrics v0.0.0-20240312152122-5f08fbb34913 // indirect
golang.org/x/mod v0.18.0 // indirect
golang.org/x/sync v0.8.0 // indirect
golang.org/x/sys v0.25.0 // indirect
golang.org/x/text v0.18.0 // indirect
golang.org/x/tools v0.22.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
2020-01-30 14:28:14 +01:00
)