Skip to content

Commit

Permalink
#71 Integrate with golang dep
Browse files Browse the repository at this point in the history
  • Loading branch information
zshamrock committed Aug 7, 2018
1 parent d3b1ab2 commit 59a5ad4
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,6 @@ vmx

# Project-local glide cache, RE: https://github.com/Masterminds/glide/issues/736
.glide/

vendor/
*.lock
50 changes: 50 additions & 0 deletions Gopkg.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
# Gopkg.toml example
#
# Refer to https://golang.github.io/dep/docs/Gopkg.toml.html
# 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


[[constraint]]
name = "github.com/go-test/deep"
version = "1.0.1"

[[constraint]]
name = "github.com/kevinburke/ssh_config"
version = "0.4.0"

[[constraint]]
branch = "master"
name = "golang.org/x/crypto"

[[constraint]]
name = "gopkg.in/ini.v1"
version = "1.38.1"

[[constraint]]
name = "gopkg.in/urfave/cli.v1"
version = "1.20.0"

[prune]
go-tests = true
unused-packages = true

0 comments on commit 59a5ad4

Please sign in to comment.