-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
go.mod
42 lines (37 loc) · 1.45 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
module github.com/go-co-op/gocron-etcd-elector
go 1.19
require (
github.com/go-co-op/gocron v1.37.0
github.com/stretchr/testify v1.9.0
go.etcd.io/etcd/api/v3 v3.5.12 // indirect
go.etcd.io/etcd/client/v3 v3.5.12
)
require (
github.com/coreos/go-semver v0.3.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/pkg/errors v0.9.1
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/robfig/cron/v3 v3.0.1 // indirect
go.uber.org/atomic v1.9.0 // indirect
go.uber.org/multierr v1.6.0 // indirect
go.uber.org/zap v1.17.0 // indirect
golang.org/x/net v0.23.0 // indirect
golang.org/x/sys v0.18.0 // indirect
golang.org/x/text v0.14.0 // indirect
google.golang.org/genproto v0.0.0-20230822172742-b8732ec3820d // indirect
google.golang.org/grpc v1.59.0 // indirect
google.golang.org/protobuf v1.33.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
require github.com/go-co-op/gocron/v2 v2.10.0
require (
github.com/coreos/go-systemd/v22 v22.3.2 // indirect
github.com/jonboulle/clockwork v0.4.0 // indirect
go.etcd.io/etcd/client/pkg/v3 v3.5.12 // indirect
golang.org/x/exp v0.0.0-20240613232115-7f521ea00fb8 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20230822172742-b8732ec3820d // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d // indirect
)