diff options
author | Jakob Unterwurzacher | 2018-06-12 22:59:00 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2018-06-12 23:05:53 +0200 |
commit | e925e1b78e6fb0bb22bd7963b9b45b4fa6fc4695 (patch) | |
tree | e8181b6189f0325f107fde6e385b11e088b8c070 /Gopkg.toml | |
parent | bfa50517e9b0b3afe98084cc9ba105caba45b540 (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.toml | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -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" |