diff options
author | 2017-07-26 02:24:01 -0700 | |
---|---|---|
committer | 2017-07-26 02:24:01 -0700 | |
commit | f5fbfce876f827ed14f80cb184310f0965c0f692 (patch) | |
tree | cb5736c2c1555a217a9bae8c8ba5ac2641b28342 /Gopkg.toml | |
parent | 7d1b0cf2e10b2cb243110fff23a7767a5c4143fa (diff) | |
download | coredns-f5fbfce876f827ed14f80cb184310f0965c0f692.tar.gz coredns-f5fbfce876f827ed14f80cb184310f0965c0f692.tar.zst coredns-f5fbfce876f827ed14f80cb184310f0965c0f692.zip |
Stop vendoring go dns and context (#794)
* Stop vendoring go dns and x/net/context
* dep ensure run
* Fix Makefile
* Fix typo
* Delete context vendor dir
Diffstat (limited to 'Gopkg.toml')
-rw-r--r-- | Gopkg.toml | 68 |
1 files changed, 17 insertions, 51 deletions
diff --git a/Gopkg.toml b/Gopkg.toml index 8ea3dba0a..62d933fd8 100644 --- a/Gopkg.toml +++ b/Gopkg.toml @@ -1,52 +1,18 @@ +ignored = [ + "github.com/mholt/caddy", + "github.com/mholt/caddy/caddyfile", + "github.com/mholt/caddy/startupshutdown", + "github.com/miekg/dns", + "golang.org/x/net/context", + "golang.org/x/net/context/ctxhttp", + "golang.org/x/net/http2", + "golang.org/x/net/http2/hpack", + "golang.org/x/net/idna", + "golang.org/x/net/internal/timeseries", + "golang.org/x/net/lex/httplex", + "golang.org/x/net/trace", +] -## Gopkg.toml example (these lines may be deleted) - -## "required" lists a set of packages (not projects) that must be included in -## Gopkg.lock. This list is merged with the set of packages imported by the current -## project. Use it when your project needs a package it doesn't explicitly import - -## including "main" packages. -# required = ["github.com/user/thing/cmd/thing"] - -## "ignored" lists a set of packages (not projects) that are ignored when -## dep statically analyzes source code. Ignored packages can be in this project, -## or in a dependency. -ignored = ["github.com/mholt/caddy", "github.com/mholt/caddy/caddyfile", "github.com/mholt/caddy/startupshutdown"] - -## Dependencies define constraints on dependent projects. They are respected by -## dep whether coming from the Gopkg.toml of the current project or a dependency. -# [[dependencies]] -## Required: the root import path of the project being constrained. -# name = "github.com/user/project" -# -## Recommended: the version constraint to enforce for the project. -## Only one of "branch", "version" or "revision" can be specified. -# version = "1.0.0" -# branch = "master" -# revision = "abc123" -# -## Optional: an alternate location (URL or import path) for the project's source. -# source = "https://github.com/myfork/package.git" - -## Overrides have the same structure as [[dependencies]], but supercede all -## [[dependencies]] declarations from all projects. Only the current project's -## [[overrides]] are applied. -## -## Overrides are a sledgehammer. Use them only as a last resort. -# [[overrides]] -## Required: the root import path of the project being constrained. -# name = "github.com/user/project" -# -## Optional: specifying a version constraint override will cause all other -## constraints on this project to be ignored; only the overriden constraint -## need be satisfied. -## Again, only one of "branch", "version" or "revision" can be specified. -# version = "1.0.0" -# branch = "master" -# revision = "abc123" -# -## Optional: specifying an alternate source location as an override will -## enforce that the alternate location is used for that project, regardless of -## what source location any dependent projects specify. -# source = "https://github.com/myfork/package.git" - - +[[constraint]] + name = "github.com/openzipkin/zipkin-go-opentracing" + version = "v0.2.3" |