-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGopkg.toml
36 lines (33 loc) · 1.37 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
## "required" lists a set of packages (not projects) that must be included in
## Gopkg.lock. This list is merged with the set of packages imported by the current
## project. Use it when your project needs a package it doesn't explicitly import -
## including "main" packages.
required = []
## "ignored" lists a set of packages (not projects) that are ignored when
## dep statically analyzes source code. Ignored packages can be in this project,
## or in a dependency.
ignored = [
"github.com/timtadh/dynagrok/data*",
"github.com/timtadh/dynagrok/examples*",
]
[[constraint]]
name = "github.com/timtadh/getopt"
version = "^1.0.0"
[[constraint]]
name = "github.com/timtadh/data-structures"
version = "^0.5.0"
## Constraints are rules for how directly imported projects
## may be incorporated into the depgraph. They are respected by
## dep whether coming from the Gopkg.toml of the current project or a dependency.
## [[constraint]]
## Required: the root import path of the project being constrained.
## name = "github.com/timtadh/dynagrok"
##
## ## Recommended: the version constraint to enforce for the project.
## ## Only one of "branch", "version" or "revision" can be specified.
## # version = "0.5.0"
## branch = "master"
## # revision = "abc123"
##
## ## Optional: an alternate location (URL or import path) for the project's source.
## # source = "https://github.com/myfork/package.git"