From 371216e338caa22385b90e587fd5b94285ca199e Mon Sep 17 00:00:00 2001 From: Tim Schuster Date: Sat, 18 Apr 2020 10:09:55 +0200 Subject: [PATCH] updated dependencies, using go.mod now --- go.mod | 27 +++ go.sum | 41 ++++ .../github.com/GeertJohan/go.rice/.gitignore | 7 + vendor/github.com/dchest/captcha/.gitignore | 8 + .../github.com/dustin/go-humanize/.gitignore | 6 + .../github.com/dustin/go-humanize/.travis.yml | 18 ++ vendor/github.com/hlandau/passlib/COPYING | 39 ---- vendor/github.com/icza/session/.travis.yml | 11 + vendor/github.com/justinas/nosurf/.gitignore | 29 +++ vendor/github.com/justinas/nosurf/.travis.yml | 14 ++ vendor/github.com/nfnt/resize/.travis.yml | 7 + vendor/github.com/pressly/chi/.gitignore | 3 + vendor/github.com/pressly/chi/.travis.yml | 14 ++ vendor/github.com/tidwall/btree/.travis.yml | 1 + vendor/github.com/tidwall/buntdb/.travis.yml | 1 + vendor/github.com/tidwall/gjson/.travis.yml | 1 + vendor/github.com/tidwall/match/.travis.yml | 1 + vendor/github.com/tidwall/rtree/.travis.yml | 3 + vendor/golang.org/x/crypto/AUTHORS | 3 + vendor/golang.org/x/crypto/CONTRIBUTORS | 3 + .../gopkg.in/hlandau/passlib.v1/.travis.yml | 10 + .../hlandau/passlib.v1}/README.md | 0 .../hlandau/passlib.v1}/passlib.go | 0 vendor/gopkg.in/yaml.v2/.travis.yml | 9 + vendor/modules.txt | 75 ++++++ vendor/vendor.json | 217 ------------------ 26 files changed, 292 insertions(+), 256 deletions(-) create mode 100644 go.mod create mode 100644 go.sum create mode 100644 vendor/github.com/GeertJohan/go.rice/.gitignore create mode 100644 vendor/github.com/dchest/captcha/.gitignore create mode 100644 vendor/github.com/dustin/go-humanize/.gitignore create mode 100644 vendor/github.com/dustin/go-humanize/.travis.yml delete mode 100644 vendor/github.com/hlandau/passlib/COPYING create mode 100644 vendor/github.com/icza/session/.travis.yml create mode 100644 vendor/github.com/justinas/nosurf/.gitignore create mode 100644 vendor/github.com/justinas/nosurf/.travis.yml create mode 100644 vendor/github.com/nfnt/resize/.travis.yml create mode 100644 vendor/github.com/pressly/chi/.gitignore create mode 100644 vendor/github.com/pressly/chi/.travis.yml create mode 100644 vendor/github.com/tidwall/btree/.travis.yml create mode 100644 vendor/github.com/tidwall/buntdb/.travis.yml create mode 100644 vendor/github.com/tidwall/gjson/.travis.yml create mode 100644 vendor/github.com/tidwall/match/.travis.yml create mode 100644 vendor/github.com/tidwall/rtree/.travis.yml create mode 100644 vendor/golang.org/x/crypto/AUTHORS create mode 100644 vendor/golang.org/x/crypto/CONTRIBUTORS create mode 100644 vendor/gopkg.in/hlandau/passlib.v1/.travis.yml rename vendor/{github.com/hlandau/passlib => gopkg.in/hlandau/passlib.v1}/README.md (100%) rename vendor/{github.com/hlandau/passlib => gopkg.in/hlandau/passlib.v1}/passlib.go (100%) create mode 100644 vendor/gopkg.in/yaml.v2/.travis.yml create mode 100644 vendor/modules.txt delete mode 100644 vendor/vendor.json diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..52fa6bc --- /dev/null +++ b/go.mod @@ -0,0 +1,27 @@ +module go.rls.moe/nyx + +go 1.14 + +require ( + github.com/GeertJohan/go.rice v0.0.0-20170123135425-4bbccbfa39e7 + github.com/daaku/go.zipexe v0.0.0-20150329023125-a5fe2436ffcb // indirect + github.com/dchest/captcha v0.0.0-20150728125059-9e952142169c + github.com/dustin/go-humanize v0.0.0-20170228161531-259d2a102b87 + github.com/hlandau/passlib v1.0.9 // indirect + github.com/icza/session v0.0.0-20170217095304-81bce6267720 + github.com/justinas/nosurf v0.0.0-20161004085251-8e1568277264 + github.com/kardianos/osext v0.0.0-20170309185600-9d302b58e975 // indirect + github.com/nfnt/resize v0.0.0-20160724205520-891127d8d1b5 + github.com/pressly/chi v2.0.1-0.20170219131947-57ee7612d440+incompatible + github.com/tidwall/btree v0.0.0-20170113224114-9876f1454cf0 // indirect + github.com/tidwall/buntdb v0.0.0-20161202163738-74dc10171b75 + github.com/tidwall/gjson v0.0.0-20170205161042-09d1c5c5bc64 // indirect + github.com/tidwall/grect v0.0.0-20161006141115-ba9a043346eb // indirect + github.com/tidwall/match v0.0.0-20160830173930-173748da739a // indirect + github.com/tidwall/rtree v0.0.0-20160903213729-d4a8a3d30d57 // indirect + golang.org/x/crypto v0.0.0-20170307004051-728b753d0135 + gopkg.in/hlandau/easymetric.v1 v1.0.0 // indirect + gopkg.in/hlandau/measurable.v1 v1.0.1 // indirect + gopkg.in/hlandau/passlib.v1 v1.0.9 + gopkg.in/yaml.v2 v2.0.0-20170208141851-a3f3340b5840 +) diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..85d2799 --- /dev/null +++ b/go.sum @@ -0,0 +1,41 @@ +github.com/GeertJohan/go.rice v0.0.0-20170123135425-4bbccbfa39e7 h1:JJ0wm4S81aP34QpY9UsDRiMn0iM8+Pd/Cah7Zk73V/A= +github.com/GeertJohan/go.rice v0.0.0-20170123135425-4bbccbfa39e7/go.mod h1:DgrzXonpdQbfN3uYaGz1EG4Sbhyum/MMIn6Cphlh2bw= +github.com/daaku/go.zipexe v0.0.0-20150329023125-a5fe2436ffcb h1:tUf55Po0vzOendQ7NWytcdK0VuzQmfAgvGBUOQvN0WA= +github.com/daaku/go.zipexe v0.0.0-20150329023125-a5fe2436ffcb/go.mod h1:U0vRfAucUOohvdCxt5MWLF+TePIL0xbCkbKIiV8TQCE= +github.com/dchest/captcha v0.0.0-20150728125059-9e952142169c h1:r3y5YR/ZD2xb9IKSzABdU1Daav07RLuYZrrwZ25Kdq8= +github.com/dchest/captcha v0.0.0-20150728125059-9e952142169c/go.mod h1:QGrK8vMWWHQYQ3QU9bw9Y9OPNfxccGzfb41qjvVeXtY= +github.com/dustin/go-humanize v0.0.0-20170228161531-259d2a102b87 h1:uPzP/9GIqYKvZAmz4IayKMMZiWRWNtGynUREBtTXPXA= +github.com/dustin/go-humanize v0.0.0-20170228161531-259d2a102b87/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk= +github.com/hlandau/passlib v1.0.9/go.mod h1:77ovAz+VLR4VrRNrNhFTSSzYhZ4iUrGpXcBeC7cVRIU= +github.com/icza/session v0.0.0-20170217095304-81bce6267720 h1:HtKkpMgUmmSiLqt3BIYfvxe1HjJ7juOs94WsvSlLy1Q= +github.com/icza/session v0.0.0-20170217095304-81bce6267720/go.mod h1:YR0WpaAv86zKUYA/9ftt0jgzHB/faiGRPx7Dk9omoew= +github.com/justinas/nosurf v0.0.0-20161004085251-8e1568277264 h1:sC9w4DjdsbpgobOl7VZidmWdm09gk27QuMD0EQZCfVc= +github.com/justinas/nosurf v0.0.0-20161004085251-8e1568277264/go.mod h1:Aucr5I5chr4OCuuVB4LTuHVrKHBuyRSo7vM2hqrcb7E= +github.com/kardianos/osext v0.0.0-20170309185600-9d302b58e975 h1:xvknIKxUQpEypzxKGX59kCIEHYKRcqBa/6jQqXiWKF0= +github.com/kardianos/osext v0.0.0-20170309185600-9d302b58e975/go.mod h1:1NbS8ALrpOvjt0rHPNLyCIeMtbizbir8U//inJ+zuB8= +github.com/nfnt/resize v0.0.0-20160724205520-891127d8d1b5 h1:BvoENQQU+fZ9uukda/RzCAL/191HHwJA5b13R6diVlY= +github.com/nfnt/resize v0.0.0-20160724205520-891127d8d1b5/go.mod h1:jpp1/29i3P1S/RLdc7JQKbRpFeM1dOBd8T9ki5s+AY8= +github.com/pressly/chi v2.0.1-0.20170219131947-57ee7612d440+incompatible h1:6NKFWaJb//afA4tMWDjiUKmlbtlSpVYiwmcWDXeoFWs= +github.com/pressly/chi v2.0.1-0.20170219131947-57ee7612d440+incompatible/go.mod h1:s/kslmeFE633XtTPvfX2olbs4ymzIHxGGXmEJ/AvPT8= +github.com/tidwall/btree v0.0.0-20170113224114-9876f1454cf0 h1:QnyrPZZvPmR0AtJCxxfCtI1qN+fYpKTKJ/5opWmZ34k= +github.com/tidwall/btree v0.0.0-20170113224114-9876f1454cf0/go.mod h1:huei1BkDWJ3/sLXmO+bsCNELL+Bp2Kks9OLyQFkzvA8= +github.com/tidwall/buntdb v0.0.0-20161202163738-74dc10171b75 h1:lBUdGHoBnfesVCZAYHc4uvAfp1irCkoZh8TQ6y0GzZ8= +github.com/tidwall/buntdb v0.0.0-20161202163738-74dc10171b75/go.mod h1:Y39xhcDW10WlyYXeLgGftXVbjtM0QP+/kpz8xl9cbzE= +github.com/tidwall/gjson v0.0.0-20170205161042-09d1c5c5bc64 h1:6/SJyMAg0OoV6FuVP97VsiTFxdG4XyisdpvSTC1IiHY= +github.com/tidwall/gjson v0.0.0-20170205161042-09d1c5c5bc64/go.mod h1:c/nTNbUr0E0OrXEhq1pwa8iEgc2DOt4ZZqAt1HtCkPA= +github.com/tidwall/grect v0.0.0-20161006141115-ba9a043346eb h1:5NSYaAdrnblKByzd7XByQEJVT8+9v0W/tIY0Oo4OwrE= +github.com/tidwall/grect v0.0.0-20161006141115-ba9a043346eb/go.mod h1:lKYYLFIr9OIgdgrtgkZ9zgRxRdvPYsExnYBsEAd8W5M= +github.com/tidwall/match v0.0.0-20160830173930-173748da739a h1:jkSy//MOkpJzPmsdrxnM+wiF/wdmVCFGegxccsSkm2Q= +github.com/tidwall/match v0.0.0-20160830173930-173748da739a/go.mod h1:LujAq0jyVjBy028G1WhWfIzbpQfMO8bBZ6Tyb0+pL9E= +github.com/tidwall/rtree v0.0.0-20160903213729-d4a8a3d30d57 h1:k1tEEozQvcJFX6AFAfaF6cCeDvIhocoTrM47VswRfCg= +github.com/tidwall/rtree v0.0.0-20160903213729-d4a8a3d30d57/go.mod h1:/h+UnNGt0IhNNJLkGikcdcJqm66zGD/uJGMRxK/9+Ao= +golang.org/x/crypto v0.0.0-20170307004051-728b753d0135 h1:1J4uClWlkoInshrQThNfNr8yziNLooz9sLHf73Kk8A4= +golang.org/x/crypto v0.0.0-20170307004051-728b753d0135/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= +gopkg.in/hlandau/easymetric.v1 v1.0.0 h1:ZbfbH7W3giuVDjWUoFhDOjjv20hiPr5HZ2yMV5f9IeE= +gopkg.in/hlandau/easymetric.v1 v1.0.0/go.mod h1:yh75hypuFzAxmvECh3ZKGCvFnIfapYJh2wv7ASaX2RE= +gopkg.in/hlandau/measurable.v1 v1.0.1 h1:wH5UZKCRUnRr1iD+xIZfwhtxhmr+bprRJttqA1Rklf4= +gopkg.in/hlandau/measurable.v1 v1.0.1/go.mod h1:6N+SYJGMTmetsx7wskULP+juuO+++tsHJkAgzvzsbuM= +gopkg.in/hlandau/passlib.v1 v1.0.9 h1:VfsIu2uKK6xsr9VHCtJtIgNuZ/RNUrIi67hxl8K/7Gg= +gopkg.in/hlandau/passlib.v1 v1.0.9/go.mod h1:wxGAv2CtQHlzWY8NJp+p045yl4WHyX7v2T6XbOcmqjM= +gopkg.in/yaml.v2 v2.0.0-20170208141851-a3f3340b5840 h1:BftvRMCaj0KX6UeD7gnNJv0W8b4HAYTEWes978CoWlY= +gopkg.in/yaml.v2 v2.0.0-20170208141851-a3f3340b5840/go.mod h1:JAlM8MvJe8wmxCU4Bli9HhUf9+ttbYbLASfIpnQbh74= diff --git a/vendor/github.com/GeertJohan/go.rice/.gitignore b/vendor/github.com/GeertJohan/go.rice/.gitignore new file mode 100644 index 0000000..fe9db91 --- /dev/null +++ b/vendor/github.com/GeertJohan/go.rice/.gitignore @@ -0,0 +1,7 @@ +/example/example +/example/example.exe +/rice/rice +/rice/rice.exe + +*.rice-box.go +*.rice-box.syso diff --git a/vendor/github.com/dchest/captcha/.gitignore b/vendor/github.com/dchest/captcha/.gitignore new file mode 100644 index 0000000..ea1cde5 --- /dev/null +++ b/vendor/github.com/dchest/captcha/.gitignore @@ -0,0 +1,8 @@ +# Generated test captchas +capgen/*.png +capgen/*.wav + +# Programs +capgen/capgen +cangensounds/cangensounds +capexample/capexample diff --git a/vendor/github.com/dustin/go-humanize/.gitignore b/vendor/github.com/dustin/go-humanize/.gitignore new file mode 100644 index 0000000..05b4051 --- /dev/null +++ b/vendor/github.com/dustin/go-humanize/.gitignore @@ -0,0 +1,6 @@ +#* +*.[568] +*.a +*~ +[568].out +_* diff --git a/vendor/github.com/dustin/go-humanize/.travis.yml b/vendor/github.com/dustin/go-humanize/.travis.yml new file mode 100644 index 0000000..ffa8740 --- /dev/null +++ b/vendor/github.com/dustin/go-humanize/.travis.yml @@ -0,0 +1,18 @@ +sudo: false +language: go +go: + - 1.3.3 + - 1.5.4 + - 1.6.2 + - tip +matrix: + allow_failures: + - go: tip + fast_finish: true +install: + - # Do nothing. This is needed to prevent default install action "go get -t -v ./..." from happening here (we want it to happen inside script step). +script: + - go get -t -v ./... + - diff -u <(echo -n) <(gofmt -d -s .) + - go tool vet . + - go test -v -race ./... diff --git a/vendor/github.com/hlandau/passlib/COPYING b/vendor/github.com/hlandau/passlib/COPYING deleted file mode 100644 index d2aa62a..0000000 --- a/vendor/github.com/hlandau/passlib/COPYING +++ /dev/null @@ -1,39 +0,0 @@ -passlib is a Golang password verification library strongly inspired by and -derived from Python passlib (). The BSD -license is preserved and extended to all new code. - -License for Passlib -=================== -Passlib is (c) `Assurance Technologies `_, -and is released under the `BSD license `_:: - - Passlib - Copyright (c) 2008-2012 Assurance Technologies, LLC. - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - * Neither the name of Assurance Technologies, nor the names of the - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/vendor/github.com/icza/session/.travis.yml b/vendor/github.com/icza/session/.travis.yml new file mode 100644 index 0000000..1a8eea8 --- /dev/null +++ b/vendor/github.com/icza/session/.travis.yml @@ -0,0 +1,11 @@ +language: go + +go: + - 1.8 + - master + +script: + - go test -race -coverprofile=coverage.txt -covermode=atomic + +after_success: + - bash <(curl -s https://codecov.io/bash) diff --git a/vendor/github.com/justinas/nosurf/.gitignore b/vendor/github.com/justinas/nosurf/.gitignore new file mode 100644 index 0000000..14ca6d7 --- /dev/null +++ b/vendor/github.com/justinas/nosurf/.gitignore @@ -0,0 +1,29 @@ +# Compiled Object files, Static and Dynamic libs (Shared Objects) +*.o +*.a +*.so + +# Folders +_obj +_test + +# Architecture specific extensions/prefixes +*.[568vq] +[568vq].out + +*.cgo1.go +*.cgo2.c +_cgo_defun.c +_cgo_gotypes.go +_cgo_export.* + +_testmain.go + +*.exe + +# Vim stuff +*.s[a-w][a-z] +*.un~ +Session.vim +.netrwhist +*~ diff --git a/vendor/github.com/justinas/nosurf/.travis.yml b/vendor/github.com/justinas/nosurf/.travis.yml new file mode 100644 index 0000000..5fb9c71 --- /dev/null +++ b/vendor/github.com/justinas/nosurf/.travis.yml @@ -0,0 +1,14 @@ +language: go + +install: + - go get . + +script: + - go test -v . + +go: + - 1.1 + - 1.2 + - 1.3 + - 1.4 + - tip diff --git a/vendor/github.com/nfnt/resize/.travis.yml b/vendor/github.com/nfnt/resize/.travis.yml new file mode 100644 index 0000000..57bd4a7 --- /dev/null +++ b/vendor/github.com/nfnt/resize/.travis.yml @@ -0,0 +1,7 @@ +language: go + +go: + - 1.1 + - 1.2 + - 1.3 + - tip diff --git a/vendor/github.com/pressly/chi/.gitignore b/vendor/github.com/pressly/chi/.gitignore new file mode 100644 index 0000000..ba22c99 --- /dev/null +++ b/vendor/github.com/pressly/chi/.gitignore @@ -0,0 +1,3 @@ +.idea +*.sw? +.vscode diff --git a/vendor/github.com/pressly/chi/.travis.yml b/vendor/github.com/pressly/chi/.travis.yml new file mode 100644 index 0000000..5d56a81 --- /dev/null +++ b/vendor/github.com/pressly/chi/.travis.yml @@ -0,0 +1,14 @@ +language: go + +go: + - 1.7.4 + - tip + +install: + - go get -u golang.org/x/tools/cmd/goimports + +script: + - go get -d -t ./... + - go test ./... + - > + goimports -d -e ./ | grep '.*' && { echo; echo "Aborting due to non-empty goimports output."; exit 1; } || : diff --git a/vendor/github.com/tidwall/btree/.travis.yml b/vendor/github.com/tidwall/btree/.travis.yml new file mode 100644 index 0000000..4f2ee4d --- /dev/null +++ b/vendor/github.com/tidwall/btree/.travis.yml @@ -0,0 +1 @@ +language: go diff --git a/vendor/github.com/tidwall/buntdb/.travis.yml b/vendor/github.com/tidwall/buntdb/.travis.yml new file mode 100644 index 0000000..4f2ee4d --- /dev/null +++ b/vendor/github.com/tidwall/buntdb/.travis.yml @@ -0,0 +1 @@ +language: go diff --git a/vendor/github.com/tidwall/gjson/.travis.yml b/vendor/github.com/tidwall/gjson/.travis.yml new file mode 100644 index 0000000..4f2ee4d --- /dev/null +++ b/vendor/github.com/tidwall/gjson/.travis.yml @@ -0,0 +1 @@ +language: go diff --git a/vendor/github.com/tidwall/match/.travis.yml b/vendor/github.com/tidwall/match/.travis.yml new file mode 100644 index 0000000..4f2ee4d --- /dev/null +++ b/vendor/github.com/tidwall/match/.travis.yml @@ -0,0 +1 @@ +language: go diff --git a/vendor/github.com/tidwall/rtree/.travis.yml b/vendor/github.com/tidwall/rtree/.travis.yml new file mode 100644 index 0000000..d5a23ec --- /dev/null +++ b/vendor/github.com/tidwall/rtree/.travis.yml @@ -0,0 +1,3 @@ +language: go +go: + - 1.6 diff --git a/vendor/golang.org/x/crypto/AUTHORS b/vendor/golang.org/x/crypto/AUTHORS new file mode 100644 index 0000000..15167cd --- /dev/null +++ b/vendor/golang.org/x/crypto/AUTHORS @@ -0,0 +1,3 @@ +# This source code refers to The Go Authors for copyright purposes. +# The master list of authors is in the main Go distribution, +# visible at http://tip.golang.org/AUTHORS. diff --git a/vendor/golang.org/x/crypto/CONTRIBUTORS b/vendor/golang.org/x/crypto/CONTRIBUTORS new file mode 100644 index 0000000..1c4577e --- /dev/null +++ b/vendor/golang.org/x/crypto/CONTRIBUTORS @@ -0,0 +1,3 @@ +# This source code was written by the Go contributors. +# The master list of contributors is in the main Go distribution, +# visible at http://tip.golang.org/CONTRIBUTORS. diff --git a/vendor/gopkg.in/hlandau/passlib.v1/.travis.yml b/vendor/gopkg.in/hlandau/passlib.v1/.travis.yml new file mode 100644 index 0000000..b87a857 --- /dev/null +++ b/vendor/gopkg.in/hlandau/passlib.v1/.travis.yml @@ -0,0 +1,10 @@ +language: go +os: + - linux +go: + - 1.4 + - tip +sudo: false +install: + - go get gopkg.in/hlandau/passlib.v1 + - cd $HOME/gopath/src/gopkg.in/hlandau/passlib.v1 diff --git a/vendor/github.com/hlandau/passlib/README.md b/vendor/gopkg.in/hlandau/passlib.v1/README.md similarity index 100% rename from vendor/github.com/hlandau/passlib/README.md rename to vendor/gopkg.in/hlandau/passlib.v1/README.md diff --git a/vendor/github.com/hlandau/passlib/passlib.go b/vendor/gopkg.in/hlandau/passlib.v1/passlib.go similarity index 100% rename from vendor/github.com/hlandau/passlib/passlib.go rename to vendor/gopkg.in/hlandau/passlib.v1/passlib.go diff --git a/vendor/gopkg.in/yaml.v2/.travis.yml b/vendor/gopkg.in/yaml.v2/.travis.yml new file mode 100644 index 0000000..004172a --- /dev/null +++ b/vendor/gopkg.in/yaml.v2/.travis.yml @@ -0,0 +1,9 @@ +language: go + +go: + - 1.4 + - 1.5 + - 1.6 + - tip + +go_import_path: gopkg.in/yaml.v2 diff --git a/vendor/modules.txt b/vendor/modules.txt new file mode 100644 index 0000000..6933053 --- /dev/null +++ b/vendor/modules.txt @@ -0,0 +1,75 @@ +# github.com/GeertJohan/go.rice v0.0.0-20170123135425-4bbccbfa39e7 +## explicit +github.com/GeertJohan/go.rice +github.com/GeertJohan/go.rice/embedded +# github.com/daaku/go.zipexe v0.0.0-20150329023125-a5fe2436ffcb +## explicit +github.com/daaku/go.zipexe +# github.com/dchest/captcha v0.0.0-20150728125059-9e952142169c +## explicit +github.com/dchest/captcha +# github.com/dustin/go-humanize v0.0.0-20170228161531-259d2a102b87 +## explicit +github.com/dustin/go-humanize +# github.com/hlandau/passlib v1.0.9 +## explicit +# github.com/icza/session v0.0.0-20170217095304-81bce6267720 +## explicit +github.com/icza/session +# github.com/justinas/nosurf v0.0.0-20161004085251-8e1568277264 +## explicit +github.com/justinas/nosurf +# github.com/kardianos/osext v0.0.0-20170309185600-9d302b58e975 +## explicit +github.com/kardianos/osext +# github.com/nfnt/resize v0.0.0-20160724205520-891127d8d1b5 +## explicit +github.com/nfnt/resize +# github.com/pressly/chi v2.0.1-0.20170219131947-57ee7612d440+incompatible +## explicit +github.com/pressly/chi +github.com/pressly/chi/middleware +# github.com/tidwall/btree v0.0.0-20170113224114-9876f1454cf0 +## explicit +github.com/tidwall/btree +# github.com/tidwall/buntdb v0.0.0-20161202163738-74dc10171b75 +## explicit +github.com/tidwall/buntdb +# github.com/tidwall/gjson v0.0.0-20170205161042-09d1c5c5bc64 +## explicit +github.com/tidwall/gjson +# github.com/tidwall/grect v0.0.0-20161006141115-ba9a043346eb +## explicit +github.com/tidwall/grect +# github.com/tidwall/match v0.0.0-20160830173930-173748da739a +## explicit +github.com/tidwall/match +# github.com/tidwall/rtree v0.0.0-20160903213729-d4a8a3d30d57 +## explicit +github.com/tidwall/rtree +# golang.org/x/crypto v0.0.0-20170307004051-728b753d0135 +## explicit +golang.org/x/crypto/bcrypt +golang.org/x/crypto/blake2b +golang.org/x/crypto/blowfish +golang.org/x/crypto/pbkdf2 +golang.org/x/crypto/scrypt +# gopkg.in/hlandau/easymetric.v1 v1.0.0 +## explicit +gopkg.in/hlandau/easymetric.v1/cexp +# gopkg.in/hlandau/measurable.v1 v1.0.1 +## explicit +gopkg.in/hlandau/measurable.v1 +# gopkg.in/hlandau/passlib.v1 v1.0.9 +## explicit +gopkg.in/hlandau/passlib.v1 +gopkg.in/hlandau/passlib.v1/abstract +gopkg.in/hlandau/passlib.v1/hash/bcrypt +gopkg.in/hlandau/passlib.v1/hash/bcryptsha256 +gopkg.in/hlandau/passlib.v1/hash/scrypt +gopkg.in/hlandau/passlib.v1/hash/scrypt/raw +gopkg.in/hlandau/passlib.v1/hash/sha2crypt +gopkg.in/hlandau/passlib.v1/hash/sha2crypt/raw +# gopkg.in/yaml.v2 v2.0.0-20170208141851-a3f3340b5840 +## explicit +gopkg.in/yaml.v2 diff --git a/vendor/vendor.json b/vendor/vendor.json deleted file mode 100644 index cba20d6..0000000 --- a/vendor/vendor.json +++ /dev/null @@ -1,217 +0,0 @@ -{ - "comment": "", - "ignore": "test", - "package": [ - { - "path": "appengine", - "revision": "" - }, - { - "path": "appengine/datastore", - "revision": "" - }, - { - "path": "appengine/memcache", - "revision": "" - }, - { - "checksumSHA1": "6xRcrOO03m/jXeopXDvcqL3/Zz0=", - "path": "github.com/GeertJohan/go.rice", - "revision": "4bbccbfa39e784796e483270451217d3369ecfbe", - "revisionTime": "2017-01-23T13:54:25Z" - }, - { - "checksumSHA1": "xECV8VmnSwtMPugLqB1OAXwOs48=", - "path": "github.com/GeertJohan/go.rice/embedded", - "revision": "4bbccbfa39e784796e483270451217d3369ecfbe", - "revisionTime": "2017-01-23T13:54:25Z" - }, - { - "checksumSHA1": "8i+beEgcVf0q/I7lTqo2ERZM/OU=", - "path": "github.com/daaku/go.zipexe", - "revision": "a5fe2436ffcb3236e175e5149162b41cd28bd27d", - "revisionTime": "2015-03-29T02:31:25Z" - }, - { - "checksumSHA1": "0GvcY9P9GSq/aJQEoRB173b4Fbw=", - "path": "github.com/dchest/captcha", - "revision": "9e952142169c3cd6268c6482a3a61c121536aca2", - "revisionTime": "2015-07-28T12:50:59Z" - }, - { - "checksumSHA1": "rhLUtXvcmouYuBwOq9X/nYKzvNg=", - "path": "github.com/dustin/go-humanize", - "revision": "259d2a102b871d17f30e3cd9881a642961a1e486", - "revisionTime": "2017-02-28T07:34:54Z" - }, - { - "checksumSHA1": "6defOlYtxIqheaUEG/cWWouQnIU=", - "path": "github.com/hlandau/passlib", - "revision": "933f1c3f63ffb0d17de04c3174f875ae683a33cd", - "revisionTime": "2016-09-22T11:41:03Z" - }, - { - "checksumSHA1": "jJwSo4r54rSLoIyAXFCtGsJlcfw=", - "path": "github.com/icza/session", - "revision": "81bce62677205deaf9d559f424b7686dc9b9fe0a", - "revisionTime": "2017-02-17T09:53:04Z" - }, - { - "checksumSHA1": "ve4j+BJutjpqooYuYQectRK9zTw=", - "path": "github.com/justinas/nosurf", - "revision": "8e15682772641a1e39c431233e6a9338a32def32", - "revisionTime": "2016-10-04T08:52:51Z" - }, - { - "checksumSHA1": "eWtEV0iBNTL6DRJVqEeniS+thHA=", - "path": "github.com/kardianos/osext", - "revision": "9d302b58e975387d0b4d9be876622c86cefe64be", - "revisionTime": "2017-03-09T17:28:38Z" - }, - { - "checksumSHA1": "r5eQHkttko6kxroDEENXbmXKrSs=", - "path": "github.com/nfnt/resize", - "revision": "891127d8d1b52734debe1b3c3d7e747502b6c366", - "revisionTime": "2016-07-24T20:39:20Z" - }, - { - "checksumSHA1": "BvfT3pAC+s5qn5nEDf0N7lxpBNg=", - "path": "github.com/pressly/chi", - "revision": "57ee7612d4405274628c71d1dc9455a12646f056", - "revisionTime": "2017-02-19T07:36:56Z" - }, - { - "checksumSHA1": "9HdWzw76EiC7Hwn+Y2QgNST1Lqc=", - "path": "github.com/pressly/chi/middleware", - "revision": "57ee7612d4405274628c71d1dc9455a12646f056", - "revisionTime": "2017-02-19T07:36:56Z" - }, - { - "checksumSHA1": "dezZFwteKCEvEN0IkR6XSD6qoJU=", - "path": "github.com/tidwall/btree", - "revision": "9876f1454cf0993a53d74c27196993e345f50dd1", - "revisionTime": "2017-01-13T22:41:14Z" - }, - { - "checksumSHA1": "VGIoT8ekkhBYV4z9n1/iK9MXf7A=", - "path": "github.com/tidwall/buntdb", - "revision": "74dc10171b7549022c818bd212a9ddea151db02e", - "revisionTime": "2016-12-02T16:37:38Z" - }, - { - "checksumSHA1": "k/Xh0p5L7+tBCXAL2dOCwUf9J3Y=", - "path": "github.com/tidwall/gjson", - "revision": "09d1c5c5bc64e094394dfe2150220d906c55ac37", - "revisionTime": "2017-02-05T16:10:42Z" - }, - { - "checksumSHA1": "fB70Sk+JyVkdav2NHeNjG8Z0mkQ=", - "path": "github.com/tidwall/grect", - "revision": "ba9a043346eba55344e40d66a5e74cfda3a9d293", - "revisionTime": "2016-10-06T13:56:19Z" - }, - { - "checksumSHA1": "qmePMXEDYGwkAfT9QvtMC58JN/E=", - "path": "github.com/tidwall/match", - "revision": "173748da739a410c5b0b813b956f89ff94730b4c", - "revisionTime": "2016-08-30T17:39:30Z" - }, - { - "checksumSHA1": "lCeIrhrooBzMXbB/YH32E7I4MSU=", - "path": "github.com/tidwall/rtree", - "revision": "d4a8a3d30d5729f85edfba1745241f3a621d0359", - "revisionTime": "2016-09-03T21:37:29Z" - }, - { - "checksumSHA1": "vE43s37+4CJ2CDU6TlOUOYE0K9c=", - "path": "golang.org/x/crypto/bcrypt", - "revision": "728b753d0135da6801d45a38e6f43ff55779c5c2", - "revisionTime": "2017-01-24T01:46:54Z" - }, - { - "checksumSHA1": "KrDsWIDDeafYKOOv6UEPmtQWWb0=", - "path": "golang.org/x/crypto/blake2b", - "revision": "728b753d0135da6801d45a38e6f43ff55779c5c2", - "revisionTime": "2017-01-24T01:46:54Z" - }, - { - "checksumSHA1": "JsJdKXhz87gWenMwBeejTOeNE7k=", - "path": "golang.org/x/crypto/blowfish", - "revision": "728b753d0135da6801d45a38e6f43ff55779c5c2", - "revisionTime": "2017-01-24T01:46:54Z" - }, - { - "checksumSHA1": "1MGpGDQqnUoRpv7VEcQrXOBydXE=", - "path": "golang.org/x/crypto/pbkdf2", - "revision": "728b753d0135da6801d45a38e6f43ff55779c5c2", - "revisionTime": "2017-01-24T01:46:54Z" - }, - { - "checksumSHA1": "E8pDMGySfy5Mw+jzXOkOxo35bww=", - "path": "golang.org/x/crypto/scrypt", - "revision": "728b753d0135da6801d45a38e6f43ff55779c5c2", - "revisionTime": "2017-01-24T01:46:54Z" - }, - { - "checksumSHA1": "klJ9QeZbE0SGPA1hhLjMwMTONig=", - "path": "gopkg.in/hlandau/easymetric.v1/cexp", - "revision": "1c173222e345c2ba115e0f483821c6da2d3b0fa9", - "revisionTime": "2015-09-23T21:15:05Z" - }, - { - "checksumSHA1": "hBKoXBOEfoSVBsKCrUuB1YoLqNM=", - "path": "gopkg.in/hlandau/measurable.v1", - "revision": "d96a009bd9bda94dd1294105e67e8c1794e533d3", - "revisionTime": "2015-10-29T11:39:54Z" - }, - { - "checksumSHA1": "dLTGi5ic/+/0iXUwlNJACCUegBo=", - "path": "gopkg.in/hlandau/passlib.v1/abstract", - "revision": "933f1c3f63ffb0d17de04c3174f875ae683a33cd", - "revisionTime": "2016-09-22T11:41:03Z" - }, - { - "checksumSHA1": "WIlU/mYXRx+dOE8duG8NYhtJr2o=", - "path": "gopkg.in/hlandau/passlib.v1/hash/bcrypt", - "revision": "933f1c3f63ffb0d17de04c3174f875ae683a33cd", - "revisionTime": "2016-09-22T11:41:03Z" - }, - { - "checksumSHA1": "+KHCKMjQSiGcoBTCK/rNaDUsZjA=", - "path": "gopkg.in/hlandau/passlib.v1/hash/bcryptsha256", - "revision": "933f1c3f63ffb0d17de04c3174f875ae683a33cd", - "revisionTime": "2016-09-22T11:41:03Z" - }, - { - "checksumSHA1": "g9Craq/vfDfd8Mw9eAy6NFjfFz0=", - "path": "gopkg.in/hlandau/passlib.v1/hash/scrypt", - "revision": "933f1c3f63ffb0d17de04c3174f875ae683a33cd", - "revisionTime": "2016-09-22T11:41:03Z" - }, - { - "checksumSHA1": "V4W70BcLKNnb53BTJ49YVmHapHA=", - "path": "gopkg.in/hlandau/passlib.v1/hash/scrypt/raw", - "revision": "933f1c3f63ffb0d17de04c3174f875ae683a33cd", - "revisionTime": "2016-09-22T11:41:03Z" - }, - { - "checksumSHA1": "wbxXrJXpVsXVdLAv+d2zK+4ZZf4=", - "path": "gopkg.in/hlandau/passlib.v1/hash/sha2crypt", - "revision": "933f1c3f63ffb0d17de04c3174f875ae683a33cd", - "revisionTime": "2016-09-22T11:41:03Z" - }, - { - "checksumSHA1": "dn+VC/24lLLgOErHEH8KoUN/Q18=", - "path": "gopkg.in/hlandau/passlib.v1/hash/sha2crypt/raw", - "revision": "933f1c3f63ffb0d17de04c3174f875ae683a33cd", - "revisionTime": "2016-09-22T11:41:03Z" - }, - { - "checksumSHA1": "0KwOlQV1dNUh9X8t+5s7nX5bqfk=", - "path": "gopkg.in/yaml.v2", - "revision": "a3f3340b5840cee44f372bddb5880fcbc419b46a", - "revisionTime": "2017-02-08T14:18:51Z" - } - ], - "rootPath": "go.rls.moe/nyx" -}