diff options
author | Jakob Unterwurzacher | 2017-09-06 20:52:30 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2017-09-06 20:52:30 +0200 |
commit | 512be8f081d2cc2afc778a2dcf5447647de2bbea (patch) | |
tree | f658fa2ec26869e2370996819a0a847b3dec1f13 /Gopkg.toml | |
parent | 604b0779d47d39fc5390a67167a8090748843cc1 (diff) |
Add "dep" files: Gopkg.toml and Gopkg.lock
Allows users to get a reproduceable build. Still needs to
be integrated into build.bash.
Suggested at https://github.com/rfjakob/gocryptfs/issues/142
Diffstat (limited to 'Gopkg.toml')
-rw-r--r-- | Gopkg.toml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Gopkg.toml b/Gopkg.toml new file mode 100644 index 0000000..0641c78 --- /dev/null +++ b/Gopkg.toml @@ -0,0 +1,19 @@ +[[constraint]] + branch = "master" + name = "github.com/hanwen/go-fuse" + +[[constraint]] + branch = "master" + name = "github.com/jacobsa/crypto" + +[[constraint]] + branch = "master" + name = "github.com/rfjakob/eme" + +[[constraint]] + branch = "master" + name = "golang.org/x/crypto" + +[[constraint]] + branch = "master" + name = "golang.org/x/sync" |