mirror of
https://github.com/aptible/supercronic.git
synced 2025-09-26 20:31:17 +08:00

* fix: random waitid error fix https://github.com/aptible/supercronic/issues/171 * fix(reap): forward signal * refactor: modify reaper to get supercronic exitStatus * fix(reaper): unify signal list & fix signal forward * chore: replace ioutil to io * fix(test): ci timeout * opt-out with no-reap flag Co-authored-by: Josh Raker <48493233+joshraker@users.noreply.github.com> * fix: typo on signal * fix: args pass to supercronic * fix(test): remove removed flag * chore: remove misleading comment --------- Co-authored-by: Josh Raker <48493233+joshraker@users.noreply.github.com>
32 lines
1.1 KiB
Modula-2
32 lines
1.1 KiB
Modula-2
module github.com/aptible/supercronic
|
|
|
|
go 1.23.0
|
|
|
|
require (
|
|
github.com/evalphobia/logrus_sentry v0.8.2
|
|
github.com/fsnotify/fsnotify v1.7.0
|
|
github.com/prometheus/client_golang v1.20.2
|
|
github.com/sirupsen/logrus v1.9.3
|
|
github.com/stretchr/testify v1.9.0
|
|
)
|
|
|
|
require (
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
github.com/certifi/gocertifi v0.0.0-20210507211836-431795d63e8d // indirect
|
|
github.com/cespare/xxhash/v2 v2.3.0 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/getsentry/raven-go v0.2.0 // indirect
|
|
github.com/klauspost/compress v1.17.9 // indirect
|
|
github.com/kr/text v0.2.0 // indirect
|
|
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/prometheus/client_model v0.6.1 // indirect
|
|
github.com/prometheus/common v0.57.0 // indirect
|
|
github.com/prometheus/procfs v0.15.1 // indirect
|
|
github.com/rogpeppe/go-internal v1.12.0 // indirect
|
|
golang.org/x/sys v0.24.0 // indirect
|
|
google.golang.org/protobuf v1.34.2 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|