diff --git a/Gopkg.lock b/Gopkg.lock deleted file mode 100644 index dcf2e54..0000000 --- a/Gopkg.lock +++ /dev/null @@ -1,45 +0,0 @@ -# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'. - - -[[projects]] - name = "github.com/codegangsta/cli" - packages = ["."] - revision = "cfb38830724cc34fedffe9a2a29fb54fa9169cd1" - version = "v1.20.0" - -[[projects]] - name = "github.com/garyburd/redigo" - packages = ["internal","redis"] - revision = "433969511232c397de61b1442f9fd49ec06ae9ba" - version = "v1.1.0" - -[[projects]] - name = "github.com/gorilla/handlers" - packages = ["."] - revision = "a4043c62cc2329bacda331d33fc908ab11ef0ec3" - version = "v1.2.1" - -[[projects]] - branch = "master" - name = "github.com/hashicorp/golang-lru" - packages = [".","simplelru"] - revision = "0a025b7e63adc15a622f29b0b2c4c3848243bbf6" - -[[projects]] - branch = "master" - name = "github.com/justinas/alice" - packages = ["."] - revision = "1051eaf52fcafdd87ead59d28b065f1fcb8274ec" - -[[projects]] - name = "gopkg.in/throttled/throttled.v2" - packages = [".","store","store/memstore","store/redigostore"] - revision = "b5675e93f9d999b22f92d859a5bf2138d3641af4" - version = "v2.0.3" - -[solve-meta] - analyzer-name = "dep" - analyzer-version = 1 - inputs-digest = "577e9731d3208e9a20eb0d81685d237d74c5dd727f214dafdfb4fe50308cbf02" - solver-name = "gps-cdcl" - solver-version = 1 diff --git a/Gopkg.toml b/Gopkg.toml deleted file mode 100644 index 16aea61..0000000 --- a/Gopkg.toml +++ /dev/null @@ -1,38 +0,0 @@ - -# Gopkg.toml example -# -# Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md -# for detailed Gopkg.toml documentation. -# -# required = ["github.com/user/thing/cmd/thing"] -# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"] -# -# [[constraint]] -# name = "github.com/user/project" -# version = "1.0.0" -# -# [[constraint]] -# name = "github.com/user/project2" -# branch = "dev" -# source = "github.com/myfork/project2" -# -# [[override]] -# name = "github.com/x/y" -# version = "2.4.0" - - -[[constraint]] - name = "github.com/codegangsta/cli" - version = "1.20.0" - -[[constraint]] - name = "github.com/gorilla/handlers" - version = "1.2.1" - -[[constraint]] - branch = "master" - name = "github.com/justinas/alice" - -[[constraint]] - name = "gopkg.in/throttled/throttled.v2" - version = "2.0.3" diff --git a/go.mod b/go.mod index c2ac3dd..8068521 100644 --- a/go.mod +++ b/go.mod @@ -8,16 +8,8 @@ require ( github.com/MDrollette/i2p-tools v0.0.0-20171015191648-e7d4585361c2 github.com/codegangsta/cli v1.22.0 github.com/cretz/bine v0.1.0 - github.com/garyburd/redigo v1.1.0 // indirect - github.com/gomodule/redigo v2.0.0+incompatible // indirect - github.com/gorilla/handlers v1.2.1 - github.com/hashicorp/golang-lru v0.0.0-20160813221303-0a025b7e63ad // indirect - github.com/justinas/alice v0.0.0-20160910103822-1051eaf52fca + github.com/gorilla/handlers v1.4.2 + github.com/justinas/alice v0.0.0-20171023064455-03f45bd4b7da github.com/throttled/throttled v2.2.4+incompatible github.com/urfave/cli v1.22.1 - golang.org/x/crypto v0.0.0-20191029031824-8986dd9e96cf // indirect - golang.org/x/net v0.0.0-20191101175033-0deb6923b6d9 // indirect - gopkg.in/throttled/throttled.v2 v2.0.3 // indirect ) - -replace github.com/codegangsta/cli v1.22.0 => github.com/urfave/cli v1.22.0