2018-09-15 07:38:09 +00:00
|
|
|
module willnorris.com/go/imageproxy
|
|
|
|
|
|
|
|
require (
|
2021-05-01 05:48:00 +00:00
|
|
|
cloud.google.com/go/storage v1.15.0
|
2021-02-11 08:50:07 -08:00
|
|
|
github.com/Azure/azure-sdk-for-go v51.1.0+incompatible // indirect
|
|
|
|
github.com/Azure/go-autorest/autorest v0.11.18 // indirect
|
2020-09-10 00:53:01 -07:00
|
|
|
github.com/Azure/go-autorest/autorest/to v0.4.0 // indirect
|
2018-09-15 07:38:09 +00:00
|
|
|
github.com/PaulARoy/azurestoragecache v0.0.0-20170906084534-3c249a3ba788
|
2021-06-20 20:47:52 +00:00
|
|
|
github.com/aws/aws-sdk-go v1.38.64
|
2020-09-09 15:47:38 -07:00
|
|
|
github.com/die-net/lrucache v0.0.0-20190707192454-883874fe3947
|
|
|
|
github.com/disintegration/imaging v1.6.2
|
2019-03-22 19:39:05 +00:00
|
|
|
github.com/dnaeon/go-vcr v1.0.1 // indirect
|
2021-02-18 18:46:30 +00:00
|
|
|
github.com/fcjr/aia-transport-go v1.2.2
|
2019-10-13 19:42:55 -07:00
|
|
|
github.com/fogleman/gg v1.3.0 // indirect
|
|
|
|
github.com/fogleman/primitive v0.0.0-20190214200932-673f57e7b1b5
|
|
|
|
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect
|
2020-09-10 00:53:51 -07:00
|
|
|
github.com/gomodule/redigo v2.0.0+incompatible
|
2020-09-09 15:47:38 -07:00
|
|
|
github.com/gorilla/mux v1.8.0
|
|
|
|
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79
|
2019-06-09 21:02:21 +00:00
|
|
|
github.com/jamiealquiza/envy v1.1.0
|
2020-09-09 15:47:38 -07:00
|
|
|
github.com/muesli/smartcrop v0.3.0
|
2019-03-22 19:39:05 +00:00
|
|
|
github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646 // indirect
|
2018-09-15 07:38:09 +00:00
|
|
|
github.com/peterbourgon/diskv v0.0.0-20171120014656-2973218375c3
|
2021-06-20 15:45:26 -07:00
|
|
|
github.com/prometheus/client_golang v1.11.0
|
2019-08-08 13:39:26 +02:00
|
|
|
github.com/rwcarlsen/goexif v0.0.0-20190401172101-9e8deecbddbd
|
2018-09-15 07:38:09 +00:00
|
|
|
github.com/satori/go.uuid v0.0.0-20180103174451-36e9d2ebbde5 // indirect
|
2021-02-11 08:50:07 -08:00
|
|
|
golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad // indirect
|
|
|
|
golang.org/x/image v0.0.0-20201208152932-35266b937fa6
|
2018-09-15 07:38:09 +00:00
|
|
|
willnorris.com/go/gifresize v1.0.0
|
|
|
|
)
|
2019-03-22 19:39:05 +00:00
|
|
|
|
2020-09-10 00:53:01 -07:00
|
|
|
// local copy of envy package without cobra support
|
|
|
|
replace github.com/jamiealquiza/envy => ./third_party/envy
|
2019-09-07 21:38:41 +00:00
|
|
|
|
|
|
|
go 1.13
|