Skip to content

Commit 7a51624

Browse files
glide replaced by dep
1 parent 234a8f9 commit 7a51624

File tree

8 files changed

+377
-282
lines changed

8 files changed

+377
-282
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
example/client/client
66
/temp
77
vendor
8+
_vendor-*
89
charon.iml
910
run.sh
1011
coverage.txt

Gopkg.lock

Lines changed: 267 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Gopkg.toml

Lines changed: 107 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
2+
# Gopkg.toml example
3+
#
4+
# Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md
5+
# for detailed Gopkg.toml documentation.
6+
#
7+
# required = ["github.com/user/thing/cmd/thing"]
8+
# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"]
9+
#
10+
# [[constraint]]
11+
# name = "github.com/user/project"
12+
# version = "1.0.0"
13+
#
14+
# [[constraint]]
15+
# name = "github.com/user/project2"
16+
# branch = "dev"
17+
# source = "github.com/myfork/project2"
18+
#
19+
# [[override]]
20+
# name = "github.com/x/y"
21+
# version = "2.4.0"
22+
23+
ignored = ["github.com/piotrkowalczuk/charon/data"]
24+
25+
[[constraint]]
26+
name = "github.com/go-kit/kit"
27+
version = "~0.2.0"
28+
29+
[[constraint]]
30+
name = "github.com/go-ldap/ldap"
31+
version = "~2.5.0"
32+
33+
[[constraint]]
34+
name = "github.com/golang/protobuf"
35+
36+
[[constraint]]
37+
name = "github.com/lib/pq"
38+
39+
[[constraint]]
40+
name = "github.com/pborman/uuid"
41+
version = "~1.0.0"
42+
43+
[[constraint]]
44+
name = "github.com/piotrkowalczuk/mnemosyne"
45+
version = "~0.12.0"
46+
47+
[[constraint]]
48+
name = "github.com/piotrkowalczuk/ntypes"
49+
version = "^1.0.0"
50+
51+
[[constraint]]
52+
name = "github.com/piotrkowalczuk/pqcomp"
53+
54+
[[constraint]]
55+
name = "github.com/piotrkowalczuk/promgrpc"
56+
version = "^1.0.0"
57+
58+
[[constraint]]
59+
name = "github.com/piotrkowalczuk/qtypes"
60+
version = "~0.3.6"
61+
62+
[[constraint]]
63+
name = "github.com/piotrkowalczuk/sklog"
64+
65+
[[constraint]]
66+
name = "github.com/prometheus/client_golang"
67+
version = "~0.8.0"
68+
69+
[[constraint]]
70+
name = "github.com/smartystreets/goconvey"
71+
version = "~1.6.2"
72+
73+
[[constraint]]
74+
name = "github.com/stretchr/testify"
75+
version = "^1.1.4"
76+
77+
[[constraint]]
78+
name = "go.uber.org/zap"
79+
version = "^1.0.0"
80+
81+
[[constraint]]
82+
name = "golang.org/x/crypto"
83+
84+
[[constraint]]
85+
name = "golang.org/x/net"
86+
87+
[[constraint]]
88+
name = "golang.org/x/oauth2"
89+
90+
[[constraint]]
91+
name = "google.golang.org/grpc"
92+
version = "^1.0.0"
93+
94+
[[constraint]]
95+
name = "github.com/piotrkowalczuk/pqt"
96+
version = "~0.19.0"
97+
98+
[[constraint]]
99+
name = "github.com/piotrkowalczuk/qtypespqt"
100+
version = "~0.3.3"
101+
102+
[[constraint]]
103+
name = "github.com/piotrkowalczuk/ntypespqt"
104+
version = "~0.2.5"
105+
106+
[[constraint]]
107+
name = "github.com/huandu/xstrings"

Makefile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,8 @@ cover: test
3838

3939
get:
4040
go get github.com/vektra/mockery/cmd/mockery
41-
go get github.com/Masterminds/glide
42-
glide install -v
43-
cd ./cmd/charong && glide install -v
41+
go get -u github.com/golang/dep/cmd/dep
42+
dep ensure
4443

4544
publish:
4645
docker build \

0 commit comments

Comments
 (0)