mirror of
https://github.com/keven1024/015.git
synced 2026-05-26 15:13:30 +00:00
35 lines
1.1 KiB
Modula-2
35 lines
1.1 KiB
Modula-2
module worker
|
|
|
|
go 1.23.1
|
|
|
|
require (
|
|
dario.cat/mergo v1.0.2
|
|
github.com/hibiken/asynq v0.25.1
|
|
github.com/redis/go-redis/v9 v9.7.0
|
|
github.com/samber/lo v1.50.0
|
|
github.com/spf13/cast v1.8.0
|
|
github.com/spf13/viper v1.20.1
|
|
go.uber.org/zap v1.27.0
|
|
)
|
|
|
|
require (
|
|
github.com/cespare/xxhash/v2 v2.3.0 // indirect
|
|
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
|
|
github.com/fsnotify/fsnotify v1.8.0 // indirect
|
|
github.com/go-viper/mapstructure/v2 v2.2.1 // indirect
|
|
github.com/google/uuid v1.6.0 // indirect
|
|
github.com/pelletier/go-toml/v2 v2.2.3 // indirect
|
|
github.com/robfig/cron/v3 v3.0.1 // indirect
|
|
github.com/sagikazarmark/locafero v0.7.0 // indirect
|
|
github.com/sourcegraph/conc v0.3.0 // indirect
|
|
github.com/spf13/afero v1.12.0 // indirect
|
|
github.com/spf13/pflag v1.0.6 // indirect
|
|
github.com/subosito/gotenv v1.6.0 // indirect
|
|
go.uber.org/multierr v1.10.0 // indirect
|
|
golang.org/x/sys v0.29.0 // indirect
|
|
golang.org/x/text v0.22.0 // indirect
|
|
golang.org/x/time v0.8.0 // indirect
|
|
google.golang.org/protobuf v1.36.1 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|