aboutsummaryrefslogtreecommitdiff
path: root/Gopkg.toml
diff options
context:
space:
mode:
authorJoseph Richey <joerichey@google.com>2018-02-08 02:01:29 -0800
committerGitHub <noreply@github.com>2018-02-08 02:01:29 -0800
commitf4ccce6f486c26fdfa8d3d09929d464fc9368ab3 (patch)
tree82d72cbbc03b84e59d2018188f220340a95cff39 /Gopkg.toml
parent141265fe9c7bc13bf8bff6265cfafc65ed2ebd5c (diff)
parent78ec1b76d5dfd58bf244ee1426a6c86ed5fce118 (diff)
Merge pull request #83 from google/dep
Start using Dep
Diffstat (limited to 'Gopkg.toml')
-rw-r--r--Gopkg.toml31
1 files changed, 31 insertions, 0 deletions
diff --git a/Gopkg.toml b/Gopkg.toml
new file mode 100644
index 0000000..bd585b3
--- /dev/null
+++ b/Gopkg.toml
@@ -0,0 +1,31 @@
+# Gopkg.toml example
+#
+# Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md
+# for detailed Gopkg.toml documentation.
+#
+# required = ["github.com/user/thing/cmd/thing"]
+# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"]
+#
+# [[constraint]]
+# name = "github.com/user/project"
+# version = "1.0.0"
+#
+# [[constraint]]
+# name = "github.com/user/project2"
+# branch = "dev"
+# source = "github.com/myfork/project2"
+#
+# [[override]]
+# name = "github.com/x/y"
+# version = "2.4.0"
+#
+# [prune]
+# non-go = false
+# go-tests = true
+# unused-packages = true
+
+
+[prune]
+ non-go = true
+ go-tests = true
+ unused-packages = true