-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathgo.mod
62 lines (59 loc) · 2.4 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
module github.com/Scalingo/link/v2
go 1.22
toolchain go1.22.9
require (
github.com/Scalingo/go-handlers v1.8.2
github.com/Scalingo/go-philae/v4 v4.4.7
github.com/Scalingo/go-utils/errors v1.1.1
github.com/Scalingo/go-utils/etcd v1.1.2
github.com/Scalingo/go-utils/logger v1.3.1
github.com/Scalingo/go-utils/retry v1.1.1
github.com/gofrs/uuid/v5 v5.3.0
github.com/golang/mock v1.6.0
github.com/gorilla/mux v1.8.1
github.com/j-keck/arping v1.0.3
github.com/kelseyhightower/envconfig v1.4.0
github.com/logrusorgru/aurora/v3 v3.0.0
github.com/looplab/fsm v1.0.2
github.com/olekukonko/tablewriter v0.0.5
github.com/pkg/errors v0.9.1
github.com/sirupsen/logrus v1.9.3
github.com/stretchr/testify v1.10.0
github.com/urfave/cli/v2 v2.27.5
github.com/vishvananda/netlink v1.3.0
go.etcd.io/etcd/api/v3 v3.5.17
go.etcd.io/etcd/client/v3 v3.5.17
)
require (
github.com/Scalingo/errgo-rollbar v0.2.1 // indirect
github.com/Scalingo/go-utils/crypto v1.0.0 // indirect
github.com/Scalingo/go-utils/errors/v2 v2.4.0 // indirect
github.com/Scalingo/go-utils/security v1.0.0 // indirect
github.com/Scalingo/logrus-rollbar v1.4.2 // indirect
github.com/coreos/go-semver v0.3.1 // indirect
github.com/coreos/go-systemd/v22 v22.5.0 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.6 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/protobuf v1.5.4 // indirect
github.com/mattn/go-runewidth v0.0.16 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
github.com/rollbar/rollbar-go v1.4.5 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/urfave/negroni v1.0.0 // indirect
github.com/vishvananda/netns v0.0.5 // indirect
github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 // indirect
go.etcd.io/etcd/client/pkg/v3 v3.5.17 // indirect
go.uber.org/multierr v1.11.0 // indirect
go.uber.org/zap v1.27.0 // indirect
golang.org/x/net v0.33.0 // indirect
golang.org/x/sys v0.28.0 // indirect
golang.org/x/text v0.21.0 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20241015192408-796eee8c2d53 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20241015192408-796eee8c2d53 // indirect
google.golang.org/grpc v1.69.2 // indirect
google.golang.org/protobuf v1.36.1 // indirect
gopkg.in/errgo.v1 v1.0.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)