-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
25 lines (22 loc) · 779 Bytes
/
go.mod
File metadata and controls
25 lines (22 loc) · 779 Bytes
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
module github.com/realjf/cgroup
go 1.19
require (
github.com/containerd/cgroups v1.0.4
github.com/containerd/cgroups/v3 v3.0.0-20221112182753-e8802a182774
github.com/opencontainers/runtime-spec v1.0.2
github.com/realjf/utils v0.0.28
github.com/sirupsen/logrus v1.9.0
github.com/stretchr/testify v1.8.1
)
require (
github.com/cilium/ebpf v0.9.1 // indirect
github.com/coreos/go-systemd/v22 v22.3.2 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/docker/go-units v0.4.0 // indirect
github.com/godbus/dbus/v5 v5.0.4 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/sys v0.3.0 // indirect
google.golang.org/protobuf v1.27.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)