mirror of
https://github.com/opencontainers/runc.git
synced 2026-07-10 21:53:57 +08:00
cc3c5c1655
go-criu v8.3.0 switches to protobuf-go-lite, which helps to remove
google.golang.org/protobuf dependency from here, reducing the runc
binary size from ~16M to ~14M.
The only missing piece is proto.String, proto.Bool, proto.Int32 etc.
helpers that return a pointer to a given variable. Those are replaced
by a generic mkPtr, which in turn is to be replaced by the new builtin
once Go < 1.26 is no longer supported.
Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
(cherry picked from commit f66ace4cfa)
Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
37 lines
1.1 KiB
Modula-2
37 lines
1.1 KiB
Modula-2
module github.com/opencontainers/runc
|
|
|
|
go 1.25.0
|
|
|
|
require (
|
|
github.com/checkpoint-restore/go-criu/v8 v8.3.0
|
|
github.com/containerd/console v1.0.5
|
|
github.com/coreos/go-systemd/v22 v22.7.0
|
|
github.com/cyphar/filepath-securejoin v0.6.1
|
|
github.com/docker/go-units v0.5.0
|
|
github.com/godbus/dbus/v5 v5.2.2
|
|
github.com/moby/sys/capability v0.4.0
|
|
github.com/moby/sys/devices v0.1.0
|
|
github.com/moby/sys/mountinfo v0.7.2
|
|
github.com/moby/sys/user v0.4.0
|
|
github.com/moby/sys/userns v0.1.0
|
|
github.com/mrunalp/fileutils v0.5.1
|
|
github.com/opencontainers/cgroups v0.0.6
|
|
github.com/opencontainers/runtime-spec v1.3.0
|
|
github.com/opencontainers/selinux v1.13.1
|
|
github.com/seccomp/libseccomp-golang v0.11.1
|
|
github.com/sirupsen/logrus v1.9.4
|
|
github.com/urfave/cli v1.22.17
|
|
github.com/vishvananda/netlink v1.3.1
|
|
github.com/vishvananda/netns v0.0.5
|
|
golang.org/x/net v0.50.0
|
|
golang.org/x/sys v0.46.0
|
|
)
|
|
|
|
require (
|
|
cyphar.com/go-pathrs v0.2.4 // indirect
|
|
github.com/aperturerobotics/protobuf-go-lite v0.14.0 // indirect
|
|
github.com/cilium/ebpf v0.17.3 // indirect
|
|
github.com/cpuguy83/go-md2man/v2 v2.0.7 // indirect
|
|
github.com/russross/blackfriday/v2 v2.1.0 // indirect
|
|
)
|