-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
30 lines (27 loc) · 1.06 KB
/
go.mod
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
27
28
29
30
module github.com/schachte/rate-limiter
go 1.19
require (
github.com/go-redsync/redsync/v4 v4.8.1
github.com/gomodule/redigo v1.8.9
github.com/google/uuid v1.3.0
github.com/nitishm/go-rejson/v4 v4.1.1-0.20230331060235-d2aa875760e4
github.com/redis/go-redis/v9 v9.0.5
github.com/stretchr/testify v1.8.4
)
require (
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/go-redis/redis v6.15.9+incompatible // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/logrusorgru/aurora v2.0.3+incompatible // indirect
github.com/maoueh/zap-pretty v0.3.0 // indirect
github.com/nitishm/go-rejson v2.0.0+incompatible // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
go.uber.org/atomic v1.7.0 // indirect
go.uber.org/multierr v1.6.0 // indirect
go.uber.org/zap v1.24.0 // indirect
golang.org/x/sys v0.10.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)