diff --git a/Gopkg.lock b/Gopkg.lock index 302e053..adad1a3 100644 --- a/Gopkg.lock +++ b/Gopkg.lock @@ -1,48 +1,72 @@ # This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'. +[[projects]] + digest = "1:0f51cee70b0d254dbc93c22666ea2abf211af81c1701a96d04e2284b408621db" + name = "github.com/konsorten/go-windows-terminal-sequences" + packages = ["."] + pruneopts = "" + revision = "f55edac94c9bbba5d6182a4be46d86a2c9b5b50e" + version = "v1.0.2" + [[projects]] branch = "master" + digest = "1:c186d98ef4526297afabdf84bb02076ea2c78e3b52e88ebdac58325f4f923b8b" name = "github.com/mattn/go-zglob" packages = [ ".", - "fastwalk" + "fastwalk", ] - revision = "4959821b481786922ac53e7ef25c61ae19fb7c36" + pruneopts = "" + revision = "2ea3427bfa539cca900ca2768d8663ecc8a708c1" [[projects]] + digest = "1:463cf5034cda51cdb4ce56d317c1c1343be898c2bb5e576666394d53f4ba28cd" name = "github.com/rifflock/lfshook" packages = ["."] - revision = "bf539943797a1f34c1f502d07de419b5238ae6c6" - version = "v2.3" + pruneopts = "" + revision = "b9218ef580f59a2e72dad1aa33d660150445d05a" + version = "v2.4" [[projects]] + digest = "1:9a3c631555e0351fdc4e696577bb63afd90c399d782a8462dba9d100d7021db3" name = "github.com/sirupsen/logrus" packages = [ ".", - "hooks/syslog" + "hooks/syslog", ] - revision = "c155da19408a8799da419ed3eeb0cb5db0ad5dbc" - version = "v1.0.5" + pruneopts = "" + revision = "e1e72e9de974bd926e5c56f83753fba2df402ce5" + version = "v1.3.0" [[projects]] branch = "master" + digest = "1:f1282b7b8f47533e585be65217b076a5fa31c8b78aa2a3bd353e2bf5dcd8ce2e" name = "golang.org/x/crypto" packages = ["ssh/terminal"] - revision = "beb2a9779c3b677077c41673505f150149fce895" + pruneopts = "" + revision = "c2843e01d9a2bc60bb26ad24e09734fdc2d9ec58" [[projects]] branch = "master" + digest = "1:dd444162b5f02f1fee86207d1c963790e7a5f8d857c1f2665a75332cb1a511f0" name = "golang.org/x/sys" packages = [ "unix", - "windows" + "windows", ] - revision = "3b87a42e500a6dc65dae1a55d0b641295971163e" + pruneopts = "" + revision = "10058d7d4faa7dd5ef860cbd31af00903076e7b8" [solve-meta] analyzer-name = "dep" analyzer-version = 1 - inputs-digest = "1f59ddaed2db7de2b34f8485550888fa1cb625342398af10acb68e5ee227f3f8" + input-imports = [ + "github.com/mattn/go-zglob", + "github.com/rifflock/lfshook", + "github.com/sirupsen/logrus", + "github.com/sirupsen/logrus/hooks/syslog", + "golang.org/x/sys/unix", + ] solver-name = "gps-cdcl" solver-version = 1 diff --git a/Gopkg.toml b/Gopkg.toml index 87d0aea..ffb4385 100644 --- a/Gopkg.toml +++ b/Gopkg.toml @@ -22,11 +22,11 @@ [[constraint]] name = "github.com/sirupsen/logrus" - version = "1.0.5" + version = "1.3.0" [[constraint]] name = "github.com/rifflock/lfshook" - version = "2.3.0" + version = "2.4.0" [[constraint]] branch = "master" diff --git a/Makefile b/Makefile index 3f9c9bc..5ea3c94 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ all: deps browserpass test .PHONY: deps deps: - dep ensure + dep ensure -vendor-only browserpass: *.go **/*.go go build -o $@