1
Fork 0
photoview/api/go.mod

42 lines
1.6 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.16
2020-01-30 14:28:14 +01:00
require (
github.com/99designs/gqlgen v0.13.0
github.com/Kagami/go-face v0.0.0-20210604182630-c482b0e1acfb
2021-04-03 16:43:11 +02:00
github.com/agnivade/levenshtein v1.1.0 // indirect
github.com/barasher/go-exiftool v1.4.0
github.com/disintegration/imaging v1.6.2
2021-04-03 16:43:11 +02:00
github.com/go-sql-driver/mysql v1.6.0
2020-10-04 16:34:47 +02:00
github.com/gorilla/handlers v1.5.1
2020-09-07 17:04:15 +02:00
github.com/gorilla/mux v1.8.0
2020-06-22 22:01:55 +02:00
github.com/gorilla/websocket v1.4.2
github.com/h2non/filetype v1.1.1
2021-04-03 16:43:11 +02:00
github.com/hashicorp/golang-lru v0.5.4 // indirect
github.com/jackc/pgproto3/v2 v2.0.7 // indirect
github.com/jackc/pgx/v4 v4.11.0 // indirect
2020-01-30 14:49:39 +01:00
github.com/joho/godotenv v1.3.0
2021-04-03 16:43:11 +02:00
github.com/mattn/go-sqlite3 v1.14.6 // indirect
github.com/mitchellh/mapstructure v1.4.1 // indirect
2021-11-06 12:23:47 +01:00
github.com/otiai10/copy v1.6.0 // indirect
2020-06-22 22:01:55 +02:00
github.com/pkg/errors v0.9.1
github.com/sabhiram/go-gitignore v0.0.0-20201211210132-54b8a0bf510f
2021-04-22 21:37:59 +02:00
github.com/stretchr/objx v0.3.0 // indirect
github.com/stretchr/testify v1.7.0 // indirect
2021-03-27 22:30:26 +01:00
github.com/strukturag/libheif v1.11.0
github.com/vektah/gqlparser/v2 v2.1.0
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
2021-04-03 16:43:11 +02:00
golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2
golang.org/x/image v0.0.0-20210220032944-ac19c3e999fb
2021-04-03 16:43:11 +02:00
golang.org/x/text v0.3.6 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
2020-07-11 13:13:31 +02:00
gopkg.in/vansante/go-ffprobe.v2 v2.0.2
2021-04-22 21:37:59 +02:00
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
2021-04-03 16:43:11 +02:00
gorm.io/driver/mysql v1.0.5
gorm.io/driver/postgres v1.0.8
gorm.io/driver/sqlite v1.1.4
2021-04-03 16:43:11 +02:00
gorm.io/gorm v1.21.6
2020-01-30 14:28:14 +01:00
)