-
Notifications
You must be signed in to change notification settings - Fork 2
/
go.mod
64 lines (60 loc) · 2.49 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
63
64
module github.com/Scalingo/sand
go 1.22
toolchain go1.22.5
require (
github.com/Scalingo/go-etcd-lock/v5 v5.0.8
github.com/Scalingo/go-handlers v1.8.2
github.com/Scalingo/go-plugins-helpers v1.3.0
github.com/Scalingo/go-utils/etcd v1.1.2
github.com/Scalingo/go-utils/graceful v1.2.0
github.com/Scalingo/go-utils/logger v1.2.0
github.com/bits-and-blooms/bitset v1.14.3
github.com/gofrs/uuid/v5 v5.3.0
github.com/golang/mock v1.6.0
github.com/kelseyhightower/envconfig v1.4.0
github.com/magefile/mage v1.15.0
github.com/moby/moby v27.3.1+incompatible
github.com/pkg/errors v0.9.1
github.com/sirupsen/logrus v1.9.3
github.com/stretchr/testify v1.9.0
github.com/urfave/cli v1.22.16
github.com/vishvananda/netlink v1.3.0
github.com/vishvananda/netns v0.0.4
go.etcd.io/etcd/api/v3 v3.5.16
go.etcd.io/etcd/client/v3 v3.5.16
golang.org/x/sys v0.26.0
google.golang.org/grpc v1.67.1
gopkg.in/errgo.v1 v1.0.1
)
require (
github.com/Microsoft/go-winio v0.6.2 // indirect
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/cloudflare/tableflip v1.2.3 // indirect
github.com/coreos/go-semver v0.3.1 // indirect
github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e // indirect
github.com/coreos/go-systemd/v22 v22.5.0 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.5 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/docker/go-connections v0.5.0 // indirect
github.com/docker/go-plugins-helpers v0.0.0-20200102110956-c9a8a2d92ccc // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/protobuf v1.5.4 // indirect
github.com/gorilla/mux v1.8.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // 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
go.etcd.io/etcd/client/pkg/v3 v3.5.16 // indirect
go.uber.org/multierr v1.11.0 // indirect
go.uber.org/zap v1.27.0 // indirect
golang.org/x/net v0.30.0 // indirect
golang.org/x/text v0.19.0 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20240814211410-ddb44dafa142 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240814211410-ddb44dafa142 // indirect
google.golang.org/protobuf v1.35.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)