-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathgo.mod
More file actions
59 lines (55 loc) · 2.41 KB
/
go.mod
File metadata and controls
59 lines (55 loc) · 2.41 KB
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
module code.cloudfoundry.org/garden-integration-tests
go 1.26.2
replace (
code.cloudfoundry.org/garden => ../garden
code.cloudfoundry.org/grootfs => ../grootfs
code.cloudfoundry.org/guardian => ../guardian
code.cloudfoundry.org/idmapper => ../idmapper
)
require (
code.cloudfoundry.org/archiver v0.69.0
code.cloudfoundry.org/garden v0.0.0-20260429025054-3f9ac7a76d56
code.cloudfoundry.org/guardian v0.0.0-20260429025616-2da7633199df
github.com/cloudfoundry/gosigar v1.3.118
github.com/nu7hatch/gouuid v0.0.0-20131221200532-179d4d0c4d8d
github.com/onsi/ginkgo/v2 v2.28.3
github.com/onsi/gomega v1.40.0
github.com/wavefronthq/wavefront-sdk-go v0.15.0
)
require (
code.cloudfoundry.org/commandrunner v0.63.0 // indirect
code.cloudfoundry.org/lager/v3 v3.68.0 // indirect
github.com/Masterminds/semver/v3 v3.5.0 // indirect
github.com/bmizerany/pat v0.0.0-20210406213842-e4b6760bdd6f // indirect
github.com/caio/go-tdigest/v4 v4.1.0 // indirect
github.com/cloudfoundry/dropsonde v1.1.0 // indirect
github.com/cloudfoundry/sonde-go v0.0.0-20251217143644-d1670a435f2a // indirect
github.com/coreos/go-systemd/v22 v22.7.0 // indirect
github.com/cyphar/filepath-securejoin v0.6.1 // indirect
github.com/go-logr/logr v1.4.3 // indirect
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
github.com/godbus/dbus/v5 v5.2.2 // indirect
github.com/google/go-cmp v0.7.0 // indirect
github.com/google/pprof v0.0.0-20260402051712-545e8a4df936 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/moby/sys/mountinfo v0.7.2 // indirect
github.com/moby/sys/reexec v0.1.0 // indirect
github.com/moby/sys/userns v0.1.0 // indirect
github.com/nxadm/tail v1.4.11 // indirect
github.com/opencontainers/cgroups v0.0.6 // indirect
github.com/opencontainers/runtime-spec v1.3.0 // indirect
github.com/openzipkin/zipkin-go v0.4.3 // indirect
github.com/sirupsen/logrus v1.9.4 // indirect
github.com/tedsuo/rata v1.0.0 // indirect
github.com/vishvananda/netlink v1.3.1 // indirect
github.com/vishvananda/netns v0.0.5 // indirect
go.yaml.in/yaml/v3 v3.0.4 // indirect
golang.org/x/mod v0.35.0 // indirect
golang.org/x/net v0.53.0 // indirect
golang.org/x/sync v0.20.0 // indirect
golang.org/x/sys v0.43.0 // indirect
golang.org/x/text v0.36.0 // indirect
golang.org/x/tools v0.44.0 // indirect
google.golang.org/protobuf v1.36.12-0.20260120151049-f2248ac996af // indirect
)