summaryrefslogtreecommitdiff
path: root/Gopkg.toml
diff options
context:
space:
mode:
authorJakob Unterwurzacher2018-06-12 22:59:00 +0200
committerJakob Unterwurzacher2018-06-12 23:05:53 +0200
commite925e1b78e6fb0bb22bd7963b9b45b4fa6fc4695 (patch)
treee8181b6189f0325f107fde6e385b11e088b8c070 /Gopkg.toml
parentbfa50517e9b0b3afe98084cc9ba105caba45b540 (diff)
dep: fix constraints and update dependencies
Gopkg.toml was emptied out by commit c3e12b5e68637 which seemed to work fine at the time. It turns out that, in absence of a branch = "master" constraint, dep will use the last tag. We want latest master, as this is what "go get" fetches, and hence what Travis uses for testing.
Diffstat (limited to 'Gopkg.toml')
-rw-r--r--Gopkg.toml20
1 files changed, 20 insertions, 0 deletions
diff --git a/Gopkg.toml b/Gopkg.toml
index bd0246a..fafb8f3 100644
--- a/Gopkg.toml
+++ b/Gopkg.toml
@@ -1,3 +1,23 @@
[[constraint]]
+ branch = "master"
+ name = "github.com/hanwen/go-fuse"
+
+[[constraint]]
+ branch = "master"
+ name = "github.com/jacobsa/crypto"
+
+[[constraint]]
name = "github.com/pkg/xattr"
branch = "master"
+
+[[constraint]]
+ branch = "master"
+ name = "github.com/rfjakob/eme"
+
+[[constraint]]
+ branch = "master"
+ name = "golang.org/x/crypto"
+
+[[constraint]]
+ branch = "master"
+ name = "golang.org/x/sync"