vendor: Updated submodules

This commit is contained in:
Daniel Oaks 2017-04-30 13:09:36 +10:00
parent e85c3e9243
commit 5ecdc427e8
3 changed files with 237 additions and 1 deletions

132
Gopkg.lock generated Normal file
View File

@ -0,0 +1,132 @@
memo = "66c0ffbf25fb28a769da24b8cce6b3d9e4478ffa91d3dbb67dc7a78bedd65fa1"
[[projects]]
name = "code.cloudfoundry.org/bytefmt"
packages = ["."]
revision = "cbe033486cf0620d3bb77d8ef7f22ab346ad3628"
[[projects]]
branch = "master"
name = "github.com/DanielOaks/e-nfa"
packages = ["."]
revision = "7071788e394065e6456458a5e9cb503cad545154"
[[projects]]
branch = "master"
name = "github.com/DanielOaks/girc-go"
packages = ["ircmatch","ircmsg"]
revision = "44f3a36650eee6b315868c0c6ad6a897a338d856"
[[projects]]
branch = "master"
name = "github.com/DanielOaks/go-ident"
packages = ["."]
revision = "337fed0fd21ad538725cfcb55053ea4cf8056abc"
[[projects]]
name = "github.com/docopt/docopt-go"
packages = ["."]
revision = "784ddc588536785e7299f7272f39101f7faccc3f"
version = "0.6.2"
[[projects]]
name = "github.com/gorilla/context"
packages = ["."]
revision = "1ea25387ff6f684839d82767c1733ff4d4d15d0a"
version = "v1.1"
[[projects]]
branch = "master"
name = "github.com/gorilla/mux"
packages = ["."]
revision = "4c1c3952b7d9d0a061a3fa7b36fd373ba0398ebc"
[[projects]]
branch = "master"
name = "github.com/gorilla/websocket"
packages = ["."]
revision = "a91eba7f97777409bc2c443f5534d41dd20c5720"
[[projects]]
branch = "master"
name = "github.com/mattn/go-colorable"
packages = ["."]
revision = "ded68f7a9561c023e790de24279db7ebf473ea80"
[[projects]]
name = "github.com/mattn/go-isatty"
packages = ["."]
revision = "fc9e8d8ef48496124e79ae0df75490096eccf6fe"
version = "v0.0.2"
[[projects]]
branch = "master"
name = "github.com/mgutz/ansi"
packages = ["."]
revision = "9520e82c474b0a04dd04f8a40959027271bab992"
[[projects]]
name = "github.com/stackimpact/stackimpact-go"
packages = [".","internal","internal/pprof/profile","internal/pprof/trace"]
revision = "f127640a7073ac6529379e59ae8ae9b16d8c187c"
version = "v1.4.2"
[[projects]]
branch = "master"
name = "github.com/tidwall/btree"
packages = ["."]
revision = "9876f1454cf0993a53d74c27196993e345f50dd1"
[[projects]]
branch = "master"
name = "github.com/tidwall/buntdb"
packages = ["."]
revision = "83418750ee775aa24194606fffe7fec391975a65"
[[projects]]
branch = "master"
name = "github.com/tidwall/gjson"
packages = ["."]
revision = "e30a9c1037e0f9fbde93a6a9848a2dd5c59d3b91"
[[projects]]
branch = "master"
name = "github.com/tidwall/grect"
packages = ["."]
revision = "ba9a043346eba55344e40d66a5e74cfda3a9d293"
[[projects]]
branch = "master"
name = "github.com/tidwall/match"
packages = ["."]
revision = "173748da739a410c5b0b813b956f89ff94730b4c"
[[projects]]
branch = "master"
name = "github.com/tidwall/rtree"
packages = ["."]
revision = "d4a8a3d30d5729f85edfba1745241f3a621d0359"
[[projects]]
branch = "master"
name = "golang.org/x/crypto"
packages = ["bcrypt","blowfish","ssh/terminal"]
revision = "c7af5bf2638a1164f2eb5467c39c6cffbd13a02e"
[[projects]]
branch = "master"
name = "golang.org/x/sys"
packages = ["unix"]
revision = "9ccfe848b9db8435a24c424abbc07a921adf1df5"
[[projects]]
branch = "master"
name = "golang.org/x/text"
packages = ["cases","internal","internal/gen","internal/tag","internal/triegen","internal/ucd","language","runes","secure/bidirule","secure/precis","transform","unicode/bidi","unicode/cldr","unicode/norm","unicode/rangetable","width"]
revision = "470f45bf29f4147d6fbd7dfd0a02a848e49f5bf4"
[[projects]]
branch = "v2"
name = "gopkg.in/yaml.v2"
packages = ["."]
revision = "cd8b52f8269e0feb286dfeef29f8fe4d5b397e0b"

104
Gopkg.toml Normal file
View File

@ -0,0 +1,104 @@
## 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/user/project/badpkg"]
## 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"
[[dependencies]]
name = "code.cloudfoundry.org/bytefmt"
revision = "cbe033486cf0620d3bb77d8ef7f22ab346ad3628"
[[dependencies]]
branch = "master"
name = "github.com/DanielOaks/girc-go"
[[dependencies]]
branch = "master"
name = "github.com/DanielOaks/go-ident"
[[dependencies]]
branch = "master"
name = "github.com/docopt/docopt-go"
[[dependencies]]
branch = "master"
name = "github.com/gorilla/mux"
[[dependencies]]
branch = "master"
name = "github.com/gorilla/websocket"
[[dependencies]]
branch = "master"
name = "github.com/mattn/go-colorable"
[[dependencies]]
branch = "master"
name = "github.com/mgutz/ansi"
[[dependencies]]
branch = "master"
name = "github.com/stackimpact/stackimpact-go"
[[dependencies]]
branch = "master"
name = "github.com/tidwall/buntdb"
[[dependencies]]
branch = "master"
name = "golang.org/x/crypto"
[[dependencies]]
branch = "master"
name = "golang.org/x/text"
[[dependencies]]
branch = "v2"
name = "gopkg.in/yaml.v2"

2
vendor

@ -1 +1 @@
Subproject commit ca40b3acbe9ad9ab3356450730c5d5c71a87b3f5
Subproject commit b4a117d2e4e605f9b9f3668f0442f252c0bad9d4