|
1 | 1 | module willnorris.com/go/imageproxy |
2 | 2 |
|
3 | 3 | require ( |
4 | | - cloud.google.com/go v0.76.0 // indirect |
5 | 4 | cloud.google.com/go/storage v1.13.0 |
6 | | - github.com/Azure/azure-sdk-for-go v51.1.0+incompatible // indirect |
7 | | - github.com/Azure/go-autorest/autorest v0.11.18 // indirect |
8 | | - github.com/Azure/go-autorest/autorest/to v0.4.0 // indirect |
9 | 5 | github.com/PaulARoy/azurestoragecache v0.0.0-20170906084534-3c249a3ba788 |
10 | 6 | github.com/aws/aws-sdk-go v1.37.10 |
11 | 7 | github.com/die-net/lrucache v0.0.0-20190707192454-883874fe3947 |
12 | 8 | github.com/disintegration/imaging v1.6.2 |
13 | | - github.com/dnaeon/go-vcr v1.0.1 // indirect |
14 | 9 | github.com/fcjr/aia-transport-go v1.2.1 |
15 | 10 | github.com/gomodule/redigo v2.0.0+incompatible |
16 | 11 | github.com/gorilla/mux v1.8.0 |
17 | 12 | github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79 |
18 | 13 | github.com/jamiealquiza/envy v1.1.0 |
19 | 14 | github.com/muesli/smartcrop v0.3.0 |
20 | | - github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646 // indirect |
21 | 15 | github.com/peterbourgon/diskv v0.0.0-20171120014656-2973218375c3 |
22 | 16 | github.com/prometheus/client_golang v1.9.0 |
23 | | - github.com/prometheus/procfs v0.6.0 // indirect |
24 | 17 | github.com/rwcarlsen/goexif v0.0.0-20190401172101-9e8deecbddbd |
| 18 | + golang.org/x/image v0.33.0 |
| 19 | + willnorris.com/go/gifresize v1.0.0 |
| 20 | +) |
| 21 | + |
| 22 | +require ( |
| 23 | + cloud.google.com/go v0.76.0 // indirect |
| 24 | + github.com/Azure/azure-sdk-for-go v51.1.0+incompatible // indirect |
| 25 | + github.com/Azure/go-autorest v14.2.0+incompatible // indirect |
| 26 | + github.com/Azure/go-autorest/autorest v0.11.18 // indirect |
| 27 | + github.com/Azure/go-autorest/autorest/adal v0.9.13 // indirect |
| 28 | + github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect |
| 29 | + github.com/Azure/go-autorest/autorest/to v0.4.0 // indirect |
| 30 | + github.com/Azure/go-autorest/logger v0.2.1 // indirect |
| 31 | + github.com/Azure/go-autorest/tracing v0.6.0 // indirect |
| 32 | + github.com/beorn7/perks v1.0.1 // indirect |
| 33 | + github.com/cespare/xxhash/v2 v2.1.1 // indirect |
| 34 | + github.com/dnaeon/go-vcr v1.0.1 // indirect |
| 35 | + github.com/form3tech-oss/jwt-go v3.2.2+incompatible // indirect |
| 36 | + github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect |
| 37 | + github.com/golang/protobuf v1.4.3 // indirect |
| 38 | + github.com/google/btree v1.0.0 // indirect |
| 39 | + github.com/googleapis/gax-go/v2 v2.0.5 // indirect |
| 40 | + github.com/jmespath/go-jmespath v0.4.0 // indirect |
| 41 | + github.com/jstemmer/go-junit-report v0.9.1 // indirect |
| 42 | + github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect |
| 43 | + github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646 // indirect |
| 44 | + github.com/prometheus/client_model v0.2.0 // indirect |
| 45 | + github.com/prometheus/common v0.15.0 // indirect |
| 46 | + github.com/prometheus/procfs v0.6.0 // indirect |
25 | 47 | github.com/satori/go.uuid v0.0.0-20180103174451-36e9d2ebbde5 // indirect |
26 | 48 | go.opencensus.io v0.22.6 // indirect |
27 | | - golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad // indirect |
28 | | - golang.org/x/image v0.0.0-20201208152932-35266b937fa6 |
| 49 | + golang.org/x/crypto v0.43.0 // indirect |
| 50 | + golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5 // indirect |
| 51 | + golang.org/x/mod v0.29.0 // indirect |
| 52 | + golang.org/x/net v0.46.0 // indirect |
29 | 53 | golang.org/x/oauth2 v0.0.0-20210210192628-66670185b0cd // indirect |
| 54 | + golang.org/x/sync v0.18.0 // indirect |
| 55 | + golang.org/x/sys v0.37.0 // indirect |
| 56 | + golang.org/x/telemetry v0.0.0-20251008203120-078029d740a8 // indirect |
| 57 | + golang.org/x/text v0.31.0 // indirect |
| 58 | + golang.org/x/tools v0.38.0 // indirect |
30 | 59 | google.golang.org/api v0.39.0 // indirect |
| 60 | + google.golang.org/appengine v1.6.7 // indirect |
31 | 61 | google.golang.org/genproto v0.0.0-20210211154401-3a9a48ddfd6c // indirect |
32 | | - willnorris.com/go/gifresize v1.0.0 |
| 62 | + google.golang.org/grpc v1.35.0 // indirect |
| 63 | + google.golang.org/protobuf v1.25.0 // indirect |
33 | 64 | ) |
34 | 65 |
|
35 | 66 | // local copy of envy package without cobra support |
36 | 67 | replace github.com/jamiealquiza/envy => ./third_party/envy |
37 | 68 |
|
38 | | -go 1.13 |
| 69 | +go 1.24.0 |
0 commit comments