-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
43 lines (40 loc) · 1.62 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
31
32
33
34
35
36
37
38
39
40
41
42
43
module github.com/jalavosus/stuffnotifier
go 1.18
require (
github.com/dgraph-io/ristretto v0.1.0
github.com/go-redis/redis/v9 v9.0.0-beta.1
github.com/goccy/go-yaml v1.9.5
github.com/joho/godotenv v1.4.0
github.com/klauspost/compress v1.15.6
github.com/pelletier/go-toml v1.9.5
github.com/pkg/errors v0.9.1
github.com/rs/xid v1.4.0
github.com/shopspring/decimal v1.3.1
github.com/slack-go/slack v0.10.3
github.com/stretchr/testify v1.7.1
github.com/twilio/twilio-go v0.26.0
github.com/urfave/cli/v2 v2.8.1
go.uber.org/zap v1.21.0
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9
)
require (
github.com/cespare/xxhash/v2 v2.1.2 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.1 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/dustin/go-humanize v1.0.0 // indirect
github.com/fatih/color v1.10.0 // indirect
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b // indirect
github.com/golang/mock v1.6.0 // indirect
github.com/gorilla/websocket v1.4.2 // indirect
github.com/mattn/go-colorable v0.1.8 // indirect
github.com/mattn/go-isatty v0.0.12 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
go.uber.org/atomic v1.7.0 // indirect
go.uber.org/multierr v1.6.0 // indirect
golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
)