2
0
mirror of https://github.com/hibiken/asynq.git synced 2024-09-20 11:05:58 +08:00
asynq/tools/go.mod

56 lines
2.1 KiB
Modula-2
Raw Normal View History

2020-02-18 13:48:36 +08:00
module github.com/hibiken/asynq/tools
2023-12-07 15:31:00 +08:00
go 1.20
2020-02-18 13:48:36 +08:00
require (
2022-05-07 07:18:40 +08:00
github.com/MakeNowJust/heredoc/v2 v2.0.1
github.com/fatih/color v1.9.0
github.com/gdamore/tcell/v2 v2.7.4
2023-07-18 04:39:18 +08:00
github.com/google/go-cmp v0.5.9
github.com/hibiken/asynq v0.24.1
2022-02-01 12:01:33 +08:00
github.com/hibiken/asynq/x v0.0.0-20220131170841-349f4c50fb1d
github.com/mattn/go-runewidth v0.0.15
2020-02-18 13:48:36 +08:00
github.com/mitchellh/go-homedir v1.1.0
github.com/prometheus/client_golang v1.11.1
2023-07-18 04:39:18 +08:00
github.com/redis/go-redis/v9 v9.0.5
github.com/spf13/cobra v1.1.1
2022-05-07 07:18:40 +08:00
github.com/spf13/pflag v1.0.5
github.com/spf13/viper v1.7.0
2022-05-07 07:18:40 +08:00
golang.org/x/exp v0.0.0-20191030013958-a1ab85dbe136
2020-02-18 13:48:36 +08:00
)
2022-06-03 10:23:06 +08:00
require (
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
2022-06-03 10:23:06 +08:00
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/fsnotify/fsnotify v1.4.9 // indirect
github.com/gdamore/encoding v1.0.0 // indirect
2023-07-18 04:39:18 +08:00
github.com/golang/protobuf v1.5.3 // indirect
2022-06-03 10:23:06 +08:00
github.com/google/uuid v1.3.0 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/magiconair/properties v1.8.1 // indirect
github.com/mattn/go-colorable v0.1.4 // indirect
github.com/mattn/go-isatty v0.0.11 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
github.com/mitchellh/mapstructure v1.1.2 // indirect
github.com/pelletier/go-toml v1.2.0 // indirect
github.com/prometheus/client_model v0.2.0 // indirect
github.com/prometheus/common v0.26.0 // indirect
github.com/prometheus/procfs v0.6.0 // indirect
github.com/rivo/uniseg v0.4.3 // indirect
2022-06-03 10:23:06 +08:00
github.com/robfig/cron/v3 v3.0.1 // indirect
github.com/spf13/afero v1.1.2 // indirect
2023-07-18 04:39:18 +08:00
github.com/spf13/cast v1.5.1 // indirect
2022-06-03 10:23:06 +08:00
github.com/spf13/jwalterweatherman v1.0.0 // indirect
github.com/subosito/gotenv v1.2.0 // indirect
golang.org/x/sys v0.17.0 // indirect
golang.org/x/term v0.17.0 // indirect
golang.org/x/text v0.14.0 // indirect
2023-07-18 04:39:18 +08:00
golang.org/x/time v0.3.0 // indirect
google.golang.org/protobuf v1.31.0 // indirect
2022-06-03 10:23:06 +08:00
gopkg.in/ini.v1 v1.51.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)