Skip to content

Commit 8bed47d

Browse files
committed
Fix dependency
1 parent dad9b34 commit 8bed47d

File tree

2 files changed

+24
-15
lines changed

2 files changed

+24
-15
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
.vscode
22
.idea
33

4+
/Gopkg.lock
5+
/vendor

Gopkg.toml

Lines changed: 22 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
21
# Gopkg.toml example
32
#
4-
# Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md
3+
# Refer to https://golang.github.io/dep/docs/Gopkg.toml.html
54
# for detailed Gopkg.toml documentation.
65
#
76
# required = ["github.com/user/thing/cmd/thing"]
@@ -17,35 +16,43 @@
1716
# source = "github.com/myfork/project2"
1817
#
1918
# [[override]]
20-
# name = "github.com/x/y"
21-
# version = "2.4.0"
19+
# name = "github.com/x/y"
20+
# version = "2.4.0"
21+
#
22+
# [prune]
23+
# non-go = false
24+
# go-tests = true
25+
# unused-packages = true
2226

2327

28+
[[constraint]]
29+
name = "github.com/BurntSushi/toml"
30+
version = "0.3.0"
2431

2532
[[constraint]]
2633
name = "github.com/fatih/structs"
2734
version = "1.0.0"
2835

29-
[[constraint]]
30-
name = "github.com/BurntSushi/toml"
31-
version = "0.3.0"
32-
3336
[[constraint]]
3437
name = "github.com/op/go-logging"
3538
version = "1.0.0"
3639

3740
[[constraint]]
38-
name = "github.com/satori/go.uuid"
39-
version = "1.1.0"
41+
name = "github.com/openbaton/go-openbaton"
42+
branch = "dep"
4043

4144
[[constraint]]
42-
name = "github.com/shiena/ansicolor"
43-
branch = "master"
45+
name = "github.com/pkg/errors"
46+
version = "0.8.0"
4447

4548
[[constraint]]
46-
name = "github.com/sirupsen/logrus"
47-
version = "1.0.3"
49+
name = "github.com/satori/go.uuid"
50+
version = "1.2.0"
4851

4952
[[constraint]]
50-
name = "github.com/streadway/amqp"
5153
branch = "master"
54+
name = "github.com/streadway/amqp"
55+
56+
[prune]
57+
go-tests = true
58+
unused-packages = true

0 commit comments

Comments
 (0)