forked from twitchtv/twirp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gopkg.toml
29 lines (24 loc) · 819 Bytes
/
Gopkg.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# The importable parts of Twirp have no external dependencies. They just use the
# standard library. But both protoc-gen-twirp and Twirp's tests *do* have some
# dependencies, and this manifest lists them.
#
# All dependencies are specified as overrides, not constraints, so that dep
# doesn't get confused if someone imports Twirp. We don't want to falsely
# require any particular versions of these libraries - they are *only* for
# tests and building main packages.
[[override]]
name = "github.com/gogo/protobuf"
version = "0.5.0"
[[override]]
branch = "master"
name = "github.com/golang/protobuf"
[[override]]
name = "github.com/pkg/errors"
version = "0.8.0"
[[override]]
name = "github.com/stretchr/testify"
version = "1.2.0"
[prune]
unused-packages = true
go-tests = true
non-go = true