diff options
| author | Felix Hanley <felix@userspace.com.au> | 2018-02-21 04:21:58 +0000 |
|---|---|---|
| committer | Felix Hanley <felix@userspace.com.au> | 2018-02-21 04:22:32 +0000 |
| commit | 734db776ce17a234825e83180a547cd3ad28f5e2 (patch) | |
| tree | d5c289056fb01dfc1f3f438dd4eec21a31a23166 /Gopkg.toml | |
| parent | e9adf3a2bf8b81615275a6705b7957e43753f0ec (diff) | |
| download | dhtsearch-734db776ce17a234825e83180a547cd3ad28f5e2.tar.gz dhtsearch-734db776ce17a234825e83180a547cd3ad28f5e2.tar.bz2 | |
Update vendor deps
Diffstat (limited to 'Gopkg.toml')
| -rw-r--r-- | Gopkg.toml | 97 |
1 files changed, 37 insertions, 60 deletions
@@ -1,69 +1,46 @@ - -## Gopkg.toml example (these lines may be deleted) - -## "metadata" defines metadata about the project that could be used by other independent -## systems. The metadata defined here will be ignored by dep. -# [metadata] -# key1 = "value that convey data to other systems" -# system1-data = "value that is used by a system" -# system2-data = "value that is used by another system" - -## "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. +# Gopkg.toml example +# +# Refer to https://golang.github.io/dep/docs/Gopkg.toml.html +# for detailed Gopkg.toml documentation. +# # 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/user/project/badpkg"] - -## Constraints are rules for how directly imported projects -## may be incorporated into the depgraph. They are respected by -## dep whether coming from the Gopkg.toml of the current project or a dependency. -# [[constraint]] -## Required: the root import path of the project being constrained. -# name = "github.com/user/project" +# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"] # -## 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" +# [[constraint]] +# name = "github.com/user/project" +# version = "1.0.0" # -## Optional: an alternate location (URL or import path) for the project's source. -# source = "https://github.com/myfork/package.git" +# [[constraint]] +# name = "github.com/user/project2" +# branch = "dev" +# source = "github.com/myfork/project2" # -## "metadata" defines metadata about the dependency or override that could be used -## by other independent systems. The metadata defined here will be ignored by dep. -# [metadata] -# key1 = "value that convey data to other systems" -# system1-data = "value that is used by a system" -# system2-data = "value that is used by another system" - -## Overrides have the same structure as [[constraint]], but supersede all -## [[constraint]] declarations from all projects. Only [[override]] from -## the current project's are applied. -## -## Overrides are a sledgehammer. Use them only as a last resort. # [[override]] -## Required: the root import path of the project being constrained. -# name = "github.com/user/project" +# name = "github.com/x/y" +# version = "2.4.0" # -## Optional: specifying a version constraint override will cause all other -## constraints on this project to be ignored; only the overridden 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" +# [prune] +# non-go = false +# go-tests = true +# unused-packages = true + + +[[constraint]] + name = "github.com/felix/logger" + version = "0.1.1" + +[[constraint]] + name = "github.com/jackc/pgx" + version = "3.1.0" [[constraint]] branch = "master" - name = "github.com/IncSW/go-bencode" + name = "github.com/jmoiron/sqlx" + +[[constraint]] + branch = "master" + name = "golang.org/x/time" + +[prune] + go-tests = true + unused-packages = true |
