30 lines
819 B
TOML
30 lines
819 B
TOML
|
# 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
|