2018-09-15 02:38:09 -05:00
|
|
|
module willnorris.com/go/imageproxy
|
|
|
|
|
|
|
|
require (
|
2020-09-09 17:47:38 -05:00
|
|
|
cloud.google.com/go/storage v1.11.0
|
|
|
|
github.com/Azure/azure-sdk-for-go v46.1.0+incompatible // indirect
|
|
|
|
github.com/Azure/go-autorest/autorest v0.11.5 // indirect
|
|
|
|
github.com/Azure/go-autorest/autorest/adal v0.9.3 // indirect
|
2020-09-10 02:53:01 -05:00
|
|
|
github.com/Azure/go-autorest/autorest/to v0.4.0 // indirect
|
2018-09-15 02:38:09 -05:00
|
|
|
github.com/PaulARoy/azurestoragecache v0.0.0-20170906084534-3c249a3ba788
|
2020-09-09 17:47:38 -05:00
|
|
|
github.com/aws/aws-sdk-go v1.34.20
|
|
|
|
github.com/die-net/lrucache v0.0.0-20190707192454-883874fe3947
|
|
|
|
github.com/disintegration/imaging v1.6.2
|
2019-03-22 14:39:05 -05:00
|
|
|
github.com/dnaeon/go-vcr v1.0.1 // indirect
|
2020-09-09 17:47:38 -05:00
|
|
|
github.com/garyburd/redigo v1.6.2
|
2019-03-22 14:39:05 -05:00
|
|
|
github.com/gomodule/redigo v2.0.0+incompatible // indirect
|
2020-09-09 17:47:38 -05:00
|
|
|
github.com/gorilla/mux v1.8.0
|
|
|
|
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79
|
2019-06-09 16:02:21 -05:00
|
|
|
github.com/jamiealquiza/envy v1.1.0
|
2020-09-09 17:47:38 -05:00
|
|
|
github.com/muesli/smartcrop v0.3.0
|
2019-03-22 14:39:05 -05:00
|
|
|
github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646 // indirect
|
2018-09-15 02:38:09 -05:00
|
|
|
github.com/peterbourgon/diskv v0.0.0-20171120014656-2973218375c3
|
2020-09-09 17:47:38 -05:00
|
|
|
github.com/prometheus/client_golang v1.7.1
|
|
|
|
github.com/prometheus/common v0.13.0 // indirect
|
2019-08-08 06:39:26 -05:00
|
|
|
github.com/rwcarlsen/goexif v0.0.0-20190401172101-9e8deecbddbd
|
2018-09-15 02:38:09 -05:00
|
|
|
github.com/satori/go.uuid v0.0.0-20180103174451-36e9d2ebbde5 // indirect
|
2020-09-09 17:47:38 -05:00
|
|
|
golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a // indirect
|
|
|
|
golang.org/x/image v0.0.0-20200801110659-972c09e46d76
|
|
|
|
golang.org/x/net v0.0.0-20200904194848-62affa334b73 // indirect
|
|
|
|
golang.org/x/oauth2 v0.0.0-20200902213428-5d25da1a8d43 // indirect
|
|
|
|
golang.org/x/sys v0.0.0-20200909081042-eff7692f9009 // indirect
|
|
|
|
golang.org/x/tools v0.0.0-20200909210914-44a2922940c2 // indirect
|
|
|
|
google.golang.org/api v0.31.0 // indirect
|
|
|
|
google.golang.org/genproto v0.0.0-20200904004341-0bd0a958aa1d // indirect
|
|
|
|
google.golang.org/grpc v1.32.0 // indirect
|
2018-09-15 02:38:09 -05:00
|
|
|
willnorris.com/go/gifresize v1.0.0
|
|
|
|
)
|
2019-03-22 14:39:05 -05:00
|
|
|
|
2020-09-10 02:53:01 -05:00
|
|
|
// local copy of envy package without cobra support
|
|
|
|
replace github.com/jamiealquiza/envy => ./third_party/envy
|
2019-09-07 16:38:41 -05:00
|
|
|
|
|
|
|
go 1.13
|