This repository has been archived by the owner on Jul 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 329
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add explicit library dependencies (#703)
Adds Gopkg.toml and Gopkg.lock with initial dependency versions. Includes workaround for Apache Thrift repo migration. Ignores the vendor folder and adds a travis test to ensure dependency version updates don't break the build. Fixes #684.
- Loading branch information
1 parent
9b24783
commit 36f8bed
Showing
4 changed files
with
297 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,5 @@ | |
# go.opencensus.io/exporter/aws | ||
/exporter/aws/ | ||
|
||
# Ignore Go vendor directory | ||
/.vendor/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
[[constraint]] | ||
name = "cloud.google.com/go" | ||
version = "0.21.0" | ||
|
||
[[constraint]] | ||
branch = "master" | ||
name = "git.apache.org/thrift.git" | ||
source = "github.com/apache/thrift" | ||
|
||
[[constraint]] | ||
name = "github.com/golang/protobuf" | ||
version = "1.0.0" | ||
|
||
[[constraint]] | ||
name = "github.com/openzipkin/zipkin-go" | ||
version = "0.1.0" | ||
|
||
[[constraint]] | ||
name = "github.com/prometheus/client_golang" | ||
version = "0.8.0" | ||
|
||
[[constraint]] | ||
branch = "master" | ||
name = "golang.org/x/net" | ||
|
||
[[constraint]] | ||
branch = "master" | ||
name = "golang.org/x/oauth2" | ||
|
||
[[constraint]] | ||
branch = "master" | ||
name = "google.golang.org/api" | ||
|
||
[[constraint]] | ||
branch = "master" | ||
name = "google.golang.org/genproto" | ||
|
||
[[constraint]] | ||
name = "google.golang.org/grpc" | ||
version = "1.11.3" | ||
|
||
[prune] | ||
go-tests = true | ||
unused-packages = true |