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

Rather than depend on a fork, let's incorporate cronexpr directly here. Cronexpr won't ever receive updates at this point, so keeping it as a fork so we could switch back to master is a bit pointless. Incorporating it here into Supercronic gives us CI for free (which we don't get in a fork), and it makes commits incorporating changes to cronexpr clearer (since we can see the code changes instead of just a dependency change).
18 lines
621 B
Modula-2
18 lines
621 B
Modula-2
module github.com/aptible/supercronic
|
|
|
|
go 1.14
|
|
|
|
require (
|
|
github.com/certifi/gocertifi v0.0.0-20200211180108-c7c1fbc02894 // indirect
|
|
github.com/evalphobia/logrus_sentry v0.8.2
|
|
github.com/getsentry/raven-go v0.2.0 // indirect
|
|
github.com/golang/protobuf v1.4.0 // indirect
|
|
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/prometheus/client_golang v1.5.1
|
|
github.com/prometheus/procfs v0.0.11 // indirect
|
|
github.com/sirupsen/logrus v1.5.0
|
|
github.com/stretchr/testify v1.4.0
|
|
golang.org/x/sys v0.0.0-20200413165638-669c56c373c4 // indirect
|
|
)
|