forked from nestybox/sysbox-fs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
43 lines (31 loc) · 1.6 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
module github.com/nestybox/sysbox-fs
go 1.13
require (
bazil.org/fuse v0.0.0-20180421153158-65cc252bf669
github.com/nestybox/sysbox-ipc v0.0.0-00010101000000-000000000000
github.com/nestybox/sysbox-libs/capability v0.0.0-00010101000000-000000000000
github.com/nestybox/sysbox-libs/dockerUtils v0.0.0-00010101000000-000000000000
github.com/nestybox/sysbox-libs/libseccomp-golang v0.0.0-00010101000000-000000000000
github.com/nestybox/sysbox-libs/pidmonitor v0.0.0-00010101000000-000000000000
github.com/nestybox/sysbox-runc v0.0.0-00010101000000-000000000000
github.com/pkg/profile v1.4.0
github.com/sirupsen/logrus v1.4.2
github.com/spf13/afero v1.2.2
github.com/stretchr/objx v0.2.0 // indirect
github.com/stretchr/testify v1.5.1
github.com/urfave/cli v1.20.0
github.com/vektra/mockery v1.1.2 // indirect
github.com/vishvananda/netlink v1.0.0
golang.org/x/sys v0.0.0-20200420163511-1957bb5e6d1f
google.golang.org/grpc v1.27.0
)
replace github.com/nestybox/sysbox-ipc => ../sysbox-ipc
replace github.com/nestybox/sysbox-runc => ../sysbox-runc
replace github.com/nestybox/sysbox-libs/utils => ../sysbox-libs/utils
replace github.com/nestybox/sysbox-libs/dockerUtils => ../sysbox-libs/dockerUtils
replace github.com/nestybox/sysbox-libs/libseccomp-golang => ../sysbox-libs/libseccomp-golang
replace github.com/nestybox/sysbox-libs/pidmonitor => ../sysbox-libs/pidmonitor
replace github.com/nestybox/sysbox-libs/capability => ../sysbox-libs/capability
replace github.com/opencontainers/runc => ./../sysbox-runc
replace bazil.org/fuse => ./bazil
replace github.com/godbus/dbus => github.com/godbus/dbus/v5 v5.0.3