-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathgo.mod
More file actions
24 lines (21 loc) · 805 Bytes
/
go.mod
File metadata and controls
24 lines (21 loc) · 805 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
module github.com/Postcord/rest
go 1.17
require (
github.com/Postcord/objects v0.1.5
github.com/go-redis/redis/v8 v8.11.4
github.com/go-redsync/redsync/v4 v4.5.0
github.com/google/go-querystring v1.1.0
github.com/rs/zerolog v1.26.1
github.com/stretchr/testify v1.7.0
golang.org/x/time v0.0.0-20211116232009-f0f3c7e86c11
)
require (
github.com/cespare/xxhash/v2 v2.1.2 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/sys v0.0.0-20220204135822-1c1b9b1eba6a // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
)