diff options
author | Michael Aldridge <aldridge.mac@gmail.com> | 2021-01-10 00:03:17 -0800 |
---|---|---|
committer | raul-te <46945030+raul-te@users.noreply.github.com> | 2021-01-11 12:09:01 -0800 |
commit | 54548c1e857ef55bd37cf0b4bfd66f560bb41997 (patch) | |
tree | 101cf28f854b43c1ad6ab6a42f00c99f876ba880 /Gopkg.lock | |
parent | b709a777f56511e233cd4652e73ec46c7641652b (diff) |
Use Go Modules
Go has made it clear that the official way to manage modules is to use
the built in modules system, and `dep` is painfully slow. This commit
replaces the `dep` control files with the files needed for go modules
and has synced the vendor directory.
Diffstat (limited to 'Gopkg.lock')
-rw-r--r-- | Gopkg.lock | 66 |
1 files changed, 0 insertions, 66 deletions
diff --git a/Gopkg.lock b/Gopkg.lock deleted file mode 100644 index 3f2c757..0000000 --- a/Gopkg.lock +++ /dev/null @@ -1,66 +0,0 @@ -# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'. - - -[[projects]] - name = "github.com/go-kit/kit" - packages = [ - "log", - "log/level" - ] - revision = "ca4112baa34cb55091301bdc13b1420a122b1b9e" - version = "v0.7.0" - -[[projects]] - name = "github.com/go-logfmt/logfmt" - packages = ["."] - revision = "390ab7935ee28ec6b286364bba9b4dd6410cb3d5" - version = "v0.3.0" - -[[projects]] - name = "github.com/go-stack/stack" - packages = ["."] - revision = "259ab82a6cad3992b4e21ff5cac294ccb06474bc" - version = "v1.7.0" - -[[projects]] - name = "github.com/gorilla/context" - packages = ["."] - revision = "1ea25387ff6f684839d82767c1733ff4d4d15d0a" - version = "v1.1" - -[[projects]] - name = "github.com/gorilla/mux" - packages = ["."] - revision = "53c1911da2b537f792e7cafcb446b05ffe33b996" - version = "v1.6.1" - -[[projects]] - branch = "master" - name = "github.com/justinas/alice" - packages = ["."] - revision = "03f45bd4b7dad4734bc4620e46a35789349abb20" - -[[projects]] - branch = "master" - name = "github.com/kr/logfmt" - packages = ["."] - revision = "b84e30acd515aadc4b783ad4ff83aff3299bdfe0" - -[[projects]] - name = "github.com/namsral/flag" - packages = ["."] - revision = "71ceffbeb0ba60fccc853971bb3ed4d7d90bfd04" - version = "v1.7.4-pre" - -[[projects]] - name = "gopkg.in/yaml.v2" - packages = ["."] - revision = "5420a8b6744d3b0345ab293f6fcba19c978f1183" - version = "v2.2.1" - -[solve-meta] - analyzer-name = "dep" - analyzer-version = 1 - inputs-digest = "4dbb51d63f4995423447d6189c3a2b9bd4b8d11647b6b1e16a9dbcfd5b66639d" - solver-name = "gps-cdcl" - solver-version = 1 |