forked from gotoz/runq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
27 lines (23 loc) · 824 Bytes
/
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
module github.com/gotoz/runq
go 1.19
replace github.com/gotoz/runq/pkg/vm => ./pkg/vm
require (
github.com/creack/pty v1.1.18
github.com/gotoz/runq/pkg/vm v0.0.0-00010101000000-000000000000
github.com/mdlayher/vsock v1.2.1
github.com/opencontainers/runtime-spec v1.0.2
github.com/pkg/errors v0.9.1
github.com/pmorjan/kmod v1.1.0
github.com/seccomp/libseccomp-golang v0.10.0
github.com/spf13/pflag v1.0.5
github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635
github.com/vishvananda/netlink v1.2.1-beta.2.0.20221214185949-378a404a26f0
golang.org/x/sys v0.8.0
golang.org/x/term v0.8.0
)
require (
github.com/mdlayher/socket v0.4.1 // indirect
github.com/vishvananda/netns v0.0.0-20200728191858-db3c7e526aae // indirect
golang.org/x/net v0.10.0 // indirect
golang.org/x/sync v0.2.0 // indirect
)