forked from cloudfoundry-incubator/cflocal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gopkg.toml
67 lines (50 loc) · 1.21 KB
/
Gopkg.toml
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
60
61
62
63
64
65
66
67
required = [
# Utilities
"github.com/onsi/ginkgo/ginkgo",
"github.com/golang/mock/mockgen",
# Transitive Forks
"github.com/opencontainers/runc/libcontainer/system",
"golang.org/x/net/context",
]
ignored = [
"code.cloudfoundry.org/cli/cf/resources",
]
# App
[[constraint]]
name = "code.cloudfoundry.org/cli"
version = "=6.32.0"
[[constraint]]
name = "github.com/fsnotify/fsevents"
branch = "master"
[[constraint]]
name = "github.com/fsnotify/fsnotify"
branch = "master"
[[constraint]]
name = "github.com/hashicorp/go-version"
branch = "master"
[[constraint]]
name = "github.com/kardianos/osext"
branch = "master"
[[constraint]]
name = "github.com/nu7hatch/gouuid"
branch = "master"
[[constraint]]
name = "github.com/sclevine/forge"
branch = "master"
# Test
[[constraint]]
name = "github.com/onsi/ginkgo"
branch = "master"
[[constraint]]
name = "github.com/onsi/gomega"
branch = "master"
[[constraint]]
name = "github.com/golang/mock"
branch = "master"
# Transitive Forks
[[constraint]]
name = "github.com/opencontainers/runc"
source = "https://github.com/docker/runc.git"
[[constraint]]
name = "golang.org/x/net"
source = "https://github.com/tonistiigi/net.git"