Skip to content

Commit

Permalink
introduce dependency management tool
Browse files Browse the repository at this point in the history
https://github.com/golang/dep

Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
  • Loading branch information
fujita committed Aug 3, 2017
1 parent 802d5f8 commit 11f3fcc
Show file tree
Hide file tree
Showing 3 changed files with 312 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ gobgpd/gobgpd
# Folders
_obj
_test
vendor

# Architecture specific extensions/prefixes
*.[568vq]
Expand Down
225 changes: 225 additions & 0 deletions Gopkg.lock

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

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

# 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]]
branch = "master"
name = "github.com/armon/go-radix"

[[constraint]]
name = "github.com/eapache/channels"
version = "1.1.0"

[[constraint]]
branch = "master"
name = "github.com/golang/protobuf"

[[constraint]]
name = "github.com/influxdata/influxdb"
version = "1.3.1"

[[constraint]]
name = "github.com/jessevdk/go-flags"
version = "1.3.0"

[[constraint]]
branch = "master"
name = "github.com/kr/pretty"

[[constraint]]
name = "github.com/satori/go.uuid"
version = "1.1.0"

[[constraint]]
name = "github.com/sirupsen/logrus"
version = "1.0.2"

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

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

[[constraint]]
name = "github.com/stretchr/testify"
version = "1.1.4"

[[constraint]]
branch = "master"
name = "github.com/vishvananda/netlink"

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

[[constraint]]
name = "google.golang.org/grpc"
version = "1.5.1"

[[constraint]]
branch = "v2"
name = "gopkg.in/tomb.v2"

0 comments on commit 11f3fcc

Please sign in to comment.