Skip to content

Commit

Permalink
add 'dep' dependency management
Browse files Browse the repository at this point in the history
  • Loading branch information
klauern committed Sep 23, 2017
1 parent 00304cc commit 246024f
Show file tree
Hide file tree
Showing 2 changed files with 205 additions and 0 deletions.
159 changes: 159 additions & 0 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

46 changes: 46 additions & 0 deletions Gopkg.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@

# 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"


[[constraint]]
name = "github.com/BurntSushi/toml"
version = "0.3.0"

[[constraint]]
name = "github.com/gizak/termui"
version = "2.2.0"

[[constraint]]
name = "github.com/gorilla/mux"
version = "1.5.0"

[[constraint]]
name = "github.com/pkg/errors"
version = "0.8.0"

[[constraint]]
branch = "master"
name = "github.com/spf13/cobra"

[[constraint]]
name = "github.com/spf13/viper"
version = "1.0.0"

0 comments on commit 246024f

Please sign in to comment.