-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
26 lines (22 loc) · 786 Bytes
/
go.mod
File metadata and controls
26 lines (22 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
module github.com/onliner/krakend-http-cache
go 1.25.7
require (
github.com/go-http-utils/headers v0.0.0-20181008091004-fed159eddc2a
github.com/mitchellh/mapstructure v1.5.0
github.com/redis/go-redis/v9 v9.18.0
)
require (
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
go.uber.org/atomic v1.11.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
require (
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/faabiosr/cachego v0.26.0
github.com/go-http-utils/fresh v0.0.0-20161124030543-7231e26a4b27
github.com/google/uuid v1.6.0
github.com/jarcoal/httpmock v1.4.1
github.com/stretchr/testify v1.11.1
)