From 3177b250ac5ca2868dd494fbef3cd5111c69b578 Mon Sep 17 00:00:00 2001 From: Jonathan Lorimer Date: Thu, 17 Feb 2022 17:54:25 -0500 Subject: [PATCH 1/9] switch everything to buildGoModule --- checks.nix | 15 +- flake.lock | 70 +- flake.nix | 12 +- resources.nix | 106 +- resources/cosmos-sdk/default.nix | 11 - resources/cosmos-sdk/go-modules.toml | 3610 ---------------- resources/cosmos-sdk/last-synced.narHash | 1 - resources/cosmovisor/default.nix | 7 - resources/cosmovisor/go-modules.toml | 482 --- resources/cosmovisor/last-synced.narHash | 1 - resources/evmos/default.nix | 11 - resources/evmos/go-modules.toml | 4375 ------------------- resources/evmos/last-synced.narHash | 1 - resources/gaia/default.nix | 51 + resources/gaia4/default.nix | 24 - resources/gaia4/go-modules.toml | 2630 ------------ resources/gaia4/last-synced.narHash | 1 - resources/gaia5/default.nix | 24 - resources/gaia5/go-modules.toml | 2953 ------------- resources/gaia5/last-synced.narHash | 1 - resources/gaia6/default.nix | 23 - resources/gaia6/go-modules.toml | 4818 --------------------- resources/gaia6/last-synced.narHash | 1 - resources/goModParser.nix | 130 + resources/hermes/default.nix | 25 - resources/iris/default.nix | 7 - resources/iris/go-modules.toml | 2726 ------------ resources/iris/last-synced.narHash | 1 - resources/juno/default.nix | 25 - resources/juno/go-modules.toml | 3938 ----------------- resources/juno/last-synced.narHash | 1 - resources/osmosis/default.nix | 10 - resources/osmosis/go-modules.toml | 3882 ----------------- resources/osmosis/last-synced.narHash | 1 - resources/regen/default.nix | 28 - resources/regen/go-modules.toml | 4873 --------------------- resources/regen/last-synced.narHash | 1 - resources/relayer/default.nix | 7 - resources/relayer/go-modules.toml | 4987 ---------------------- resources/relayer/last-synced.narHash | 1 - resources/sconfig/default.nix | 6 - resources/sconfig/go-modules.toml | 1327 ------ resources/sconfig/last-synced.narHash | 1 - resources/stoml/default.nix | 6 - resources/stoml/go-modules.toml | 1295 ------ resources/stoml/last-synced.narHash | 1 - resources/thor/default.nix | 8 - resources/thor/go-modules.toml | 4654 -------------------- resources/thor/last-synced.narHash | 1 - sync-go-modules/default.nix | 37 - sync-go-modules/go-source-inputs.nix | 46 - sync-go-modules/sync.hs | 160 - 52 files changed, 270 insertions(+), 47143 deletions(-) delete mode 100644 resources/cosmos-sdk/default.nix delete mode 100644 resources/cosmos-sdk/go-modules.toml delete mode 100644 resources/cosmos-sdk/last-synced.narHash delete mode 100644 resources/cosmovisor/default.nix delete mode 100644 resources/cosmovisor/go-modules.toml delete mode 100644 resources/cosmovisor/last-synced.narHash delete mode 100644 resources/evmos/default.nix delete mode 100644 resources/evmos/go-modules.toml delete mode 100644 resources/evmos/last-synced.narHash create mode 100644 resources/gaia/default.nix delete mode 100644 resources/gaia4/default.nix delete mode 100644 resources/gaia4/go-modules.toml delete mode 100644 resources/gaia4/last-synced.narHash delete mode 100644 resources/gaia5/default.nix delete mode 100644 resources/gaia5/go-modules.toml delete mode 100644 resources/gaia5/last-synced.narHash delete mode 100644 resources/gaia6/default.nix delete mode 100644 resources/gaia6/go-modules.toml delete mode 100644 resources/gaia6/last-synced.narHash create mode 100644 resources/goModParser.nix delete mode 100644 resources/hermes/default.nix delete mode 100644 resources/iris/default.nix delete mode 100644 resources/iris/go-modules.toml delete mode 100644 resources/iris/last-synced.narHash delete mode 100644 resources/juno/default.nix delete mode 100644 resources/juno/go-modules.toml delete mode 100644 resources/juno/last-synced.narHash delete mode 100644 resources/osmosis/default.nix delete mode 100644 resources/osmosis/go-modules.toml delete mode 100644 resources/osmosis/last-synced.narHash delete mode 100644 resources/regen/default.nix delete mode 100644 resources/regen/go-modules.toml delete mode 100644 resources/regen/last-synced.narHash delete mode 100644 resources/relayer/default.nix delete mode 100644 resources/relayer/go-modules.toml delete mode 100644 resources/relayer/last-synced.narHash delete mode 100644 resources/sconfig/default.nix delete mode 100644 resources/sconfig/go-modules.toml delete mode 100644 resources/sconfig/last-synced.narHash delete mode 100644 resources/stoml/default.nix delete mode 100644 resources/stoml/go-modules.toml delete mode 100644 resources/stoml/last-synced.narHash delete mode 100644 resources/thor/default.nix delete mode 100644 resources/thor/go-modules.toml delete mode 100644 resources/thor/last-synced.narHash delete mode 100644 sync-go-modules/default.nix delete mode 100644 sync-go-modules/go-source-inputs.nix delete mode 100755 sync-go-modules/sync.hs diff --git a/checks.nix b/checks.nix index 2fba824f..77751839 100644 --- a/checks.nix +++ b/checks.nix @@ -1,23 +1,10 @@ -{ packages, inputs, pkgs, system }: -let - go-source-inputs = (import ./sync-go-modules/go-source-inputs.nix) { inherit inputs; }; - go-modules-check = (import ./sync-go-modules) { inherit pkgs go-source-inputs; }; -in +{ packages, inputs, system }: { pre-commit-check = inputs.pre-commit-hooks.lib.${system}.run { src = ./.; hooks = { nixpkgs-fmt.enable = true; nix-linter.enable = true; - ormolu.enable = true; - sync-go-modules = { - enable = true; - name = "go-modules-check"; - entry = "${go-modules-check} -l"; - files = "(\\.(lock|narHash)|flake.nix)$"; - language = "system"; - pass_filenames = false; - }; }; }; } // packages # adding packages here ensures that every attr gets built on check diff --git a/flake.lock b/flake.lock index 928d6376..f6db9cb2 100644 --- a/flake.lock +++ b/flake.lock @@ -101,40 +101,20 @@ "gaia6-src": { "flake": false, "locked": { - "lastModified": 1644515770, - "narHash": "sha256-L5CeJfMTaXHpZop7lT9w9mPXnEnSBmeHHjSysZmP1c8=", + "lastModified": 1645118548, + "narHash": "sha256-an1JVPCMcJgQYi+inx4MrAcwYjHTVFvDzw865pJc6C8=", "owner": "cosmos", "repo": "gaia", - "rev": "a31f839063436bdc30e0c6d1986625cbbf630d75", + "rev": "05f3795f196dd32e9233db97ed8742f8559cb483", "type": "github" }, "original": { "owner": "cosmos", - "ref": "v6.0.1", + "ref": "v6.0.2", "repo": "gaia", "type": "github" } }, - "gomod2nix": { - "inputs": { - "nixpkgs": "nixpkgs", - "utils": "utils" - }, - "locked": { - "lastModified": 1640193266, - "narHash": "sha256-J7RhQsfxiv6+W6xrRPagmFB4+Ywa7rY1wrr7e064ml0=", - "owner": "JonathanLorimer", - "repo": "gomod2nix", - "rev": "a318f455732365c586cdabb80daf9e25e054e507", - "type": "github" - }, - "original": { - "owner": "JonathanLorimer", - "ref": "allow-custom-vendors", - "repo": "gomod2nix", - "type": "github" - } - }, "ibc-rs-src": { "flake": false, "locked": { @@ -171,7 +151,7 @@ }, "naersk": { "inputs": { - "nixpkgs": "nixpkgs_2" + "nixpkgs": "nixpkgs" }, "locked": { "lastModified": 1639947939, @@ -188,22 +168,6 @@ } }, "nixpkgs": { - "locked": { - "lastModified": 1625191069, - "narHash": "sha256-M8/UH9pMgQEtuzY9bFwklYw8hx0pOKtUTyQC8E2UTHY=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "d8079260a3028ae3221d7a5467443ee3a9edd2b8", - "type": "github" - }, - "original": { - "owner": "NixOS", - "ref": "nixos-unstable", - "repo": "nixpkgs", - "type": "github" - } - }, - "nixpkgs_2": { "locked": { "lastModified": 1642069818, "narHash": "sha256-666w6j8wl/bojfgpp0k58/UJ5rbrdYFbI2RFT2BXbSQ=", @@ -217,7 +181,7 @@ "type": "indirect" } }, - "nixpkgs_3": { + "nixpkgs_2": { "locked": { "lastModified": 1626852498, "narHash": "sha256-lOXUJvi0FJUXHTVSiC5qsMRtEUgqM4mGZpMESLuGhmo=", @@ -233,7 +197,7 @@ "type": "github" } }, - "nixpkgs_4": { + "nixpkgs_3": { "locked": { "lastModified": 1631315520, "narHash": "sha256-Y8j0JYtZMifrHaWdTfTp1mYVXZ2PLJO/P0XZxMvo7KU=", @@ -269,7 +233,7 @@ "pre-commit-hooks": { "inputs": { "flake-utils": "flake-utils_2", - "nixpkgs": "nixpkgs_4" + "nixpkgs": "nixpkgs_3" }, "locked": { "lastModified": 1624971177, @@ -327,11 +291,10 @@ "gaia4-src": "gaia4-src", "gaia5-src": "gaia5-src", "gaia6-src": "gaia6-src", - "gomod2nix": "gomod2nix", "ibc-rs-src": "ibc-rs-src", "iris-src": "iris-src", "naersk": "naersk", - "nixpkgs": "nixpkgs_3", + "nixpkgs": "nixpkgs_2", "osmosis-src": "osmosis-src", "pre-commit-hooks": "pre-commit-hooks", "regen-src": "regen-src", @@ -389,21 +352,6 @@ "repo": "ts-relayer", "type": "github" } - }, - "utils": { - "locked": { - "lastModified": 1623875721, - "narHash": "sha256-A8BU7bjS5GirpAUv4QA+QnJ4CceLHkcXdRp4xITDB0s=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "f7e004a55b120c02ecb6219596820fcd32ca8772", - "type": "github" - }, - "original": { - "owner": "numtide", - "repo": "flake-utils", - "type": "github" - } } }, "root": "root", diff --git a/flake.nix b/flake.nix index 9f25865c..fd00e8bf 100644 --- a/flake.nix +++ b/flake.nix @@ -10,9 +10,6 @@ # Rust Inputs naersk.url = github:nmattia/naersk; - # Go Inputs - gomod2nix.url = github:JonathanLorimer/gomod2nix/allow-custom-vendors; - # Freshautomations inputs stoml-src.url = github:freshautomations/stoml; stoml-src.flake = false; @@ -32,7 +29,7 @@ # Chain Sources gaia6-src.flake = false; - gaia6-src.url = github:cosmos/gaia/v6.0.1; + gaia6-src.url = github:cosmos/gaia/v6.0.2; gaia5-src.flake = false; gaia5-src.url = github:cosmos/gaia/v5.0.8; @@ -69,10 +66,7 @@ with inputs.flake-utils.lib; eachDefaultSystem (system: let - pkgs = import inputs.nixpkgs { - inherit system; - overlays = [ inputs.gomod2nix.overlay ]; - }; + pkgs = import inputs.nixpkgs { inherit system; }; eval-pkgs = import inputs.nixpkgs { system = "x86_64-linux"; }; resources = (import ./resources.nix) { inherit inputs pkgs eval-pkgs system; }; in @@ -98,7 +92,7 @@ gaia5 = mkApp { name = "gaia"; drv = packages.gaia5; exePath = "/bin/gaiad"; }; gaia6 = mkApp { name = "gaia"; drv = packages.gaia6; exePath = "/bin/gaiad"; }; cosmovisor = mkApp { name = "cosmovisor"; drv = packages.cosmovisor; }; - simd = mkApp { name = "simd"; drv = packages.cosmos-sdk; }; + simd = mkApp { name = "simd"; drv = packages.simd; }; stoml = mkApp { name = "stoml"; drv = packages.stoml; }; sconfig = mkApp { name = "sconfig"; drv = packages.sconfig; }; gm = mkApp { name = "gm"; drv = packages.gm; }; diff --git a/resources.nix b/resources.nix index 43ce6ac6..e0dd12f7 100644 --- a/resources.nix +++ b/resources.nix @@ -8,46 +8,94 @@ # good idea to check the inputs attrset in flake.nix! with inputs; let + cleanSourceWithRegexes = src: regexes: with pkgs.lib; with builtins; cleanSourceWith { + filter = (path: _: + any (r: match r path == null) regexes + ); + inherit src; + }; + # Cosmos packages packages = rec { - stoml = (import ./resources/stoml) { inherit pkgs stoml-src; }; - sconfig = (import ./resources/sconfig) { inherit pkgs sconfig-src; }; - gm = with pkgs; (import ./resources/gm) { - inherit ibc-rs-src shellcheck lib makeWrapper gnused; - stoml = packages.stoml; - sconfig = packages.sconfig; - mkDerivation = stdenv.mkDerivation; + + # Go packages + stoml = pkgs.buildGoModule { + name = "stoml"; + src = stoml-src; + vendorSha256 = "sha256-37PcS7qVQ+IVZddcm+KbUjRjql7KIzynVGKpIHAk5GY="; + }; + sconfig = pkgs.buildGoModule { + name = "sconfig"; + src = sconfig-src; + vendorSha256 = "sha256-ytpye6zEZC4oLrif8xe6Vr99lblule9HiAyZsSisIPg="; + }; + cosmovisor = pkgs.buildGoModule { + name = "cosmovisor"; + src = "${cosmos-sdk-src}/cosmovisor"; + vendorSha256 = "sha256-OAXWrwpartjgSP7oeNvDJ7cTR9lyYVNhEM8HUnv3acE="; + doCheck = false; + }; + simd = pkgs.buildGoModule { + name = "simd"; + src = cleanSourceWithRegexes cosmos-sdk-src [ ".*cosmovisor.*" ]; + vendorSha256 = "sha256-kYoGoNT9W7x8iVjXyMCe72TCeq1RNILw53SmNpv/VXg="; + doCheck = false; + }; + osmosis = pkgs.buildGoModule { + name = "osmosis"; + src = osmosis-src; + vendorSha256 = "sha256-1z9XUOwglbi13w9XK87kQxLl4Hh+OcLZlXfw8QyVGZg="; + preCheck = '' + export HOME="$(mktemp -d)" + ''; + }; + iris = pkgs.buildGoModule { + name = "iris"; + src = iris-src; + vendorSha256 = "sha256-PBbOuSe4GywD2WTgoZZ/1QDXH5BX2UHseXU2vPrJKX8="; }; + regen = pkgs.buildGoModule { + name = "regen"; + subPackages = [ "app/regen" ]; + src = regen-src; + vendorSha256 = "sha256-NH7flr8ExsfNm5JWpTGMmTRmcbhRjk9YYmqOnBRVmQM="; + preCheck = '' + export HOME="$(mktemp -d)" + ''; + }; + evmos = pkgs.buildGoModule { + name = "evmos"; + src = evmos-src; + vendorSha256 = "sha256-c2MJL52achqlTbu87ZUKehnn92Wm6fTU/DIjadCUgH4="; + preCheck = '' + export HOME="$(mktemp -d)" + ''; + }; + relayer = pkgs.buildGoModule { + name = "relayer"; + src = relayer-src; + vendorSha256 = "sha256-AelUjtgI9Oua++5TL/MEAAOgxZVxhOW2vEEhNdH3aBk="; + doCheck = false; + }; + + # Rust resources hermes = naersk.lib."${system}".buildPackage { pname = "ibc-rs"; root = ibc-rs-src; buildInputs = with pkgs; [ rustc cargo pkgconfig ]; nativeBuildInputs = with pkgs; [ openssl ]; }; - cosmovisor = (import ./resources/cosmovisor) { - inherit pkgs; - cosmovisor-src = "${cosmos-sdk-src}/cosmovisor"; + + # Misc + gm = with pkgs; (import ./resources/gm) { + inherit ibc-rs-src shellcheck lib makeWrapper gnused; + stoml = packages.stoml; + sconfig = packages.sconfig; + mkDerivation = stdenv.mkDerivation; }; - cosmos-sdk = (import ./resources/cosmos-sdk) { inherit pkgs cosmos-sdk-src; }; - gaia6 = (import ./resources/gaia6) { inherit gaia6-src pkgs; }; - gaia5 = (import ./resources/gaia5) { inherit gaia5-src pkgs; }; - gaia4 = (import ./resources/gaia4) { inherit gaia4-src pkgs; }; - osmosis = (import ./resources/osmosis) { inherit pkgs osmosis-src; }; - iris = (import ./resources/iris) { inherit iris-src pkgs; }; - regen = (import ./resources/regen) { inherit regen-src pkgs; }; - evmos = (import ./resources/evmos) { inherit evmos-src pkgs; }; ts-relayer = ((import ./resources/ts-relayer) { inherit ts-relayer-src pkgs eval-pkgs; }).ts-relayer; ts-relayer-setup = ((import ./resources/ts-relayer) { inherit ts-relayer-src pkgs eval-pkgs; }).ts-relayer-setup; - relayer = ((import ./resources/relayer) { inherit relayer-src pkgs; }); - # thor = (import ./resources/thor) { inherit pkgs thor-src; }; - # juno = (import ./resources/juno) { inherit juno-src pkgs; }; - }; - - # Script helpers - go-source-inputs = (import ./sync-go-modules/go-source-inputs.nix) { inherit inputs; }; - go-modules-sync = pkgs.writeShellScriptBin "syncGoModules" '' - echo "${go-source-inputs}" | ./sync-go-modules/sync.hs - ''; + } // (import ./resources/gaia { inherit pkgs gaia4-src gaia5-src gaia6-src; }); # Dev shells devShells = { @@ -55,8 +103,6 @@ let pkgs.mkShell { shellHook = self.checks.${system}.pre-commit-check.shellHook; buildInputs = with pkgs; [ - gomod2nix - go-modules-sync rnix-lsp ]; }; diff --git a/resources/cosmos-sdk/default.nix b/resources/cosmos-sdk/default.nix deleted file mode 100644 index f3051ad2..00000000 --- a/resources/cosmos-sdk/default.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ pkgs, cosmos-sdk-src }: -pkgs.buildGoApplication { - name = "cosmos-sdk"; - src = "${cosmos-sdk-src}"; - postConfigure = '' - rm -rf ./cosmovisor - ''; - modules = ./go-modules.toml; - doCheck = false; -} - diff --git a/resources/cosmos-sdk/go-modules.toml b/resources/cosmos-sdk/go-modules.toml deleted file mode 100644 index c238770e..00000000 --- a/resources/cosmos-sdk/go-modules.toml +++ /dev/null @@ -1,3610 +0,0 @@ -["cloud.google.com/go"] - sumVersion = "v0.81.0" - ["cloud.google.com/go".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "a9e5bdc4191b4b9282b3b53c549e89ccd183c9b6" - sha256 = "15jgynqb5pbxqbj3a7ii970yn4srsw1dbxzxnhpkfkmplalpgyh3" - -["cloud.google.com/go/bigquery"] - sumVersion = "v1.8.0" - relPath = "bigquery" - ["cloud.google.com/go/bigquery".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "0aa265f094062dbc111a6906d279fbb88a6cc761" - sha256 = "1127ha4r0xjsfl04mdb134b6kvpc6yz5bx4bba8m1jmb4k3vyg3j" - -["cloud.google.com/go/datastore"] - sumVersion = "v1.1.0" - relPath = "datastore" - ["cloud.google.com/go/datastore".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "d96ccb2ba7586bb79a416471882d347754a78ce5" - sha256 = "18f1l28665x1a8j8a5bh2i7wb2vrwj050d1g5qda50isgqaybixd" - -["cloud.google.com/go/firestore"] - sumVersion = "v1.1.0" - relPath = "firestore" - ["cloud.google.com/go/firestore".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "20091f47d3c522ea545f358dd9ac1cdb326bba6f" - sha256 = "0slvm0vx5f8l2vs4k9k8jv8qnz6z9dzq25xmrhza82cj9j51ghvb" - -["cloud.google.com/go/pubsub"] - sumVersion = "v1.3.1" - relPath = "pubsub" - ["cloud.google.com/go/pubsub".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "f4685751540ab300d8e99946847a75f7d0837e45" - sha256 = "1fxsj63d773yf6mjas5gwsq2caa6iqxmss6mms0yfdcc6krg6zkf" - -["cloud.google.com/go/storage"] - sumVersion = "v1.10.0" - relPath = "storage" - ["cloud.google.com/go/storage".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "3f2988d48e253a8e290b8c0e821284eead1131a0" - sha256 = "10fp6galzz8jwx35159xdcrwsqaz95xw78iwv1z5n67vhglwi5nf" - -["dmitri.shuralyov.com/gpu/mtl"] - sumVersion = "v0.0.0-20190408044501-666a987793e9" - ["dmitri.shuralyov.com/gpu/mtl".fetch] - type = "git" - url = "https://dmitri.shuralyov.com/gpu/mtl" - rev = "666a987793e9432fbb48592aa2f3bf3463685dfa" - sha256 = "1isd03hgiwcf2ld1rlp0plrnfz7r4i7c5q4kb6hkcd22axnmrv0z" - -["filippo.io/edwards25519"] - sumVersion = "v1.0.0-beta.2" - ["filippo.io/edwards25519".fetch] - type = "git" - url = "https://github.com/FiloSottile/edwards25519" - rev = "6944ac7e84c8dffcf51f4e1b0bc2d75a822549e5" - sha256 = "1fv6mssk1r96jbkbb413kxmcf87xz2knyx1bivdam2aa3mhxrim5" - -["github.com/99designs/keyring"] - sumVersion = "v1.1.7-0.20210622111912-ef00f8ac3d76" - vendorPath = "github.com/cosmos/keyring" - ["github.com/99designs/keyring".fetch] - type = "git" - url = "https://github.com/cosmos/keyring" - rev = "ef00f8ac3d762e4e0997a49c16808bb7fe81b661" - sha256 = "1ivw6y46iv1x6r6wqiahzv2c4a9rakkjx8a2drx54y6798hdcvvf" - -["github.com/Azure/azure-pipeline-go"] - sumVersion = "v0.2.2" - ["github.com/Azure/azure-pipeline-go".fetch] - type = "git" - url = "https://github.com/Azure/azure-pipeline-go" - rev = "232aee85e8e3a6223a11c0943f7df2ae0fac00e4" - sha256 = "1agn2nzmm1dkwggm4w7h4bnrav4n5jrl0vqbqy2s49vqlr8zirn6" - -["github.com/Azure/azure-storage-blob-go"] - sumVersion = "v0.7.0" - ["github.com/Azure/azure-storage-blob-go".fetch] - type = "git" - url = "https://github.com/Azure/azure-storage-blob-go" - rev = "3efca72bd11c050222deab57e25ea90df03b9692" - sha256 = "03lxg2v7gjl49cli818g9rnkz6818zvwhw8zm8z16y6cjmj8qmzv" - -["github.com/Azure/go-ansiterm"] - sumVersion = "v0.0.0-20210617225240-d185dfc1b5a1" - ["github.com/Azure/go-ansiterm".fetch] - type = "git" - url = "https://github.com/Azure/go-ansiterm" - rev = "d185dfc1b5a126116ea5a19e148e29d16b4574c9" - sha256 = "1y54b1fx80qlyvv2915xrryb9vcc8nnbsdkxszhxjg8bcg85ps5c" - -["github.com/Azure/go-autorest/autorest"] - sumVersion = "v0.9.0" - relPath = "autorest" - ["github.com/Azure/go-autorest/autorest".fetch] - type = "git" - url = "https://github.com/Azure/go-autorest" - rev = "85d9c035382e5537c3c76e84ca5b82c5f09825e9" - sha256 = "01fg6x3a6as2kh0km8kvjzjalq7xiqa17hnsdwawzlpnfpqgslvq" - -["github.com/Azure/go-autorest/autorest/adal"] - sumVersion = "v0.8.0" - relPath = "autorest/adal" - ["github.com/Azure/go-autorest/autorest/adal".fetch] - type = "git" - url = "https://github.com/Azure/go-autorest" - rev = "740293c019d8314ce3378d456b4327fa646297e6" - sha256 = "1ga12qs31v95010jdn8raw0mf2kvlxhfl8z856y7dn2x3fviv7r4" - -["github.com/Azure/go-autorest/autorest/date"] - sumVersion = "v0.2.0" - relPath = "autorest/date" - ["github.com/Azure/go-autorest/autorest/date".fetch] - type = "git" - url = "https://github.com/Azure/go-autorest" - rev = "5bd9621f41a06b08038be5c0522971a35316d5ef" - sha256 = "0fifmqljld72v0g545qqljmynhjgg8jm0ying35wzni0m7cg6n4y" - -["github.com/Azure/go-autorest/autorest/mocks"] - sumVersion = "v0.3.0" - relPath = "autorest/mocks" - ["github.com/Azure/go-autorest/autorest/mocks".fetch] - type = "git" - url = "https://github.com/Azure/go-autorest" - rev = "5bd9621f41a06b08038be5c0522971a35316d5ef" - sha256 = "0fifmqljld72v0g545qqljmynhjgg8jm0ying35wzni0m7cg6n4y" - -["github.com/Azure/go-autorest/logger"] - sumVersion = "v0.1.0" - relPath = "logger" - ["github.com/Azure/go-autorest/logger".fetch] - type = "git" - url = "https://github.com/Azure/go-autorest" - rev = "4bb4e3c99dd98a53e3d65a6f28aa05e2d435cb24" - sha256 = "1w94wxjjkiv8m44rcdm1af9h0ap2r8kpp9198cxpxj8d5xxkaxpz" - -["github.com/Azure/go-autorest/tracing"] - sumVersion = "v0.5.0" - relPath = "tracing" - ["github.com/Azure/go-autorest/tracing".fetch] - type = "git" - url = "https://github.com/Azure/go-autorest" - rev = "5e7a399d8bbf4953ab0c8e3167d7fd535fd74ce1" - sha256 = "0n482cjr2pk6ql6awcnn6llrnygjzakihbjaahgmylf3znwil7jp" - -["github.com/BurntSushi/toml"] - sumVersion = "v0.3.1" - ["github.com/BurntSushi/toml".fetch] - type = "git" - url = "https://github.com/BurntSushi/toml" - rev = "3012a1dbe2e4bd1391d42b32f0577cb7bbc7f005" - sha256 = "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6" - -["github.com/BurntSushi/xgb"] - sumVersion = "v0.0.0-20160522181843-27f122750802" - ["github.com/BurntSushi/xgb".fetch] - type = "git" - url = "https://github.com/BurntSushi/xgb" - rev = "27f122750802c950b2c869a5b63dafcf590ced95" - sha256 = "18lp2x8f5bljvlz0r7xn744f0c9rywjsb9ifiszqqdcpwhsa0kvj" - -["github.com/ChainSafe/go-schnorrkel"] - sumVersion = "v0.0.0-20200405005733-88cbf1b4c40d" - ["github.com/ChainSafe/go-schnorrkel".fetch] - type = "git" - url = "https://github.com/ChainSafe/go-schnorrkel" - rev = "88cbf1b4c40de64a5ea4863476c6c8ae5433c594" - sha256 = "09ncxdzy4scwmgj96lq83a40bb29nkws1y9x0nim86l9x5jmgi4b" - -["github.com/DataDog/datadog-go"] - sumVersion = "v3.2.0+incompatible" - ["github.com/DataDog/datadog-go".fetch] - type = "git" - url = "https://github.com/DataDog/datadog-go" - rev = "8bfdc335936a79b55b3e2c1080930bc5a3eb57f2" - sha256 = "1m8anll166rwcprjyv3bb0l450p35m0gzn6fs7bcd3ck2s527k7x" - -["github.com/DataDog/zstd"] - sumVersion = "v1.4.5" - ["github.com/DataDog/zstd".fetch] - type = "git" - url = "https://github.com/DataDog/zstd" - rev = "0e71ac6221c995a831bb393da70730c3d3a07091" - sha256 = "0xhgh7nzxq3lzba7w7v3w5mb4nb799v5xh5ylml0hk21ricm7g9s" - -["github.com/Knetic/govaluate"] - sumVersion = "v3.0.1-0.20171022003610-9aa49832a739+incompatible" - ["github.com/Knetic/govaluate".fetch] - type = "git" - url = "https://github.com/Knetic/govaluate" - rev = "9aa49832a739dcd78a5542ff189fb82c3e423116" - sha256 = "12klijhq4fckzbhv0cwygbazj6lvhmdqksha9y6jgfmwzv51kwv5" - -["github.com/Microsoft/go-winio"] - sumVersion = "v0.5.0" - ["github.com/Microsoft/go-winio".fetch] - type = "git" - url = "https://github.com/Microsoft/go-winio" - rev = "58dba89befbca5b5a2c944f84642f5b0540bcfd5" - sha256 = "123p5by5craqigydfqj0hchplcv75zz81xzj5s3ixq624qjbg0z5" - -["github.com/Nvveen/Gotty"] - sumVersion = "v0.0.0-20120604004816-cd527374f1e5" - ["github.com/Nvveen/Gotty".fetch] - type = "git" - url = "https://github.com/Nvveen/Gotty" - rev = "cd527374f1e5bff4938207604a14f2e38a9cf512" - sha256 = "1ylvr1p6p036ns3g3wdz8f92f69symshkc8j54fa6gpg4hyk0k6q" - -["github.com/OneOfOne/xxhash"] - sumVersion = "v1.2.2" - ["github.com/OneOfOne/xxhash".fetch] - type = "git" - url = "https://github.com/OneOfOne/xxhash" - rev = "6def279d2ce6c81a79dd1c1be580f03bb216fb8a" - sha256 = "1mjfhrwhvxa48rycjnqpqzm521i38h1hdyz6pdwmhd7xb8j6gwi6" - -["github.com/Shopify/sarama"] - sumVersion = "v1.19.0" - ["github.com/Shopify/sarama".fetch] - type = "git" - url = "https://github.com/Shopify/sarama" - rev = "ec843464b50d4c8b56403ec9d589cf41ea30e722" - sha256 = "0q1z3pvcd011yprwzws2s293v4cjvsszhai6vnfrahjcbsz79q0z" - -["github.com/Shopify/toxiproxy"] - sumVersion = "v2.1.4+incompatible" - ["github.com/Shopify/toxiproxy".fetch] - type = "git" - url = "https://github.com/Shopify/toxiproxy" - rev = "49b4ea27da29ae83ad3bfe7f7f090d18cbee1dc3" - sha256 = "07yhsvscdv1qjfc2fyyh9qsrrdwrrw04wadk5gaq4qddcway7vig" - -["github.com/StackExchange/wmi"] - sumVersion = "v0.0.0-20180116203802-5d049714c4a6" - ["github.com/StackExchange/wmi".fetch] - type = "git" - url = "https://github.com/StackExchange/wmi" - rev = "5d049714c4a64225c3c79a7cf7d02f7fb5b96338" - sha256 = "1slw6v1fl8i0hz4db9lph55pbhnrxhqyndq6vm27dgvpj22k29fk" - -["github.com/VictoriaMetrics/fastcache"] - sumVersion = "v1.5.7" - ["github.com/VictoriaMetrics/fastcache".fetch] - type = "git" - url = "https://github.com/VictoriaMetrics/fastcache" - rev = "2c7a92dc306a8b0402608403e97ae9c3cb3c2328" - sha256 = "19fsx8ha2kdjbsinlllz70fj96z6xhvn38x8qrmml0abmsf5z60k" - -["github.com/VividCortex/gohistogram"] - sumVersion = "v1.0.0" - ["github.com/VividCortex/gohistogram".fetch] - type = "git" - url = "https://github.com/VividCortex/gohistogram" - rev = "51564d9861991fb0ad0f531c99ef602d0f9866e6" - sha256 = "1ykpvrkri3mzc0z77kdva93ylh0bqg7jq3i024r3iv0i6bwx3rnf" - -["github.com/Workiva/go-datastructures"] - sumVersion = "v1.0.52" - ["github.com/Workiva/go-datastructures".fetch] - type = "git" - url = "https://github.com/Workiva/go-datastructures" - rev = "0819bcaf26091e7c33585441f8961854c2400faa" - sha256 = "0qsj9r3md4n9nxmlvg6cgysivm4ay905ivbk5vi5csnykwnamqmk" - -["github.com/Zilliqa/gozilliqa-sdk"] - sumVersion = "v1.2.1-0.20201201074141-dd0ecada1be6" - ["github.com/Zilliqa/gozilliqa-sdk".fetch] - type = "git" - url = "https://github.com/Zilliqa/gozilliqa-sdk" - rev = "dd0ecada1be6987976b9f3b557dbb4de305ecf5b" - sha256 = "06hzp118gzkbfvmzpwsqd4iky9br99lxgidgs5xnxwhzhli017w1" - -["github.com/adlio/schema"] - sumVersion = "v1.1.13" - ["github.com/adlio/schema".fetch] - type = "git" - url = "https://github.com/adlio/schema" - rev = "158666f4977057e9c8000a43995556d43f18fc8e" - sha256 = "18myq29vi5l3l1yzmpvam29m8lb6pgihs2a3gxpip9m38cz72rsf" - -["github.com/aead/siphash"] - sumVersion = "v1.0.1" - ["github.com/aead/siphash".fetch] - type = "git" - url = "https://github.com/aead/siphash" - rev = "83563a290f60225eb120d724600b9690c3fb536f" - sha256 = "01kd1z82sc4nh3nj9c25aryyp396s7jrqc2kz9d7qq1vy2hdbznc" - -["github.com/afex/hystrix-go"] - sumVersion = "v0.0.0-20180502004556-fa1af6a1f4f5" - ["github.com/afex/hystrix-go".fetch] - type = "git" - url = "https://github.com/afex/hystrix-go" - rev = "fa1af6a1f4f56e0e50d427fe901cd604d8c6fb8a" - sha256 = "0zlj0330j816flvwvis4d4vv1gigpxlghph7awbc9jb7ggf2qssn" - -["github.com/alecthomas/template"] - sumVersion = "v0.0.0-20190718012654-fb15b899a751" - ["github.com/alecthomas/template".fetch] - type = "git" - url = "https://github.com/alecthomas/template" - rev = "fb15b899a75114aa79cc930e33c46b577cc664b1" - sha256 = "1vlasv4dgycydh5wx6jdcvz40zdv90zz1h7836z7lhsi2ymvii26" - -["github.com/alecthomas/units"] - sumVersion = "v0.0.0-20190924025748-f65c72e2690d" - ["github.com/alecthomas/units".fetch] - type = "git" - url = "https://github.com/alecthomas/units" - rev = "f65c72e2690dc4b403c8bd637baf4611cd4c069b" - sha256 = "04jyqm7m3m01ppfy1f9xk4qvrwvs78q9zml6llyf2b3v5k6b2bbc" - -["github.com/allegro/bigcache"] - sumVersion = "v1.2.1-0.20190218064605-e24eb225f156" - ["github.com/allegro/bigcache".fetch] - type = "git" - url = "https://github.com/allegro/bigcache" - rev = "e24eb225f15679bbe54f91bfa7da3b00e59b9768" - sha256 = "1ha36q4km0i1klhpxywkfc8w77ldddl7nvqg0wl0ixy17j20na7m" - -["github.com/antihax/optional"] - sumVersion = "v1.0.0" - ["github.com/antihax/optional".fetch] - type = "git" - url = "https://github.com/antihax/optional" - rev = "c3f0ba9c1a592b971d66b2787679af55b5c58f21" - sha256 = "1ix08vl49qxr58rc6201cl97g1yznhhkwvqldslawind99js4rj0" - -["github.com/apache/thrift"] - sumVersion = "v0.13.0" - ["github.com/apache/thrift".fetch] - type = "git" - url = "https://github.com/apache/thrift" - rev = "cecee50308fc7e6f77f55b3fd906c1c6c471fa2f" - sha256 = "17ckl7p7s3ga33yrjisilsimp80ansqxl54wvpkv0j7vx2zvc13y" - -["github.com/aristanetworks/goarista"] - sumVersion = "v0.0.0-20170210015632-ea17b1a17847" - ["github.com/aristanetworks/goarista".fetch] - type = "git" - url = "https://github.com/aristanetworks/goarista" - rev = "ea17b1a17847fb6e4c0a91de0b674704693469b0" - sha256 = "02q3dhrgcbdx2826vs7gwrnw6yg9kwcyqyhrvnyf5fj5wfdqzdmp" - -["github.com/armon/circbuf"] - sumVersion = "v0.0.0-20150827004946-bbbad097214e" - ["github.com/armon/circbuf".fetch] - type = "git" - url = "https://github.com/armon/circbuf" - rev = "bbbad097214e2918d8543d5201d12bfd7bca254d" - sha256 = "1idpr0lzb2px2p3wgfq2276yl7jpaz43df6n91kf790404s4zmk3" - -["github.com/armon/consul-api"] - sumVersion = "v0.0.0-20180202201655-eb2c6b5be1b6" - ["github.com/armon/consul-api".fetch] - type = "git" - url = "https://github.com/armon/consul-api" - rev = "eb2c6b5be1b66bab83016e0b05f01b8d5496ffbd" - sha256 = "1j6fdr1sg36qy4n4xjl7brq739fpm5npq98cmvklzjc9qrx98nk9" - -["github.com/armon/go-metrics"] - sumVersion = "v0.3.9" - ["github.com/armon/go-metrics".fetch] - type = "git" - url = "https://github.com/armon/go-metrics" - rev = "f792dbc8f4b651df89dc7098fce61ca56a0a2bee" - sha256 = "0sbnzw7sdjcf2l6nsxynpv99m6sza1zyakl82by37sqhn60hj9is" - -["github.com/armon/go-radix"] - sumVersion = "v0.0.0-20180808171621-7fddfc383310" - ["github.com/armon/go-radix".fetch] - type = "git" - url = "https://github.com/armon/go-radix" - rev = "7fddfc383310abc091d79a27f116d30cf0424032" - sha256 = "0y8chspn14n9xpsfb9gxnnf819rfpriaz64v81p7873a42kkhxb4" - -["github.com/aryann/difflib"] - sumVersion = "v0.0.0-20170710044230-e206f873d14a" - ["github.com/aryann/difflib".fetch] - type = "git" - url = "https://github.com/aryann/difflib" - rev = "e206f873d14a916d3d26c40ab667bca123f365a3" - sha256 = "00zb9sx6l6b2zq614x45zlyshl20zjhwfj8r5krw4f9y0mx3n2dm" - -["github.com/aws/aws-lambda-go"] - sumVersion = "v1.13.3" - ["github.com/aws/aws-lambda-go".fetch] - type = "git" - url = "https://github.com/aws/aws-lambda-go" - rev = "b5b7267d297de263cc5b61f8c37543daa9c95ffd" - sha256 = "049zq6gr9xdjjsxd3yimawqlh2ibfkj2434cnjm4x93ph62hppm9" - -["github.com/aws/aws-sdk-go"] - sumVersion = "v1.27.0" - ["github.com/aws/aws-sdk-go".fetch] - type = "git" - url = "https://github.com/aws/aws-sdk-go" - rev = "a1e6946e8014a793d989e64ef5566315010ce898" - sha256 = "1b2lkbvlbgkas1l7cilnanr4mc0z2l28ii5bpsrcp3azn6wdjfpx" - -["github.com/aws/aws-sdk-go-v2"] - sumVersion = "v0.18.0" - ["github.com/aws/aws-sdk-go-v2".fetch] - type = "git" - url = "https://github.com/aws/aws-sdk-go-v2" - rev = "b0e297c21991cec8a5d645714ea400caa790cb43" - sha256 = "00nrd8bs80w5k0ms31gqjpnl2mf0jav4hr8m54w8a7l13w5szy7s" - -["github.com/beorn7/perks"] - sumVersion = "v1.0.1" - ["github.com/beorn7/perks".fetch] - type = "git" - url = "https://github.com/beorn7/perks" - rev = "37c8de3658fcb183f997c4e13e8337516ab753e6" - sha256 = "17n4yygjxa6p499dj3yaqzfww2g7528165cl13haj97hlx94dgl7" - -["github.com/bgentry/speakeasy"] - sumVersion = "v0.1.0" - ["github.com/bgentry/speakeasy".fetch] - type = "git" - url = "https://github.com/bgentry/speakeasy" - rev = "4aabc24848ce5fd31929f7d1e4ea74d3709c14cd" - sha256 = "02dfrj0wyphd3db9zn2mixqxwiz1ivnyc5xc7gkz58l5l27nzp8s" - -["github.com/bits-and-blooms/bitset"] - sumVersion = "v1.2.0" - ["github.com/bits-and-blooms/bitset".fetch] - type = "git" - url = "https://github.com/bits-and-blooms/bitset" - rev = "59de210119f50cedaa42d175dc88b6335fcf63f6" - sha256 = "0r9f7lvz6znl7yr6njg77m8hj472yhdshf1qaybwyw7j8as6c4r3" - -["github.com/bketelsen/crypt"] - sumVersion = "v0.0.4" - ["github.com/bketelsen/crypt".fetch] - type = "git" - url = "https://github.com/bketelsen/crypt" - rev = "3f0829aaee54a3e9eabd45afbf68257a5cf754f7" - sha256 = "0fyfcvy73zskd1p1mv0cn03anxkkr5gvlawsc87znqk60hdypq3v" - -["github.com/btcsuite/btcd"] - sumVersion = "v0.22.0-beta" - ["github.com/btcsuite/btcd".fetch] - type = "git" - url = "https://github.com/btcsuite/btcd" - rev = "63438c6d3661a7dec09013f7731035abdf1eb4bc" - sha256 = "0rcsd3wcs0cii8qq0573h9fi1x92i8c1gzdvifnkm2r0ndl4knla" - -["github.com/btcsuite/btclog"] - sumVersion = "v0.0.0-20170628155309-84c8d2346e9f" - ["github.com/btcsuite/btclog".fetch] - type = "git" - url = "https://github.com/btcsuite/btclog" - rev = "84c8d2346e9fc8c7b947e243b9c24e6df9fd206a" - sha256 = "02dl46wcnfpg9sqvg0ipipkpnd7lrf4fnvb9zy56jqa7mfcwc7wk" - -["github.com/btcsuite/btcutil"] - sumVersion = "v1.0.3-0.20201208143702-a53e38424cce" - ["github.com/btcsuite/btcutil".fetch] - type = "git" - url = "https://github.com/btcsuite/btcutil" - rev = "a53e38424cce1c9de2062b69364efd35fd428d15" - sha256 = "1izjvgi0d5wnknfwdnqa196hn4vj1n5ga7swbhcfsgghk2zngwr4" - -["github.com/btcsuite/go-socks"] - sumVersion = "v0.0.0-20170105172521-4720035b7bfd" - ["github.com/btcsuite/go-socks".fetch] - type = "git" - url = "https://github.com/btcsuite/go-socks" - rev = "4720035b7bfd2a9bb130b1c184f8bbe41b6f0d0f" - sha256 = "18cv2icj059lq4s99p6yh91hlas5f2gi3f1p4c10sjgwrs933d7b" - -["github.com/btcsuite/goleveldb"] - sumVersion = "v1.0.0" - ["github.com/btcsuite/goleveldb".fetch] - type = "git" - url = "https://github.com/btcsuite/goleveldb" - rev = "3fd0373267b6461dbefe91cef614278064d05465" - sha256 = "0kwllw5yflpn362xbsqphbm10qcy08v3zqs15zbyp4mkjjk0bl9z" - -["github.com/btcsuite/snappy-go"] - sumVersion = "v1.0.0" - ["github.com/btcsuite/snappy-go".fetch] - type = "git" - url = "https://github.com/btcsuite/snappy-go" - rev = "b3db38edf0a9a11a115eb6b022d8c946024a9ac0" - sha256 = "0b2536a58l6advb0ag9ywz7i5cdzclvmm3x796jydv1yrbj5x2vk" - -["github.com/btcsuite/websocket"] - sumVersion = "v0.0.0-20150119174127-31079b680792" - ["github.com/btcsuite/websocket".fetch] - type = "git" - url = "https://github.com/btcsuite/websocket" - rev = "31079b6807923eb23992c421b114992b95131b55" - sha256 = "0xpkf257ml6fpfdgv7hxxc41n0d5yxxm3njm50qpzp7j71l9cjwa" - -["github.com/btcsuite/winsvc"] - sumVersion = "v1.0.0" - ["github.com/btcsuite/winsvc".fetch] - type = "git" - url = "https://github.com/btcsuite/winsvc" - rev = "f8fb11f83f7e860e3769a08e6811d1b399a43722" - sha256 = "0nsw8y86a5hzr2a3j6ch9myrpccj5bnsgaxpgajhzfk5d31xlw1z" - -["github.com/casbin/casbin/v2"] - sumVersion = "v2.1.2" - ["github.com/casbin/casbin/v2".fetch] - type = "git" - url = "https://github.com/casbin/casbin" - rev = "31a4cf3e119fdace8f02263315e83ca37a3fcc18" - sha256 = "175y7v4wlr26g23k551676zq3n3cxv8wjm3zsfhyxy3liikg7899" - -["github.com/cenkalti/backoff"] - sumVersion = "v2.2.1+incompatible" - ["github.com/cenkalti/backoff".fetch] - type = "git" - url = "https://github.com/cenkalti/backoff" - rev = "5267b6dd4d2666b980a911bf235efa276222cbe2" - sha256 = "1mf4lsl3rbb8kk42x0mrhzzy4ikqy0jf6nxpzhkr02rdgwh6rjk8" - -["github.com/census-instrumentation/opencensus-proto"] - sumVersion = "v0.2.1" - ["github.com/census-instrumentation/opencensus-proto".fetch] - type = "git" - url = "https://github.com/census-instrumentation/opencensus-proto" - rev = "d89fa54de508111353cb0b06403c00569be780d8" - sha256 = "19fcx3sc99i5dsklny6r073z5j20vlwn2xqm6di1q3b1xwchzqfj" - -["github.com/cespare/cp"] - sumVersion = "v0.1.0" - ["github.com/cespare/cp".fetch] - type = "git" - url = "https://github.com/cespare/cp" - rev = "165db2f241fd235aec29ba6d9b1ccd5f1c14637c" - sha256 = "1x76x985q9av29smybpc3g4az2qjmzqw181vp9z38wpbips31nm9" - -["github.com/cespare/xxhash"] - sumVersion = "v1.1.0" - ["github.com/cespare/xxhash".fetch] - type = "git" - url = "https://github.com/cespare/xxhash" - rev = "569f7c8abf1f58d9043ab804d364483cb1c853b6" - sha256 = "1qyzlcdcayavfazvi03izx83fvip8h36kis44zr2sg7xf6sx6l4x" - -["github.com/cespare/xxhash/v2"] - sumVersion = "v2.1.1" - ["github.com/cespare/xxhash/v2".fetch] - type = "git" - url = "https://github.com/cespare/xxhash" - rev = "d7df74196a9e781ede915320c11c378c1b2f3a1f" - sha256 = "0rl5rs8546zj1vzggv38w93wx0b5dvav7yy5hzxa8kw7iikv1cgr" - -["github.com/checkpoint-restore/go-criu/v5"] - sumVersion = "v5.0.0" - ["github.com/checkpoint-restore/go-criu/v5".fetch] - type = "git" - url = "https://github.com/checkpoint-restore/go-criu" - rev = "885cc36edb02fc5afeed0759885b473c16d249d8" - sha256 = "07dal5a9y43azkkh61jf6s81h7anbl17drkh2mal9mzcsi8wa2z8" - -["github.com/chzyer/logex"] - sumVersion = "v1.1.10" - ["github.com/chzyer/logex".fetch] - type = "git" - url = "https://github.com/chzyer/logex" - rev = "cd112f618178aaaf4ea8592c8839f5276145d9cf" - sha256 = "08pbjj3wx9acavlwyr055isa8a5hnmllgdv5k6ra60l5y1brmlq4" - -["github.com/chzyer/readline"] - sumVersion = "v0.0.0-20180603132655-2972be24d48e" - ["github.com/chzyer/readline".fetch] - type = "git" - url = "https://github.com/chzyer/readline" - rev = "2972be24d48e78746da79ba8e24e8b488c9880de" - sha256 = "104q8dazj8yf6b089jjr82fy9h1g80zyyzvp3g8b44a7d8ngjj6r" - -["github.com/chzyer/test"] - sumVersion = "v0.0.0-20180213035817-a1ea475d72b1" - ["github.com/chzyer/test".fetch] - type = "git" - url = "https://github.com/chzyer/test" - rev = "a1ea475d72b168a29f44221e0ad031a842642302" - sha256 = "0rns2aqk22i9xsgyap0pq8wi4cfaxsri4d9q6xxhhyma8jjsnj2k" - -["github.com/cilium/ebpf"] - sumVersion = "v0.6.2" - ["github.com/cilium/ebpf".fetch] - type = "git" - url = "https://github.com/cilium/ebpf" - rev = "ca492085341e0e917f48ec30704d5054c5d42ca8" - sha256 = "0x64sg0kyc8bbsp75dpv8g2jfmpdldsshf9ni49jh6rgsnnqhpf8" - -["github.com/circonus-labs/circonus-gometrics"] - sumVersion = "v2.3.1+incompatible" - ["github.com/circonus-labs/circonus-gometrics".fetch] - type = "git" - url = "https://github.com/circonus-labs/circonus-gometrics" - rev = "9eb673b3d5f6bf1c932ae7596831eefb0c0c3c2f" - sha256 = "0s2wir711h0k2h8xsypgpzshccnx8jkwjfni7n32l7wd8yng9ngs" - -["github.com/circonus-labs/circonusllhist"] - sumVersion = "v0.1.3" - ["github.com/circonus-labs/circonusllhist".fetch] - type = "git" - url = "https://github.com/circonus-labs/circonusllhist" - rev = "87d4d00b35adeefe4911ece727838749e0fab113" - sha256 = "127js92p5gx84vfj3vdmf7nn6dmqmkrxg927z0jh91fdkipmmv3i" - -["github.com/clbanning/x2j"] - sumVersion = "v0.0.0-20191024224557-825249438eec" - ["github.com/clbanning/x2j".fetch] - type = "git" - url = "https://github.com/clbanning/x2j" - rev = "825249438eec392bc87b980fb635b336e496a888" - sha256 = "1khqy1m22vnyw0x24i4bwd37zvgzj25q139mh79bddj1rw5hf7hy" - -["github.com/cloudflare/cloudflare-go"] - sumVersion = "v0.10.2-0.20190916151808-a80f83b9add9" - ["github.com/cloudflare/cloudflare-go".fetch] - type = "git" - url = "https://github.com/cloudflare/cloudflare-go" - rev = "a80f83b9add9d67ca4098ccbf42cd865ebb36ffb" - sha256 = "07q34xpgw1p091v2mmf64s2lx1gi7wxn7mnzr9182sxa7xp0bj52" - -["github.com/cncf/udpa/go"] - sumVersion = "v0.0.0-20191209042840-269d4d468f6f" - relPath = "go" - ["github.com/cncf/udpa/go".fetch] - type = "git" - url = "https://github.com/cncf/udpa" - rev = "269d4d468f6f798d803d140c3016ed6fc6b735c5" - sha256 = "0i1jiaw2k3hlwwmg4hap81vb4s1p25xp9kdfww37v0fbgjariccs" - -["github.com/cockroachdb/datadriven"] - sumVersion = "v0.0.0-20190809214429-80d97fb3cbaa" - ["github.com/cockroachdb/datadriven".fetch] - type = "git" - url = "https://github.com/cockroachdb/datadriven" - rev = "80d97fb3cbaa752564320702f409fdb2ef3da0ef" - sha256 = "0rvavka9zhri6r50n8fy98247fl5vycb1hffjrhshsicjv1frmlp" - -["github.com/codahale/hdrhistogram"] - sumVersion = "v0.0.0-20161010025455-3a0bb77429bd" - ["github.com/codahale/hdrhistogram".fetch] - type = "git" - url = "https://github.com/codahale/hdrhistogram" - rev = "3a0bb77429bd3a61596f5e8a3172445844342120" - sha256 = "1zampgfjbxy192cbwdi7g86l1idxaam96d834wncnpfdwgh5kl57" - -["github.com/coinbase/rosetta-sdk-go"] - sumVersion = "v0.7.0" - ["github.com/coinbase/rosetta-sdk-go".fetch] - type = "git" - url = "https://github.com/coinbase/rosetta-sdk-go" - rev = "2dd320b300f63a36fb7e8bef5f4c26ffd65b92fc" - sha256 = "0ndrqrvq2mczfx9v9dj2jy6nn8ryjn4clfi1zrh2hf1j4h67c89m" - -["github.com/confio/ics23/go"] - sumVersion = "v0.6.6" - relPath = "go" - ["github.com/confio/ics23/go".fetch] - type = "git" - url = "https://github.com/confio/ics23" - rev = "6cf2f712b5ecccf0a138c29a77b726d57bdaad51" - sha256 = "0r1vk5lvjfri57hd5dk75dfiyzz57qaljshw6sr80aj5v8krzxsn" - -["github.com/containerd/console"] - sumVersion = "v1.0.2" - ["github.com/containerd/console".fetch] - type = "git" - url = "https://github.com/containerd/console" - rev = "2f1e3d2b6afd18e8b2077816c711205a0b4d8769" - sha256 = "0rxwgq578hphs2ldx1gg6c9fq1qm8rgqfx3vgi2sbrsmxn6m2438" - -["github.com/containerd/continuity"] - sumVersion = "v0.0.0-20190827140505-75bee3e2ccb6" - ["github.com/containerd/continuity".fetch] - type = "git" - url = "https://github.com/containerd/continuity" - rev = "75bee3e2ccb6402e3a986ab8bd3b17003fc0fdec" - sha256 = "0p5wgpzyyg4fgh6pcg17drxksmycj7zk9mzwnlg099rqqlfp7q4l" - -["github.com/coreos/bbolt"] - sumVersion = "v1.3.2" - ["github.com/coreos/bbolt".fetch] - type = "git" - url = "https://github.com/coreos/bbolt" - rev = "63597a96ec0ad9e6d43c3fc81e809909e0237461" - sha256 = "13d5l6p6c5wvkr6vn9hkhz9c593qifn7fgx0hg4d6jcvg1y0bnm2" - -["github.com/coreos/etcd"] - sumVersion = "v3.3.13+incompatible" - ["github.com/coreos/etcd".fetch] - type = "git" - url = "https://github.com/coreos/etcd" - rev = "98d308426819d892e149fe45f6fd542464cb1f9d" - sha256 = "1kac4qfr83f2hdz35403f1ald05wc85vvhw79vxb431n61jvyaqy" - -["github.com/coreos/go-etcd"] - sumVersion = "v2.0.0+incompatible" - ["github.com/coreos/go-etcd".fetch] - type = "git" - url = "https://github.com/coreos/go-etcd" - rev = "f02171fbd43c7b9b53ce8679b03235a1ef3c7b12" - sha256 = "1xb34hzaa1lkbq5vkzy9vcz6gqwj7hp6cdbvyack2bf28dwn33jj" - -["github.com/coreos/go-semver"] - sumVersion = "v0.3.0" - ["github.com/coreos/go-semver".fetch] - type = "git" - url = "https://github.com/coreos/go-semver" - rev = "e214231b295a8ea9479f11b70b35d5acf3556d9b" - sha256 = "0770h1mpig2j5sbiha3abnwaw8p6dg9i87r8pc7cf6m4kwml3sc9" - -["github.com/coreos/go-systemd"] - sumVersion = "v0.0.0-20190321100706-95778dfbb74e" - ["github.com/coreos/go-systemd".fetch] - type = "git" - url = "https://github.com/coreos/go-systemd" - rev = "95778dfbb74eb7e4dbaf43bf7d71809650ef8076" - sha256 = "1s3bg9p78wkixn2bqb2p23wbsqfg949ml6crw2b498s71mwh8rcf" - -["github.com/coreos/go-systemd/v22"] - sumVersion = "v22.3.2" - ["github.com/coreos/go-systemd/v22".fetch] - type = "git" - url = "https://github.com/coreos/go-systemd" - rev = "777e73a89cef78631ccaa97f53a9bae67e166186" - sha256 = "1ndi86b8va84ha93njqgafypz4di7yxfd5r5kf1r0s3y3ghcjajq" - -["github.com/coreos/pkg"] - sumVersion = "v0.0.0-20180928190104-399ea9e2e55f" - ["github.com/coreos/pkg".fetch] - type = "git" - url = "https://github.com/coreos/pkg" - rev = "399ea9e2e55f791b6e3d920860dbecb99c3692f0" - sha256 = "0nxbn0m7lr4dg0yrwnvlkfiyg3ndv8vdpssjx7b714nivpc6ar0y" - -["github.com/cosmos/btcutil"] - sumVersion = "v1.0.4" - ["github.com/cosmos/btcutil".fetch] - type = "git" - url = "https://github.com/cosmos/btcutil" - rev = "a68c44d216624107f23b6c8e66704ff4ecee879a" - sha256 = "10x22k92ra1sdddj2pksprfhsm683sldflcnjm8nfz4rjjhjwkay" - -["github.com/cosmos/go-bip39"] - sumVersion = "v1.0.0" - ["github.com/cosmos/go-bip39".fetch] - type = "git" - url = "https://github.com/cosmos/go-bip39" - rev = "3027fe585f89a39da9b7389bd4e3482e056f6d3f" - sha256 = "0q063bsalxffq41l3f6xlr50xa2985liw6y5niiwnjysdc5rlva2" - -["github.com/cosmos/iavl"] - sumVersion = "v0.17.3" - ["github.com/cosmos/iavl".fetch] - type = "git" - url = "https://github.com/cosmos/iavl" - rev = "d99448032e95a6ce05d342737cd745a20ef0b6ce" - sha256 = "115964xzwlr8j0l8f5x0v31f5hnxhd0rh5cvgy560l0dd77i735k" - -["github.com/cosmos/ledger-cosmos-go"] - sumVersion = "v0.11.1" - ["github.com/cosmos/ledger-cosmos-go".fetch] - type = "git" - url = "https://github.com/cosmos/ledger-cosmos-go" - rev = "c03f491cbf1740e5ec7919683019c2c84d9fbc10" - sha256 = "0c584nig16mz1i5w1pp741q1ymb1ln70kvxkv3l62rkdymbbwn6a" - -["github.com/cosmos/ledger-go"] - sumVersion = "v0.9.2" - ["github.com/cosmos/ledger-go".fetch] - type = "git" - url = "https://github.com/cosmos/ledger-go" - rev = "1c99b41f1877b58e3517ef93012cc76fe5cd335b" - sha256 = "10vnj13c8diq3bxvf2m46s8ifj4fj1iwsw5hg7i1h55h1v83x0ni" - -["github.com/cpuguy83/go-md2man"] - sumVersion = "v1.0.10" - ["github.com/cpuguy83/go-md2man".fetch] - type = "git" - url = "https://github.com/cpuguy83/go-md2man" - rev = "7762f7e404f8416dfa1d9bb6a8c192aa9acb4d19" - sha256 = "1bqkf2bvy1dns9zd24k81mh2p1zxsx2nhq5cj8dz2vgkv1xkh60i" - -["github.com/cpuguy83/go-md2man/v2"] - sumVersion = "v2.0.0" - ["github.com/cpuguy83/go-md2man/v2".fetch] - type = "git" - url = "https://github.com/cpuguy83/go-md2man" - rev = "f79a8a8ca69da163eee19ab442bedad7a35bba5a" - sha256 = "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv" - -["github.com/creack/pty"] - sumVersion = "v1.1.9" - ["github.com/creack/pty".fetch] - type = "git" - url = "https://github.com/creack/pty" - rev = "3a6a957789163cacdfe0e291617a1c8e80612c11" - sha256 = "1v52599qq76dwq742mffakzj6mxqqccv2szn3hjicjld56nmd2d3" - -["github.com/cyphar/filepath-securejoin"] - sumVersion = "v0.2.2" - ["github.com/cyphar/filepath-securejoin".fetch] - type = "git" - url = "https://github.com/cyphar/filepath-securejoin" - rev = "a261ee33d7a517f054effbf451841abaafe3e0fd" - sha256 = "0id32zjb92wm569m29nfrzz5mw9z1glr3klayr6j134pp4h1sgq4" - -["github.com/danieljoos/wincred"] - sumVersion = "v1.0.2" - ["github.com/danieljoos/wincred".fetch] - type = "git" - url = "https://github.com/danieljoos/wincred" - rev = "b892d337201d1400370ebf4fa919941c9ea222ee" - sha256 = "1ym8mygjrf3rw1qka9irw76b2yisr2l5pq2w581s40yldnbfq4lc" - -["github.com/davecgh/go-spew"] - sumVersion = "v1.1.1" - ["github.com/davecgh/go-spew".fetch] - type = "git" - url = "https://github.com/davecgh/go-spew" - rev = "8991bc29aa16c548c550c7ff78260e27b9ab7c73" - sha256 = "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y" - -["github.com/deckarep/golang-set"] - sumVersion = "v0.0.0-20180603214616-504e848d77ea" - ["github.com/deckarep/golang-set".fetch] - type = "git" - url = "https://github.com/deckarep/golang-set" - rev = "504e848d77ea4752b3057b8fb46da0e7f746ccf3" - sha256 = "0n0dgz82vvwpxh2fp3d9ciawzrwv0w3hsnkk4y7z64pxp27r4k7n" - -["github.com/decred/dcrd/lru"] - sumVersion = "v1.0.0" - relPath = "lru" - ["github.com/decred/dcrd/lru".fetch] - type = "git" - url = "https://github.com/decred/dcrd" - rev = "5c3e0d6454001c8d14fcf06be94381d93991aaea" - sha256 = "0m2mxrkbnr4dfan9ljxq9dd5hhqmpx5n9pd4hnwn5mlj4zgv018a" - -["github.com/desertbit/timer"] - sumVersion = "v0.0.0-20180107155436-c41aec40b27f" - ["github.com/desertbit/timer".fetch] - type = "git" - url = "https://github.com/desertbit/timer" - rev = "c41aec40b27f0eeb2b94300fffcd624c69b02990" - sha256 = "1jsy04ga79xbdfn0xqzs7q8gyh2sz9jpfqdsb210m6188yscxck9" - -["github.com/dgraph-io/badger/v2"] - sumVersion = "v2.2007.2" - ["github.com/dgraph-io/badger/v2".fetch] - type = "git" - url = "https://github.com/dgraph-io/badger" - rev = "d5a25b83fbf4f3f61ff03a9202e36f5b75544426" - sha256 = "0cck8ap61bi56dv070cirkkl6fjavz05kwyxjv08lbfykhlpz3da" - -["github.com/dgraph-io/ristretto"] - sumVersion = "v0.0.3" - ["github.com/dgraph-io/ristretto".fetch] - type = "git" - url = "https://github.com/dgraph-io/ristretto" - rev = "bcb54d096f2303ce80960e125b5991ac4d6325c3" - sha256 = "1v29j6b0r87pf5dwsxi3rxa8yavkl3h79i63rbddfd42p2jyssyg" - -["github.com/dgrijalva/jwt-go"] - sumVersion = "v3.2.0+incompatible" - ["github.com/dgrijalva/jwt-go".fetch] - type = "git" - url = "https://github.com/dgrijalva/jwt-go" - rev = "06ea1031745cb8b3dab3f6a236daf2b0aa468b7e" - sha256 = "08m27vlms74pfy5z79w67f9lk9zkx6a9jd68k3c4msxy75ry36mp" - -["github.com/dgryski/go-farm"] - sumVersion = "v0.0.0-20200201041132-a6ae2369ad13" - ["github.com/dgryski/go-farm".fetch] - type = "git" - url = "https://github.com/dgryski/go-farm" - rev = "a6ae2369ad13dc757768086f0cb902728c7e03e5" - sha256 = "1qbz4a4fv3853ix974x02q1129kc4xxf0c92ib5sdpsq04zjbqv8" - -["github.com/dgryski/go-sip13"] - sumVersion = "v0.0.0-20181026042036-e10d5fee7954" - ["github.com/dgryski/go-sip13".fetch] - type = "git" - url = "https://github.com/dgryski/go-sip13" - rev = "e10d5fee79544bd84105c9329adcc7b745fd588c" - sha256 = "15fyibfas209ljz3f7g07kdmfbl3hhyd9n5n7aq5n5p9m5mn41d6" - -["github.com/dlclark/regexp2"] - sumVersion = "v1.2.0" - ["github.com/dlclark/regexp2".fetch] - type = "git" - url = "https://github.com/dlclark/regexp2" - rev = "92c702aa5812963ef9193a9624191932d44073d7" - sha256 = "011l1prsywvhhi0yc7qmpsca1cwavmawyyld5kjzi0ff9ghvj4ng" - -["github.com/docker/docker"] - sumVersion = "v1.4.2-0.20180625184442-8e610b2b55bf" - ["github.com/docker/docker".fetch] - type = "git" - url = "https://github.com/docker/docker" - rev = "8e610b2b55bfd1bfa9436ab110d311f5e8a74dcb" - sha256 = "00d27aj6c2vi9q0djy9pqk3h8fqp066vffqckil43qq1c5b83c1j" - -["github.com/docker/go-connections"] - sumVersion = "v0.4.0" - ["github.com/docker/go-connections".fetch] - type = "git" - url = "https://github.com/docker/go-connections" - rev = "7395e3f8aa162843a74ed6d48e79627d9792ac55" - sha256 = "0mv6f6b5nljc17dmwmc28hc0y11pqglz7x0d2mjrwdmfxf64hwqq" - -["github.com/docker/go-units"] - sumVersion = "v0.4.0" - ["github.com/docker/go-units".fetch] - type = "git" - url = "https://github.com/docker/go-units" - rev = "519db1ee28dcc9fd2474ae59fca29a810482bfb1" - sha256 = "0k8gja8ql4pqg5rzmqvka42vjfs6rzablak87whcnqba6qxpimvz" - -["github.com/dop251/goja"] - sumVersion = "v0.0.0-20200721192441-a695b0cdd498" - ["github.com/dop251/goja".fetch] - type = "git" - url = "https://github.com/dop251/goja" - rev = "a695b0cdd4987b22f979a6f4d4ea30689058441a" - sha256 = "1s9358a30gmmbizvavd977n1zyla46bpxb2ymmr6qmmixw8ry4zv" - -["github.com/dustin/go-humanize"] - sumVersion = "v1.0.0" - ["github.com/dustin/go-humanize".fetch] - type = "git" - url = "https://github.com/dustin/go-humanize" - rev = "9f541cc9db5d55bce703bd99987c9d5cb8eea45e" - sha256 = "1kqf1kavdyvjk7f8kx62pnm7fbypn9z1vbf8v2qdh3y7z7a0cbl3" - -["github.com/dvsekhvalnov/jose2go"] - sumVersion = "v0.0.0-20200901110807-248326c1351b" - ["github.com/dvsekhvalnov/jose2go".fetch] - type = "git" - url = "https://github.com/dvsekhvalnov/jose2go" - rev = "248326c1351b716b2820b01a49d53837bfd9ac59" - sha256 = "06zj4n96pa5lnx8pxjhn3vis01fjklhsdqbcbqdv9m4kc7qip27s" - -["github.com/dvyukov/go-fuzz"] - sumVersion = "v0.0.0-20200318091601-be3528f3a813" - ["github.com/dvyukov/go-fuzz".fetch] - type = "git" - url = "https://github.com/dvyukov/go-fuzz" - rev = "be3528f3a81351d8a438aed216130e1e7da39f7c" - sha256 = "1sxl62r8c13p4sm60c77mzcn6dlxbbk6c2nmic6j8z55dx4nlg1a" - -["github.com/eapache/go-resiliency"] - sumVersion = "v1.1.0" - ["github.com/eapache/go-resiliency".fetch] - type = "git" - url = "https://github.com/eapache/go-resiliency" - rev = "ea41b0fad31007accc7f806884dcdf3da98b79ce" - sha256 = "1zmgw3c4w5r6m2r340n4jc5l5ll3m3nbszqrmrgbqc2xixxyk2gx" - -["github.com/eapache/go-xerial-snappy"] - sumVersion = "v0.0.0-20180814174437-776d5712da21" - ["github.com/eapache/go-xerial-snappy".fetch] - type = "git" - url = "https://github.com/eapache/go-xerial-snappy" - rev = "776d5712da21bc4762676d614db1d8a64f4238b0" - sha256 = "0ncc41dv7xwb1znyzmzh7cvs6j5fzz0f1n8h1v3grl9ma6s1si9d" - -["github.com/eapache/queue"] - sumVersion = "v1.1.0" - ["github.com/eapache/queue".fetch] - type = "git" - url = "https://github.com/eapache/queue" - rev = "44cc805cf13205b55f69e14bcb69867d1ae92f98" - sha256 = "07dp54n94gn3gsvdcki56yqh7py7wqqigxbamhxwgbr05n61fqyg" - -["github.com/edsrzf/mmap-go"] - sumVersion = "v1.0.0" - ["github.com/edsrzf/mmap-go".fetch] - type = "git" - url = "https://github.com/edsrzf/mmap-go" - rev = "188cc3b666ba704534fa4f96e9e61f21f1e1ba7c" - sha256 = "0ajmkk5cj6xmbngx3nhar7672i2vrkwpnbv1f26i5p4f5aydhl4k" - -["github.com/envoyproxy/go-control-plane"] - sumVersion = "v0.9.4" - ["github.com/envoyproxy/go-control-plane".fetch] - type = "git" - url = "https://github.com/envoyproxy/go-control-plane" - rev = "ba8e577f987f6676343cac84525b92ed1b2d86fe" - sha256 = "0m0crzx70lp7vz13v20wxb1fcfdnzp7h3mkh3bn6a8mbfz6w5asj" - -["github.com/envoyproxy/protoc-gen-validate"] - sumVersion = "v0.1.0" - ["github.com/envoyproxy/protoc-gen-validate".fetch] - type = "git" - url = "https://github.com/envoyproxy/protoc-gen-validate" - rev = "9eff07ddfcb4001aa1aab280648153f46e1a8ddc" - sha256 = "0kxd3wwh3xwqk0r684hsy281xq4y71cd11d4q2hspcjbnlbwh7cy" - -["github.com/ethereum/go-ethereum"] - sumVersion = "v1.9.25" - ["github.com/ethereum/go-ethereum".fetch] - type = "git" - url = "https://github.com/ethereum/go-ethereum" - rev = "e7872729012a4871397307b12cc3f4772ffcbec6" - sha256 = "1gilb29gcjw8x3s9krbq9cf6kzvq5cvkad4wc20g91a3i2hd7daf" - -["github.com/facebookgo/ensure"] - sumVersion = "v0.0.0-20160127193407-b4ab57deab51" - ["github.com/facebookgo/ensure".fetch] - type = "git" - url = "https://github.com/facebookgo/ensure" - rev = "b4ab57deab51ee655ae4bd85281f0715a068016d" - sha256 = "19icavc3sg0mdz8151q3vp2vn3ipq53mnb9h9n57w32amyyszl4d" - -["github.com/facebookgo/stack"] - sumVersion = "v0.0.0-20160209184415-751773369052" - ["github.com/facebookgo/stack".fetch] - type = "git" - url = "https://github.com/facebookgo/stack" - rev = "751773369052141c013c6e827a71e8f35c07879c" - sha256 = "07yr05mz7h007ldpij90zjflwgixp148sbyrdlh1fj5bikr4p8m3" - -["github.com/facebookgo/subset"] - sumVersion = "v0.0.0-20150612182917-8dac2c3c4870" - ["github.com/facebookgo/subset".fetch] - type = "git" - url = "https://github.com/facebookgo/subset" - rev = "8dac2c3c48703541e481feddf22975953d4ff842" - sha256 = "0kyc2m5wxjzj4fwspybgn1mgjzhbdfnadpwy9mrw1s05bh21rgai" - -["github.com/fatih/color"] - sumVersion = "v1.10.0" - ["github.com/fatih/color".fetch] - type = "git" - url = "https://github.com/fatih/color" - rev = "bc2269661d49c6c9d0e514eef49710556883f3fa" - sha256 = "1azg1r8ifnr1pk5lvqkpcssqb7s7hs0zym1fmg0k67p842bvm2n8" - -["github.com/felixge/httpsnoop"] - sumVersion = "v1.0.1" - ["github.com/felixge/httpsnoop".fetch] - type = "git" - url = "https://github.com/felixge/httpsnoop" - rev = "33ec42cfe005395fb4cc4b296781f65d7ffef2c3" - sha256 = "0ncd8lar5zxiwjhsp315s4hsl4bhnm271h49jhyxc66r5yffgmac" - -["github.com/fjl/memsize"] - sumVersion = "v0.0.0-20180418122429-ca190fb6ffbc" - ["github.com/fjl/memsize".fetch] - type = "git" - url = "https://github.com/fjl/memsize" - rev = "ca190fb6ffbc076ff49197b7168a760f30182d2e" - sha256 = "02vz4mfsajpsjk9nwrb6djs5zd9f70iqxf6z3x7h7kq5lqc2wfjc" - -["github.com/fortytw2/leaktest"] - sumVersion = "v1.3.0" - ["github.com/fortytw2/leaktest".fetch] - type = "git" - url = "https://github.com/fortytw2/leaktest" - rev = "9a23578d06a26ec1b47bfc8965bf5e7011df8bd6" - sha256 = "0487zghyxqzk6zdbhd2j074pcc2l15l4sfg5clrjqwfbql7519wx" - -["github.com/franela/goblin"] - sumVersion = "v0.0.0-20200105215937-c9ffbefa60db" - ["github.com/franela/goblin".fetch] - type = "git" - url = "https://github.com/franela/goblin" - rev = "c9ffbefa60dbcc40777294734ec3664f35a8c838" - sha256 = "0qdhg6i4bcf6inmzq2dbdv0r0c7clw1vd3n2zs4896ig0aws6vff" - -["github.com/franela/goreq"] - sumVersion = "v0.0.0-20171204163338-bcd34c9993f8" - ["github.com/franela/goreq".fetch] - type = "git" - url = "https://github.com/franela/goreq" - rev = "bcd34c9993f899273c74baaa95e15386cd97b6e7" - sha256 = "055a20nc5f1blk2swiwpwqpxd3z495ms1qr6a7cbbss1w3a7a7sb" - -["github.com/frankban/quicktest"] - sumVersion = "v1.11.3" - ["github.com/frankban/quicktest".fetch] - type = "git" - url = "https://github.com/frankban/quicktest" - rev = "e7d1f0b53af1e9c9cf66924bc310190b1db8c339" - sha256 = "0d5njmwkfq2809vlimnlvy8ir6kln0c4cgdwr680fwsclpbr43qs" - -["github.com/fsnotify/fsnotify"] - sumVersion = "v1.4.9" - ["github.com/fsnotify/fsnotify".fetch] - type = "git" - url = "https://github.com/fsnotify/fsnotify" - rev = "45d7d09e39ef4ac08d493309fa031790c15bfe8a" - sha256 = "1i1r72knpbfwwql9frn9bqc3nhfc2ai5m6qllcyr6wban62lr40x" - -["github.com/gballet/go-libpcsclite"] - sumVersion = "v0.0.0-20190607065134-2772fd86a8ff" - ["github.com/gballet/go-libpcsclite".fetch] - type = "git" - url = "https://github.com/gballet/go-libpcsclite" - rev = "2772fd86a8ff4306d2749f610a386bfee9e0d727" - sha256 = "1j7389jcjdsb73c30cial688m3r2wypspn8zhy5mvm3c9xqnigin" - -["github.com/ghodss/yaml"] - sumVersion = "v1.0.0" - ["github.com/ghodss/yaml".fetch] - type = "git" - url = "https://github.com/ghodss/yaml" - rev = "0ca9ea5df5451ffdf184b4428c902747c2c11cd7" - sha256 = "0skwmimpy7hlh7pva2slpcplnm912rp3igs98xnqmn859kwa5v8g" - -["github.com/gin-contrib/sse"] - sumVersion = "v0.1.0" - ["github.com/gin-contrib/sse".fetch] - type = "git" - url = "https://github.com/gin-contrib/sse" - rev = "54d8467d122d380a14768b6b4e5cd7ca4755938f" - sha256 = "072nq91a65n5xvwslqjyvydfd0mfpnvb3vwjyfvmzm1ym96wr1nd" - -["github.com/gin-gonic/gin"] - sumVersion = "v1.7.0" - ["github.com/gin-gonic/gin".fetch] - type = "git" - url = "https://github.com/gin-gonic/gin" - rev = "d496f64540b6707602de50ab57aeea8ff4080b74" - sha256 = "0zjygwmd6718rar3rwi947b6gh53jp0mv115m336i4b1bknmajcq" - -["github.com/go-gl/glfw"] - sumVersion = "v0.0.0-20190409004039-e6da0acd62b1" - ["github.com/go-gl/glfw".fetch] - type = "git" - url = "https://github.com/go-gl/glfw" - rev = "e6da0acd62b1b57ee2799d4d0a76a7d4514dc5bc" - sha256 = "0prvx5r7q8yrhqvnwibv4xz3dayjbq36yajzqvh0z4lqsh4hyhch" - -["github.com/go-gl/glfw/v3.3/glfw"] - sumVersion = "v0.0.0-20200222043503-6f7a984d4dc4" - relPath = "v3.3/glfw" - ["github.com/go-gl/glfw/v3.3/glfw".fetch] - type = "git" - url = "https://github.com/go-gl/glfw" - rev = "6f7a984d4dc470c3f197229ad1991ae9e211bba2" - sha256 = "1nyv7h08qf4dp8w9pmcnrc6vv9bkwj8fil6pz0mkbss5hf4i8xcq" - -["github.com/go-kit/kit"] - sumVersion = "v0.10.0" - ["github.com/go-kit/kit".fetch] - type = "git" - url = "https://github.com/go-kit/kit" - rev = "cc938d52e0cdf4c811ab203f428fcd06f9d9a148" - sha256 = "1cqlrjf90b5pg6sj4nh0qz5wplnsjmcdgrvs6wfdjy5p71f17msa" - -["github.com/go-kit/log"] - sumVersion = "v0.1.0" - ["github.com/go-kit/log".fetch] - type = "git" - url = "https://github.com/go-kit/log" - rev = "63376a29a92260f7b256eedf2fae39e28161114d" - sha256 = "1giv2pdswp02zk82rqfda2qpazqs4z5agnnfxxasghlsiry170r1" - -["github.com/go-logfmt/logfmt"] - sumVersion = "v0.5.0" - ["github.com/go-logfmt/logfmt".fetch] - type = "git" - url = "https://github.com/go-logfmt/logfmt" - rev = "3be5f6aae7db841d31dc5e1b3bb7b4cff19200b3" - sha256 = "0mcvgimnf6a15hhpmmv42kzbsn618f0zi2j3np49xkq1113d7yyj" - -["github.com/go-ole/go-ole"] - sumVersion = "v1.2.1" - ["github.com/go-ole/go-ole".fetch] - type = "git" - url = "https://github.com/go-ole/go-ole" - rev = "a41e3c4b706f6ae8dfbff342b06e40fa4d2d0506" - sha256 = "114h8x7dh4jp7w7k678fm98lr9icavsf74v6jfipyq7q35bsfr1p" - -["github.com/go-playground/assert/v2"] - sumVersion = "v2.0.1" - ["github.com/go-playground/assert/v2".fetch] - type = "git" - url = "https://github.com/go-playground/assert" - rev = "8eb943fbae8448cf47383208d8d0c396e26011a9" - sha256 = "1cl9c4s405zddzrj36hhs0a18g02zscdl46fyipp6k91mhvai8wz" - -["github.com/go-playground/locales"] - sumVersion = "v0.13.0" - ["github.com/go-playground/locales".fetch] - type = "git" - url = "https://github.com/go-playground/locales" - rev = "9f105231d3a5f6877a2bf8321dfa15ea6f844b1b" - sha256 = "0qydcpkvss3mf8mk3xzg6a34n8i69aydrigcl2apifrkx72jw7pf" - -["github.com/go-playground/universal-translator"] - sumVersion = "v0.17.0" - ["github.com/go-playground/universal-translator".fetch] - type = "git" - url = "https://github.com/go-playground/universal-translator" - rev = "f87b1403479a348651dbf5f07f5cc6e5fcf07008" - sha256 = "1zdiaisb32iv4x93cpbqrgx8ll7sxh4hcd2iibpswy4bwvjbjlz6" - -["github.com/go-playground/validator/v10"] - sumVersion = "v10.4.1" - ["github.com/go-playground/validator/v10".fetch] - type = "git" - url = "https://github.com/go-playground/validator" - rev = "456221b630452990f72c0f13179e5f2ae728a723" - sha256 = "0p4gs2wqa0wzdblhykk0pxrxmvl347hnjd5ws4nfh7bzn4kdnp11" - -["github.com/go-sourcemap/sourcemap"] - sumVersion = "v2.1.2+incompatible" - ["github.com/go-sourcemap/sourcemap".fetch] - type = "git" - url = "https://github.com/go-sourcemap/sourcemap" - rev = "b019cc30c1eaa584753491b0d8f8c1534bf1eb44" - sha256 = "03k44fdrnknba05f7cd58lq4rzk7jdpiqksmc0wxrdzwschrbgw8" - -["github.com/go-sql-driver/mysql"] - sumVersion = "v1.4.0" - ["github.com/go-sql-driver/mysql".fetch] - type = "git" - url = "https://github.com/go-sql-driver/mysql" - rev = "d523deb1b23d913de5bdada721a6071e71283618" - sha256 = "1jwz2j3vd5hlzmnkh20d4276yd8cxy7pac3x3dfi52jkm82ms99n" - -["github.com/go-stack/stack"] - sumVersion = "v1.8.0" - ["github.com/go-stack/stack".fetch] - type = "git" - url = "https://github.com/go-stack/stack" - rev = "2fee6af1a9795aafbe0253a0cfbdf668e1fb8a9a" - sha256 = "0wk25751ryyvxclyp8jdk5c3ar0cmfr8lrjb66qbg4808x66b96v" - -["github.com/go-task/slim-sprig"] - sumVersion = "v0.0.0-20210107165309-348f09dbbbc0" - ["github.com/go-task/slim-sprig".fetch] - type = "git" - url = "https://github.com/go-task/slim-sprig" - rev = "348f09dbbbc0ff8b922a311da7a90cd014b69aa3" - sha256 = "16i1w4sm1h8wd132gdaq1z0asj9nc36zs8b3q9jy5kcbjzidl34f" - -["github.com/gobwas/httphead"] - sumVersion = "v0.0.0-20180130184737-2c6c146eadee" - ["github.com/gobwas/httphead".fetch] - type = "git" - url = "https://github.com/gobwas/httphead" - rev = "2c6c146eadee0b69f856f87e3e9f1d0cd6aad2f5" - sha256 = "0j7nlrf79cafl8ap69ri2c7v3psr2y133cr2wn735z7yn3dz3kss" - -["github.com/gobwas/pool"] - sumVersion = "v0.2.0" - ["github.com/gobwas/pool".fetch] - type = "git" - url = "https://github.com/gobwas/pool" - rev = "fa3125c39d7eca32e1387bb69b1b38dcb31b1e0b" - sha256 = "1avpa8c75j1y4hs7awazrjjy7w0pjfw80l424ddn5zyizvh7s67i" - -["github.com/gobwas/ws"] - sumVersion = "v1.0.2" - ["github.com/gobwas/ws".fetch] - type = "git" - url = "https://github.com/gobwas/ws" - rev = "05baaea2bbcfe8963301c62d9931c882d59595cd" - sha256 = "070mfcjbfb40bglc9aw9zjvd4jb1hp3l1s12ww6mjlwbjcg0mm9s" - -["github.com/godbus/dbus"] - sumVersion = "v0.0.0-20190726142602-4481cbc300e2" - ["github.com/godbus/dbus".fetch] - type = "git" - url = "https://github.com/godbus/dbus" - rev = "4481cbc300e2df0c0b3cecc18b6c16c6c0bb885d" - sha256 = "0h0cl1r136g0kxbw3i7ggb9mhavpi1yr7d7312iwhkxm93dxkphg" - -["github.com/godbus/dbus/v5"] - sumVersion = "v5.0.4" - ["github.com/godbus/dbus/v5".fetch] - type = "git" - url = "https://github.com/godbus/dbus" - rev = "c88335c0b1d28a30e7fc76d526a06154b85e5d97" - sha256 = "0znax8kskb5gmp5fj75w56bc9p7b22wrdswzlh4d04sprlc471yi" - -["github.com/gogo/gateway"] - sumVersion = "v1.1.0" - ["github.com/gogo/gateway".fetch] - type = "git" - url = "https://github.com/gogo/gateway" - rev = "817b4cf527e834d7d563b7329355c45801d5e02d" - sha256 = "1jj7vr3sdk7yz8jl1kzv8473pkhd388f95byc8pdwrh6y7fh0xrq" - -["github.com/gogo/protobuf"] - sumVersion = "v1.3.3-alpha.regen.1" - vendorPath = "github.com/regen-network/protobuf" - ["github.com/gogo/protobuf".fetch] - type = "git" - url = "https://github.com/regen-network/protobuf" - rev = "8a70ddfdaf94e68497f7b26a6896ad75e03b6616" - sha256 = "0jmhiv9gq0a6brs9p8dk9phafs62yggyhlav07cqwakcq70ss6r2" - -["github.com/golang/glog"] - sumVersion = "v0.0.0-20160126235308-23def4e6c14b" - ["github.com/golang/glog".fetch] - type = "git" - url = "https://github.com/golang/glog" - rev = "23def4e6c14b4da8ac2ed8007337bc5eb5007998" - sha256 = "0jb2834rw5sykfr937fxi8hxi2zy80sj2bdn9b3jb4b26ksqng30" - -["github.com/golang/groupcache"] - sumVersion = "v0.0.0-20200121045136-8c9f03a8e57e" - ["github.com/golang/groupcache".fetch] - type = "git" - url = "https://github.com/golang/groupcache" - rev = "8c9f03a8e57eb486e42badaed3fb287da51807ba" - sha256 = "0vjjr79r32icjzlb05wn02k59av7jx0rn1jijml8r4whlg7dnkfh" - -["github.com/golang/mock"] - sumVersion = "v1.6.0" - ["github.com/golang/mock".fetch] - type = "git" - url = "https://github.com/golang/mock" - rev = "aba2ff9a6844d5e3289e8472d3217d5b3090f083" - sha256 = "1hara8j0x431njjhqxfrg1png7xa1gbrpwza6ya4mwlx76hppap4" - -["github.com/golang/protobuf"] - sumVersion = "v1.5.2" - ["github.com/golang/protobuf".fetch] - type = "git" - url = "https://github.com/golang/protobuf" - rev = "ae97035608a719c7a1c1c41bed0ae0744bdb0c6f" - sha256 = "1mh5fyim42dn821nsd3afnmgscrzzhn3h8rag635d2jnr23r1zhk" - -["github.com/golang/snappy"] - sumVersion = "v0.0.3-0.20201103224600-674baa8c7fc3" - ["github.com/golang/snappy".fetch] - type = "git" - url = "https://github.com/golang/snappy" - rev = "674baa8c7fc30da5df3074a459494a7e6b427dff" - sha256 = "1dc8sdca0nrqb8wri91mi2xcjm16wyawm4y0fwc5gp24ahjbrg7g" - -["github.com/google/btree"] - sumVersion = "v1.0.0" - ["github.com/google/btree".fetch] - type = "git" - url = "https://github.com/google/btree" - rev = "4030bb1f1f0c35b30ca7009e9ebd06849dd45306" - sha256 = "0ba430m9fbnagacp57krgidsyrgp3ycw5r7dj71brgp5r52g82p6" - -["github.com/google/go-cmp"] - sumVersion = "v0.5.5" - ["github.com/google/go-cmp".fetch] - type = "git" - url = "https://github.com/google/go-cmp" - rev = "8fa37b4dd109f12e42b131e485268768f18bcbf8" - sha256 = "12fmkdhyv5d4is8s57k78j097zb0phlgnrkqc03agiszxlid69x7" - -["github.com/google/gofuzz"] - sumVersion = "v1.1.1-0.20200604201612-c04b05f3adfa" - ["github.com/google/gofuzz".fetch] - type = "git" - url = "https://github.com/google/gofuzz" - rev = "c04b05f3adfa7f64e47bf054350f2336aea32e9d" - sha256 = "0i75fm6pg54zvrgbvjkg46cr03pypqm4w0wv0a349f4k7ff8qv9r" - -["github.com/google/martian"] - sumVersion = "v2.1.0+incompatible" - ["github.com/google/martian".fetch] - type = "git" - url = "https://github.com/google/martian" - rev = "195b986b4b6d4c513582cf4d2b8c4fd7e2494f7e" - sha256 = "197hil6vrjk50b9wvwyzf61csid83whsjj6ik8mc9r2lryxlyyrp" - -["github.com/google/martian/v3"] - sumVersion = "v3.1.0" - ["github.com/google/martian/v3".fetch] - type = "git" - url = "https://github.com/google/martian" - rev = "dacbe1a1813d1e1b8f44f17b03ffe0cd9fb5ba54" - sha256 = "1pr9akggfzj2vw11l7ry4sij0hqslpc3gwx4ynbzyvbjhvh64sbc" - -["github.com/google/orderedcode"] - sumVersion = "v0.0.1" - ["github.com/google/orderedcode".fetch] - type = "git" - url = "https://github.com/google/orderedcode" - rev = "9a3d15e0d5340bb1ba5db4071afd931e18b6e013" - sha256 = "0sdqfjji2skc1f7fbv9krbrb0cgfz43ksrld333hllgdidi33c9a" - -["github.com/google/pprof"] - sumVersion = "v0.0.0-20210226084205-cbba55b83ad5" - ["github.com/google/pprof".fetch] - type = "git" - url = "https://github.com/google/pprof" - rev = "cbba55b83ad56c9286566b96b0c82cead332b729" - sha256 = "0drr44nqq0s3jillcrl8qa7sklxybs083lvashdh2ad62hrs31l7" - -["github.com/google/renameio"] - sumVersion = "v0.1.0" - ["github.com/google/renameio".fetch] - type = "git" - url = "https://github.com/google/renameio" - rev = "f0e32980c006571efd537032e5f9cd8c1a92819e" - sha256 = "1ki2x5a9nrj17sn092d6n4zr29lfg5ydv4xz5cp58z6cw8ip43jx" - -["github.com/google/uuid"] - sumVersion = "v1.1.2" - ["github.com/google/uuid".fetch] - type = "git" - url = "https://github.com/google/uuid" - rev = "0e4e31197428a347842d152773b4cace4645ca25" - sha256 = "1rbpfa0v0ly9sdnixcxhf79swki54ikgm1zkwwkj64p1ws66syqd" - -["github.com/googleapis/gax-go/v2"] - sumVersion = "v2.0.5" - relPath = "v2" - ["github.com/googleapis/gax-go/v2".fetch] - type = "git" - url = "https://github.com/googleapis/gax-go" - rev = "bd5b16380fd03dc758d11cef74ba2e3bc8b0e8c2" - sha256 = "1lxawwngv6miaqd25s3ba0didfzylbwisd2nz7r4gmbmin6jsjrx" - -["github.com/gopherjs/gopherjs"] - sumVersion = "v0.0.0-20181017120253-0766667cb4d1" - ["github.com/gopherjs/gopherjs".fetch] - type = "git" - url = "https://github.com/gopherjs/gopherjs" - rev = "0766667cb4d1cfb8d5fde1fe210ae41ead3cf589" - sha256 = "13pfc9sxiwjky2lm1xb3i3lcisn8p6mgjk2d927l7r92ysph8dmw" - -["github.com/gordonklaus/ineffassign"] - sumVersion = "v0.0.0-20200309095847-7953dde2c7bf" - ["github.com/gordonklaus/ineffassign".fetch] - type = "git" - url = "https://github.com/gordonklaus/ineffassign" - rev = "7953dde2c7bf4ce700d9f14c2e41c0966763760c" - sha256 = "088r2jcxgfhabg7mcgyr42yvnd1iab5kncr0cc898p9cf7fyd95z" - -["github.com/gorilla/context"] - sumVersion = "v1.1.1" - ["github.com/gorilla/context".fetch] - type = "git" - url = "https://github.com/gorilla/context" - rev = "08b5f424b9271eedf6f9f0ce86cb9396ed337a42" - sha256 = "03p4hn87vcmfih0p9w663qbx9lpsf7i7j3lc7yl7n84la3yz63m4" - -["github.com/gorilla/handlers"] - sumVersion = "v1.5.1" - ["github.com/gorilla/handlers".fetch] - type = "git" - url = "https://github.com/gorilla/handlers" - rev = "d453effd20e6817a8acfd9d278dadd21371da0ba" - sha256 = "15gycdz9lkjnsvvichsbdf25vf6pi1sfn41khhz53iqf300l0w0s" - -["github.com/gorilla/mux"] - sumVersion = "v1.8.0" - ["github.com/gorilla/mux".fetch] - type = "git" - url = "https://github.com/gorilla/mux" - rev = "98cb6bf42e086f6af920b965c38cacc07402d51b" - sha256 = "18f0q9qxgq1yh4ji07mqhiydfcwvi56z9d775v7dc7yckj33kpdk" - -["github.com/gorilla/websocket"] - sumVersion = "v1.4.2" - ["github.com/gorilla/websocket".fetch] - type = "git" - url = "https://github.com/gorilla/websocket" - rev = "b65e62901fc1c0d968042419e74789f6af455eb9" - sha256 = "0mkm9w6kjkrlzab5wh8p4qxkc0icqawjbvr01d2nk6ykylrln40s" - -["github.com/gotestyourself/gotestyourself"] - sumVersion = "v2.2.0+incompatible" - ["github.com/gotestyourself/gotestyourself".fetch] - type = "git" - url = "https://github.com/gotestyourself/gotestyourself" - rev = "7c797b5133e5460410dbb22ba779bf35e6975dea" - sha256 = "0yif3gdyckmf8i54jq0xn00kflla5rhib9sarw66ngnbl7bn9kyl" - -["github.com/graph-gophers/graphql-go"] - sumVersion = "v0.0.0-20191115155744-f33e81362277" - ["github.com/graph-gophers/graphql-go".fetch] - type = "git" - url = "https://github.com/graph-gophers/graphql-go" - rev = "f33e813622776db7efec756a9e951bef40932197" - sha256 = "12vbls1kvn3lfgj86y4r258x6papgcj3h4pcg4xbdi5l2cy1idmy" - -["github.com/grpc-ecosystem/go-grpc-middleware"] - sumVersion = "v1.3.0" - ["github.com/grpc-ecosystem/go-grpc-middleware".fetch] - type = "git" - url = "https://github.com/grpc-ecosystem/go-grpc-middleware" - rev = "df0f91b29bbbdfc3a686a7a8edbe2b9de2072fdd" - sha256 = "1c9chw2nwj46ayx6cbq1sq21gmfmm3fx1gg579hn7srwywq0xsw0" - -["github.com/grpc-ecosystem/go-grpc-prometheus"] - sumVersion = "v1.2.0" - ["github.com/grpc-ecosystem/go-grpc-prometheus".fetch] - type = "git" - url = "https://github.com/grpc-ecosystem/go-grpc-prometheus" - rev = "c225b8c3b01faf2899099b768856a9e916e5087b" - sha256 = "1lzk54h7np32b3acidg1ggbn8ppbnns0m71gcg9d1qkkdh8zrijl" - -["github.com/grpc-ecosystem/grpc-gateway"] - sumVersion = "v1.16.0" - ["github.com/grpc-ecosystem/grpc-gateway".fetch] - type = "git" - url = "https://github.com/grpc-ecosystem/grpc-gateway" - rev = "094a6fe78b3ca888297d090185cdf30f0e42e157" - sha256 = "0dzq1qbgzz2c6vnh8anx0j3py34sd72p35x6s2wrl001q68am5cc" - -["github.com/gsterjov/go-libsecret"] - sumVersion = "v0.0.0-20161001094733-a6f4afe4910c" - ["github.com/gsterjov/go-libsecret".fetch] - type = "git" - url = "https://github.com/gsterjov/go-libsecret" - rev = "a6f4afe4910cad8688db3e0e9b9ac92ad22d54e1" - sha256 = "09zaiadnll83vs22ib89agg7anj0blw5fywvmckxllsgif6ak6v7" - -["github.com/gtank/merlin"] - sumVersion = "v0.1.1" - ["github.com/gtank/merlin".fetch] - type = "git" - url = "https://github.com/gtank/merlin" - rev = "8318aed1a79f2b4c16cf2d7c2f09d991ec0731d1" - sha256 = "1gcj26hiyb87cjvqrdyr4q201c1rknpbahnsvcnz08agaw6gvwxm" - -["github.com/gtank/ristretto255"] - sumVersion = "v0.1.2" - ["github.com/gtank/ristretto255".fetch] - type = "git" - url = "https://github.com/gtank/ristretto255" - rev = "f33454717c935f5c93978e82b7bd1e848768bb91" - sha256 = "0kn4r28zbxf4vqr2if455wqzak38l27wqrwbzpxygrvczm61a2kw" - -["github.com/hashicorp/consul/api"] - sumVersion = "v1.3.0" - relPath = "api" - ["github.com/hashicorp/consul/api".fetch] - type = "git" - url = "https://github.com/hashicorp/consul" - rev = "e8757838a49feeb682c7e6ad6b78694a78b2096b" - sha256 = "1zv84snvrjm74w3v3rr27linsbxj00m73xd047sb78a4766xs2h0" - -["github.com/hashicorp/consul/sdk"] - sumVersion = "v0.3.0" - relPath = "sdk" - ["github.com/hashicorp/consul/sdk".fetch] - type = "git" - url = "https://github.com/hashicorp/consul" - rev = "441d613e1bd96254c78c46ee7c1b35c161fc7295" - sha256 = "1v06ygzsvc9c02yxpxnnm407kd30fc46b2146k5zrk1v8lq0f91j" - -["github.com/hashicorp/errwrap"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/errwrap".fetch] - type = "git" - url = "https://github.com/hashicorp/errwrap" - rev = "8a6fb523712970c966eefc6b39ed2c5e74880354" - sha256 = "0slfb6w3b61xz04r32bi0a1bygc82rjzhqkxj2si2074wynqnr1c" - -["github.com/hashicorp/go-cleanhttp"] - sumVersion = "v0.5.1" - ["github.com/hashicorp/go-cleanhttp".fetch] - type = "git" - url = "https://github.com/hashicorp/go-cleanhttp" - rev = "eda1e5db218aad1db63ca4642c8906b26bcf2744" - sha256 = "07kx3fhryqmaw3czacmm11qwx63js2q8cfq967vphk7xg9q377kk" - -["github.com/hashicorp/go-immutable-radix"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-immutable-radix".fetch] - type = "git" - url = "https://github.com/hashicorp/go-immutable-radix" - rev = "27df80928bb34bb1b0d6d0e01b9e679902e7a6b5" - sha256 = "1v3nmsnk1s8bzpclrhirz7iq0g5xxbw9q5gvrg9ss6w9crs72qr6" - -["github.com/hashicorp/go-msgpack"] - sumVersion = "v0.5.3" - ["github.com/hashicorp/go-msgpack".fetch] - type = "git" - url = "https://github.com/hashicorp/go-msgpack" - rev = "be3a5be7ee2202386d02936a19ae4fbde1c77800" - sha256 = "00jv0ajqd58pkb2yyhlrjp0rv1mvb1ijx3yqjyikcmzvk9jb4h5m" - -["github.com/hashicorp/go-multierror"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-multierror".fetch] - type = "git" - url = "https://github.com/hashicorp/go-multierror" - rev = "886a7fbe3eb1c874d46f623bfa70af45f425b3d1" - sha256 = "00nyn8llqzbfm8aflr9kwsvpzi4kv8v45c141v88xskxp5xf6z49" - -["github.com/hashicorp/go-retryablehttp"] - sumVersion = "v0.5.3" - ["github.com/hashicorp/go-retryablehttp".fetch] - type = "git" - url = "https://github.com/hashicorp/go-retryablehttp" - rev = "357460732517ec3b57c05c51443296bdd6df1874" - sha256 = "008mimxs8a970rdhvgmc5v1wk0gmpcl96mrkwz7wq6ik6fhg1sjl" - -["github.com/hashicorp/go-rootcerts"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-rootcerts".fetch] - type = "git" - url = "https://github.com/hashicorp/go-rootcerts" - rev = "63503fb4e1eca22f9ae0f90b49c5d5538a0e87eb" - sha256 = "0wply5zhj1rcybr932zbwm1i18q5wr7kgkhnz6bw6mk1n9yr8lfj" - -["github.com/hashicorp/go-sockaddr"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-sockaddr".fetch] - type = "git" - url = "https://github.com/hashicorp/go-sockaddr" - rev = "a6a0d2df398f7e0e9f6e43f589c8b51cec0eb6b0" - sha256 = "1yn1xq8ysn0lszmkygz3a9lgpswbz1p91jv7q8l20s4749a22xgi" - -["github.com/hashicorp/go-syslog"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-syslog".fetch] - type = "git" - url = "https://github.com/hashicorp/go-syslog" - rev = "8d1874e3e8d1862b74e0536851e218c4571066a5" - sha256 = "09vccqggz212cg0jir6vv708d6mx0f9w5bxrcdah3h6chgmal6v1" - -["github.com/hashicorp/go-uuid"] - sumVersion = "v1.0.1" - ["github.com/hashicorp/go-uuid".fetch] - type = "git" - url = "https://github.com/hashicorp/go-uuid" - rev = "4f571afc59f3043a65f8fe6bf46d887b10a01d43" - sha256 = "0jvb88m0rq41bwgirsadgw7mnayl27av3gd2vqa3xvxp3fy0hp5k" - -["github.com/hashicorp/go-version"] - sumVersion = "v1.2.0" - ["github.com/hashicorp/go-version".fetch] - type = "git" - url = "https://github.com/hashicorp/go-version" - rev = "ac23dc3fea5d1a983c43f6a0f6e2c13f0195d8bd" - sha256 = "1bwi6y6111xq8ww8kjq0w1cmz15l1h9hb2id6596l8l0ag1vjj1z" - -["github.com/hashicorp/go.net"] - sumVersion = "v0.0.1" - ["github.com/hashicorp/go.net".fetch] - type = "git" - url = "https://github.com/hashicorp/go.net" - rev = "afc3cb3a421746fc66dd55b09a270c750cf536ce" - sha256 = "06arwi95xp5rxyz7rndvhc3wlwg0jn9a5z6djf3yyg5h9zfab9i4" - -["github.com/hashicorp/golang-lru"] - sumVersion = "v0.5.4" - ["github.com/hashicorp/golang-lru".fetch] - type = "git" - url = "https://github.com/hashicorp/golang-lru" - rev = "14eae340515388ca95aa8e7b86f0de668e981f54" - sha256 = "1sdbymypp9vrnzp8ashw0idlxvaq0rb0alwxx3x8g27yjlqi9jfn" - -["github.com/hashicorp/hcl"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/hcl".fetch] - type = "git" - url = "https://github.com/hashicorp/hcl" - rev = "8cb6e5b959231cc1119e43259c4a608f9c51a241" - sha256 = "0q6ml0qqs0yil76mpn4mdx4lp94id8vbv575qm60jzl1ijcl5i66" - -["github.com/hashicorp/logutils"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/logutils".fetch] - type = "git" - url = "https://github.com/hashicorp/logutils" - rev = "a335183dfd075f638afcc820c90591ca3c97eba6" - sha256 = "076wf4sh5p3f953ndqk1cc0x7jhmlqrxak9953rz79rcdw77rjvv" - -["github.com/hashicorp/mdns"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/mdns".fetch] - type = "git" - url = "https://github.com/hashicorp/mdns" - rev = "c31d3f8e4a0a5b46b118c2fd26d9da36467002c9" - sha256 = "0qr4l91hhi97s8a1isnrw3s4q8pjzacqiks870vnwh15v7ig3axd" - -["github.com/hashicorp/memberlist"] - sumVersion = "v0.1.3" - ["github.com/hashicorp/memberlist".fetch] - type = "git" - url = "https://github.com/hashicorp/memberlist" - rev = "a9da52f0668fc4321ec18e9e28dd8141621a808f" - sha256 = "0k1spq7dagvqj3baqw2dhxx1zxrb02y6m3apzr3a7gyirii890g3" - -["github.com/hashicorp/serf"] - sumVersion = "v0.8.2" - ["github.com/hashicorp/serf".fetch] - type = "git" - url = "https://github.com/hashicorp/serf" - rev = "b89a09ebd4b1b570e0076d5097272e67c10ac4f6" - sha256 = "0nrslghvdjhaczr2xp9mn8xgcx1dxl4jgpbk0l61ssmxahpx4iyc" - -["github.com/hdevalence/ed25519consensus"] - sumVersion = "v0.0.0-20210204194344-59a8610d2b87" - ["github.com/hdevalence/ed25519consensus".fetch] - type = "git" - url = "https://github.com/hdevalence/ed25519consensus" - rev = "59a8610d2b877a977e021f711e382bc0e757bf48" - sha256 = "0nw0i884mbya2sdijrhlfnx3ymhdl3jcxk36g6mqk1d91p5b40s2" - -["github.com/holiman/uint256"] - sumVersion = "v1.1.1" - ["github.com/holiman/uint256".fetch] - type = "git" - url = "https://github.com/holiman/uint256" - rev = "99b79c80738390408ef1a47f0e26812ef5506c02" - sha256 = "13v6rnwv1mivqxfmnmj57jg6is81p04gspmykc8slcc1ryvs1qdh" - -["github.com/hpcloud/tail"] - sumVersion = "v1.0.0" - ["github.com/hpcloud/tail".fetch] - type = "git" - url = "https://github.com/hpcloud/tail" - rev = "a30252cb686a21eb2d0b98132633053ec2f7f1e5" - sha256 = "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0" - -["github.com/hudl/fargo"] - sumVersion = "v1.3.0" - ["github.com/hudl/fargo".fetch] - type = "git" - url = "https://github.com/hudl/fargo" - rev = "fce5cf495554be9ef0766f6f5459e2874fb08c89" - sha256 = "1f7pwj793p51nq03jiz834g0qvg502h9asry6nx4pdc10wzx2948" - -["github.com/huin/goupnp"] - sumVersion = "v1.0.0" - ["github.com/huin/goupnp".fetch] - type = "git" - url = "https://github.com/huin/goupnp" - rev = "656e61dfadd241c7cbdd22a023fa81ecb6860ea8" - sha256 = "12f7rigf1f4xh1an1qis61xkj5s1r8ygk48zahf3n4gaqxmgm7i6" - -["github.com/huin/goutil"] - sumVersion = "v0.0.0-20170803182201-1ca381bf3150" - ["github.com/huin/goutil".fetch] - type = "git" - url = "https://github.com/huin/goutil" - rev = "1ca381bf315033e89af3286fdec0109ce8d86126" - sha256 = "0alhyacsfqic2wxyqn4gvk9wzjl4pkmy8rhvqjk84xsghgx5xf12" - -["github.com/ianlancetaylor/demangle"] - sumVersion = "v0.0.0-20200824232613-28f6c0f3b639" - ["github.com/ianlancetaylor/demangle".fetch] - type = "git" - url = "https://github.com/ianlancetaylor/demangle" - rev = "28f6c0f3b63983aaa99575ca3b693afff7996387" - sha256 = "0rsq3622gd40f1x1l7caidsxrmzg1993ich2higwd94fqbxs1r83" - -["github.com/improbable-eng/grpc-web"] - sumVersion = "v0.14.1" - ["github.com/improbable-eng/grpc-web".fetch] - type = "git" - url = "https://github.com/improbable-eng/grpc-web" - rev = "d1462f8004766ff7f0e99962976a853bc9310301" - sha256 = "153a2kn2hpiwyspy9clwsxkgfw1igww5n74vf55fvz0idzv3r10n" - -["github.com/inconshreveable/mousetrap"] - sumVersion = "v1.0.0" - ["github.com/inconshreveable/mousetrap".fetch] - type = "git" - url = "https://github.com/inconshreveable/mousetrap" - rev = "76626ae9c91c4f2a10f34cad8ce83ea42c93bb75" - sha256 = "1mn0kg48xkd74brf48qf5hzp0bc6g8cf5a77w895rl3qnlpfw152" - -["github.com/influxdata/influxdb"] - sumVersion = "v1.2.3-0.20180221223340-01288bdb0883" - ["github.com/influxdata/influxdb".fetch] - type = "git" - url = "https://github.com/influxdata/influxdb" - rev = "01288bdb0883a01cac999326bd34421b29acaec8" - sha256 = "0lk1c2w1ja2w7wc897xp5c04vyrx5yxq5pb187aqcrqbqvy2fp5p" - -["github.com/influxdata/influxdb1-client"] - sumVersion = "v0.0.0-20191209144304-8bf82d3c094d" - ["github.com/influxdata/influxdb1-client".fetch] - type = "git" - url = "https://github.com/influxdata/influxdb1-client" - rev = "8bf82d3c094dc06be9da8e5bf9d3589b6ea032ae" - sha256 = "0cjli7prxfxayx2grianbla5jr0dq28sazk8phbnh61ac5zaya4s" - -["github.com/jackpal/go-nat-pmp"] - sumVersion = "v1.0.2-0.20160603034137-1fa385a6f458" - ["github.com/jackpal/go-nat-pmp".fetch] - type = "git" - url = "https://github.com/jackpal/go-nat-pmp" - rev = "1fa385a6f45828c83361136b45b1a21a12139493" - sha256 = "1n5h3qrd613cfw95vyqpy9vh3xv0zgbk3j5q8zad25q10wvp6ymn" - -["github.com/jedisct1/go-minisign"] - sumVersion = "v0.0.0-20190909160543-45766022959e" - ["github.com/jedisct1/go-minisign".fetch] - type = "git" - url = "https://github.com/jedisct1/go-minisign" - rev = "45766022959ee057eee31300cdc5f45a8c51ea7f" - sha256 = "02rc52v29wyzias9aw4a7kxsfspf27an3kf0pb9pn4kp0br5dn6v" - -["github.com/jessevdk/go-flags"] - sumVersion = "v1.4.0" - ["github.com/jessevdk/go-flags".fetch] - type = "git" - url = "https://github.com/jessevdk/go-flags" - rev = "c6ca198ec95c841fdb89fc0de7496fed11ab854e" - sha256 = "0algnnigph27spgn655zm4723yfjxjjvlf4k14z9drj3682df25a" - -["github.com/jhump/protoreflect"] - sumVersion = "v1.9.0" - ["github.com/jhump/protoreflect".fetch] - type = "git" - url = "https://github.com/jhump/protoreflect" - rev = "d3608faa83b85e64a0e2880cba9be9c951460727" - sha256 = "0pbyvisfjmhx1g5l6m0dqv730hid1jr8h8746yx3d567ms2hgj8f" - -["github.com/jmespath/go-jmespath"] - sumVersion = "v0.0.0-20180206201540-c2b33e8439af" - ["github.com/jmespath/go-jmespath".fetch] - type = "git" - url = "https://github.com/jmespath/go-jmespath" - rev = "c2b33e8439af944379acbdd9c3a5fe0bc44bd8a5" - sha256 = "1r6w7ydx8ydryxk3sfhzsk8m6f1nsik9jg3i1zhi69v4kfl4d5cz" - -["github.com/jmhodges/levigo"] - sumVersion = "v1.0.0" - ["github.com/jmhodges/levigo".fetch] - type = "git" - url = "https://github.com/jmhodges/levigo" - rev = "853d788c5c416eaaee5b044570784a96c7a26975" - sha256 = "1lhh413mmclnkwn2lk1crwzargam2cx5w7k6zj8pgasy62c78iy4" - -["github.com/jonboulle/clockwork"] - sumVersion = "v0.1.0" - ["github.com/jonboulle/clockwork".fetch] - type = "git" - url = "https://github.com/jonboulle/clockwork" - rev = "2eee05ed794112d45db504eb05aa693efd2b8b09" - sha256 = "1pqxhsdavbp1n5grgyx2j6ylvql2fzn2cvpsgkc8li69dil7sibl" - -["github.com/jpillora/backoff"] - sumVersion = "v1.0.0" - ["github.com/jpillora/backoff".fetch] - type = "git" - url = "https://github.com/jpillora/backoff" - rev = "d80867952dff4e2fbfb4280ded4ff94d67790457" - sha256 = "0x90fif28fjyl07lmj2cnxzlgdm632v7rkra7kq1mwjdqgmy04dv" - -["github.com/jrick/logrotate"] - sumVersion = "v1.0.0" - ["github.com/jrick/logrotate".fetch] - type = "git" - url = "https://github.com/jrick/logrotate" - rev = "a93b200c26cbae3bb09dd0dc2c7c7fe1468a034a" - sha256 = "0srl6figwjqpi3nbp7br8sxpmvh4v8lzbny1b4lar4ny0156p5nl" - -["github.com/json-iterator/go"] - sumVersion = "v1.1.11" - ["github.com/json-iterator/go".fetch] - type = "git" - url = "https://github.com/json-iterator/go" - rev = "e6b9536d3649bda3e8842bb7e4fab489d79a97ea" - sha256 = "086la0acyi7ryf0yzhsxm7vg9qqlg2333syf4kpr1cmac7v05vmb" - -["github.com/jstemmer/go-junit-report"] - sumVersion = "v0.9.1" - ["github.com/jstemmer/go-junit-report".fetch] - type = "git" - url = "https://github.com/jstemmer/go-junit-report" - rev = "cc1f095d5cc5eca2844f5c5ea7bb37f6b9bf6cac" - sha256 = "1knip80yir1cdsjlb3rzy0a4w3kl4ljpiciaz6hjzwqlfhnv7bkw" - -["github.com/jtolds/gls"] - sumVersion = "v4.20.0+incompatible" - ["github.com/jtolds/gls".fetch] - type = "git" - url = "https://github.com/jtolds/gls" - rev = "b4936e06046bbecbb94cae9c18127ebe510a2cb9" - sha256 = "1k7xd2q2ysv2xsh373qs801v6f359240kx0vrl0ydh7731lngvk6" - -["github.com/julienschmidt/httprouter"] - sumVersion = "v1.3.0" - ["github.com/julienschmidt/httprouter".fetch] - type = "git" - url = "https://github.com/julienschmidt/httprouter" - rev = "4eec211fa4e8df74ed978dc5681612131854144f" - sha256 = "1a6sy0ysqknsjssjh7qg1dqn21xmj9a36c57nrk7srfmab4ffmk1" - -["github.com/karalabe/usb"] - sumVersion = "v0.0.0-20190919080040-51dc0efba356" - ["github.com/karalabe/usb".fetch] - type = "git" - url = "https://github.com/karalabe/usb" - rev = "51dc0efba3568b598359930901dc6647e9b2c6a1" - sha256 = "0rshv04w5f60zv3l9f0zqyhimpwrbzm7dir8jbkdpnszicq1dx3m" - -["github.com/keybase/go-keychain"] - sumVersion = "v0.0.0-20190712205309-48d3d31d256d" - ["github.com/keybase/go-keychain".fetch] - type = "git" - url = "https://github.com/keybase/go-keychain" - rev = "48d3d31d256d9922a90b14c518c4b685f321fab2" - sha256 = "1vb4irkbj5s4v8n8dqngmg2w2fbnaz568z731yqryspvvmrki2a1" - -["github.com/kisielk/errcheck"] - sumVersion = "v1.5.0" - ["github.com/kisielk/errcheck".fetch] - type = "git" - url = "https://github.com/kisielk/errcheck" - rev = "ee08a456fc430219ad80ce5af98415bcc027a219" - sha256 = "0ci3jz2px74pfmr42jv7dpx7fdzx08vai4czp9fkiyb0gcaiqsk6" - -["github.com/kisielk/gotool"] - sumVersion = "v1.0.0" - ["github.com/kisielk/gotool".fetch] - type = "git" - url = "https://github.com/kisielk/gotool" - rev = "80517062f582ea3340cd4baf70e86d539ae7d84d" - sha256 = "14af2pa0ssyp8bp2mvdw184s5wcysk6akil3wzxmr05wwy951iwn" - -["github.com/kkdai/bstream"] - sumVersion = "v0.0.0-20161212061736-f391b8402d23" - ["github.com/kkdai/bstream".fetch] - type = "git" - url = "https://github.com/kkdai/bstream" - rev = "f391b8402d23024e7c0f624b31267a89998fca95" - sha256 = "1hd9caz0yf3r8kciw2pqwrsr8z4w0rhbqv1z7iq08d0542s05j3z" - -["github.com/klauspost/compress"] - sumVersion = "v1.11.7" - ["github.com/klauspost/compress".fetch] - type = "git" - url = "https://github.com/klauspost/compress" - rev = "85d8ebff245ce04f07ea619ca9c73be887313eae" - sha256 = "0wybxlkwp5j3lc60dgsc4cvhw80699vd2n7rsr4234vg1lh041nw" - -["github.com/konsorten/go-windows-terminal-sequences"] - sumVersion = "v1.0.3" - ["github.com/konsorten/go-windows-terminal-sequences".fetch] - type = "git" - url = "https://github.com/konsorten/go-windows-terminal-sequences" - rev = "edb144dfd453055e1e49a3d8b410a660b5a87613" - sha256 = "1yrsd4s8vhjnxhwbigirymz89dn6qfjnhn28i33vvvdgf96j6ypl" - -["github.com/kr/fs"] - sumVersion = "v0.1.0" - ["github.com/kr/fs".fetch] - type = "git" - url = "https://github.com/kr/fs" - rev = "1455def202f6e05b95cc7bfc7e8ae67ae5141eba" - sha256 = "11zg176x9hr9q7fsk95r6q0wf214gg4czy02slax4x56n79g6a7q" - -["github.com/kr/logfmt"] - sumVersion = "v0.0.0-20140226030751-b84e30acd515" - ["github.com/kr/logfmt".fetch] - type = "git" - url = "https://github.com/kr/logfmt" - rev = "b84e30acd515aadc4b783ad4ff83aff3299bdfe0" - sha256 = "02ldzxgznrfdzvghfraslhgp19la1fczcbzh7wm2zdc6lmpd1qq9" - -["github.com/kr/pretty"] - sumVersion = "v0.2.1" - ["github.com/kr/pretty".fetch] - type = "git" - url = "https://github.com/kr/pretty" - rev = "ead452280cd055b2ae8a7f0db5eb37a878d902f7" - sha256 = "0vzfz06y9q8gs2nxx0kys0591vzp78k0fvpb8digi5n15h3b25hy" - -["github.com/kr/pty"] - sumVersion = "v1.1.1" - ["github.com/kr/pty".fetch] - type = "git" - url = "https://github.com/kr/pty" - rev = "282ce0e5322c82529687d609ee670fac7c7d917c" - sha256 = "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6" - -["github.com/kr/text"] - sumVersion = "v0.2.0" - ["github.com/kr/text".fetch] - type = "git" - url = "https://github.com/kr/text" - rev = "702c74938df48b97370179f33ce2107bd7ff3b3e" - sha256 = "0hf58ypz6rxsw6nx3i856whir9lvy4sdx946wbw1nfaf2rdmr9vx" - -["github.com/kylelemons/godebug"] - sumVersion = "v1.1.0" - ["github.com/kylelemons/godebug".fetch] - type = "git" - url = "https://github.com/kylelemons/godebug" - rev = "9ff306d4fbead574800b66369df5b6144732d58e" - sha256 = "0dkk3friykg8p6wgqryx6745ahhb9z1j740k7px9dac6v5xjp78c" - -["github.com/leodido/go-urn"] - sumVersion = "v1.2.0" - ["github.com/leodido/go-urn".fetch] - type = "git" - url = "https://github.com/leodido/go-urn" - rev = "a0f5013415294bb94553821ace21a1a74c0298cc" - sha256 = "1d4g1vkhc1180l1n7q48vl84b27c7cziywml78cyijbcdz2f8vim" - -["github.com/lib/pq"] - sumVersion = "v1.10.2" - ["github.com/lib/pq".fetch] - type = "git" - url = "https://github.com/lib/pq" - rev = "2da6713d67f03911a05b1b6559adc85927fe076e" - sha256 = "0drlr4dx3dzlafx5m9ys9q69hx518pdl279s736k0m3lr9iq9c7r" - -["github.com/libp2p/go-buffer-pool"] - sumVersion = "v0.0.2" - ["github.com/libp2p/go-buffer-pool".fetch] - type = "git" - url = "https://github.com/libp2p/go-buffer-pool" - rev = "c4a5988a1e475884367015e1a2d0bd5fa4c491f4" - sha256 = "01iwby4xq9znlfhcxxvqv03smllsv42j1w3vpqg9n307s3i0pj3m" - -["github.com/lightstep/lightstep-tracer-common/golang/gogo"] - sumVersion = "v0.0.0-20190605223551-bc2310a04743" - relPath = "golang/gogo" - ["github.com/lightstep/lightstep-tracer-common/golang/gogo".fetch] - type = "git" - url = "https://github.com/lightstep/lightstep-tracer-common" - rev = "bc2310a0474352fa2616bdc0a27457b146b136b4" - sha256 = "0j7qycrva0ngf38br0jy9blzjb98ksdfi87b0sb2gnpmsp6sz4l8" - -["github.com/lightstep/lightstep-tracer-go"] - sumVersion = "v0.18.1" - ["github.com/lightstep/lightstep-tracer-go".fetch] - type = "git" - url = "https://github.com/lightstep/lightstep-tracer-go" - rev = "95891af43e111d60f0ae6adaa39c2abe8caad401" - sha256 = "0jfnsv7y11d247xysc61wp8xmgn33fdl17v6g0lxxnklbw41k91y" - -["github.com/lucasjones/reggen"] - sumVersion = "v0.0.0-20180717132126-cdb49ff09d77" - ["github.com/lucasjones/reggen".fetch] - type = "git" - url = "https://github.com/lucasjones/reggen" - rev = "cdb49ff09d77331d3fdd51e862b4023d2257954c" - sha256 = "1cby9n647v4gh11mpz1dfscks8n0cw0rj8d2hjh4q9mky4m7jzl1" - -["github.com/magiconair/properties"] - sumVersion = "v1.8.5" - ["github.com/magiconair/properties".fetch] - type = "git" - url = "https://github.com/magiconair/properties" - rev = "291b8266af1000c77a12ae6d4dde1145a028012f" - sha256 = "0v4agnkhc30fblbmhs0gq2bikhdnnmqmpp4phrnza68m04j5hxbn" - -["github.com/mattn/go-colorable"] - sumVersion = "v0.1.8" - ["github.com/mattn/go-colorable".fetch] - type = "git" - url = "https://github.com/mattn/go-colorable" - rev = "2e1b0c1546e0173c0907cf05c67b8ba29ed8b4d1" - sha256 = "0q34zqwbnls72md8q8mhj368s7p3i4xspvs3rk8fs76s0pn7dr2l" - -["github.com/mattn/go-ieproxy"] - sumVersion = "v0.0.0-20190702010315-6dee0af9227d" - ["github.com/mattn/go-ieproxy".fetch] - type = "git" - url = "https://github.com/mattn/go-ieproxy" - rev = "6dee0af9227d0863f1508ce7937af3396d6605c1" - sha256 = "0kxxxi68wch3rf3iqggiv72fbf0g7s6g8wy7r34ir040j8b7k0ri" - -["github.com/mattn/go-isatty"] - sumVersion = "v0.0.14" - ["github.com/mattn/go-isatty".fetch] - type = "git" - url = "https://github.com/mattn/go-isatty" - rev = "504425e14f742f1f517c4586048b49b37f829c8e" - sha256 = "015zc3j60vb85d7f2al15la24wn45piazxlagqhzrbgfdyqci60z" - -["github.com/mattn/go-runewidth"] - sumVersion = "v0.0.4" - ["github.com/mattn/go-runewidth".fetch] - type = "git" - url = "https://github.com/mattn/go-runewidth" - rev = "3ee7d812e62a0804a7d0a324e0249ca2db3476d3" - sha256 = "00b3ssm7wiqln3k54z2wcnxr3k3c7m1ybyhb9h8ixzbzspld0qzs" - -["github.com/matttproud/golang_protobuf_extensions"] - sumVersion = "v1.0.1" - ["github.com/matttproud/golang_protobuf_extensions".fetch] - type = "git" - url = "https://github.com/matttproud/golang_protobuf_extensions" - rev = "c12348ce28de40eed0136aa2b644d0ee0650e56c" - sha256 = "1d0c1isd2lk9pnfq2nk0aih356j30k3h1gi2w0ixsivi5csl7jya" - -["github.com/miekg/dns"] - sumVersion = "v1.0.14" - ["github.com/miekg/dns".fetch] - type = "git" - url = "https://github.com/miekg/dns" - rev = "915ca3d5ffd945235828a097c917311a9d86ebb4" - sha256 = "1qgli6yp59bv6vc6zag84cwxmcxgnyxm1q2f301yyijk3wy5b2ak" - -["github.com/mimoo/StrobeGo"] - sumVersion = "v0.0.0-20181016162300-f8f6d4d2b643" - ["github.com/mimoo/StrobeGo".fetch] - type = "git" - url = "https://github.com/mimoo/StrobeGo" - rev = "f8f6d4d2b6435f46148e8a6dc2248939893f3ece" - sha256 = "1lgxh3p6aqfc049wn3kz1mj9prm4mqpa9m01p27ph8iw5ry5c7la" - -["github.com/minio/highwayhash"] - sumVersion = "v1.0.1" - ["github.com/minio/highwayhash".fetch] - type = "git" - url = "https://github.com/minio/highwayhash" - rev = "86a2a969d04373bf05ca722517d30fb1c9a3e4f9" - sha256 = "0kj2hs82sphag0h25xvprvf2fz3zlinmlif89sk9jp8h518aiahf" - -["github.com/mitchellh/cli"] - sumVersion = "v1.0.0" - ["github.com/mitchellh/cli".fetch] - type = "git" - url = "https://github.com/mitchellh/cli" - rev = "3d22a244be8aa6fb16ac24af0e195c08b7d973aa" - sha256 = "1i9kmr7rcf10d2hji8h4247hmc0nbairv7a0q51393aw2h1bnwg2" - -["github.com/mitchellh/go-homedir"] - sumVersion = "v1.1.0" - ["github.com/mitchellh/go-homedir".fetch] - type = "git" - url = "https://github.com/mitchellh/go-homedir" - rev = "af06845cf3004701891bf4fdb884bfe4920b3727" - sha256 = "0ydzkipf28hwj2bfxqmwlww47khyk6d152xax4bnyh60f4lq3nx1" - -["github.com/mitchellh/go-testing-interface"] - sumVersion = "v1.0.0" - ["github.com/mitchellh/go-testing-interface".fetch] - type = "git" - url = "https://github.com/mitchellh/go-testing-interface" - rev = "6d0b8010fcc857872e42fc6c931227569016843c" - sha256 = "1dl2js8di858bawg7dadlf1qjpkl2g3apziihjyf5imri3znyfpw" - -["github.com/mitchellh/gox"] - sumVersion = "v0.4.0" - ["github.com/mitchellh/gox".fetch] - type = "git" - url = "https://github.com/mitchellh/gox" - rev = "c9740af9c6574448fd48eb30a71f964014c7a837" - sha256 = "1q4fdkw904mrmh1q5z8pfd3r0gcn5dm776kldqawddy93iiwnp8r" - -["github.com/mitchellh/iochan"] - sumVersion = "v1.0.0" - ["github.com/mitchellh/iochan".fetch] - type = "git" - url = "https://github.com/mitchellh/iochan" - rev = "b6e3aadd28864e14dae41ff5c7261455b1242d24" - sha256 = "058n9bbf536f2nw3pbs7pysrg9cqvgkb28z2zf5wjyrzrknyk53g" - -["github.com/mitchellh/mapstructure"] - sumVersion = "v1.4.1" - ["github.com/mitchellh/mapstructure".fetch] - type = "git" - url = "https://github.com/mitchellh/mapstructure" - rev = "8ebf2d61a8b4adcce25fc9fc9b76e8452a00672f" - sha256 = "1m98wiadb6kdnzv21m8p7nk1jb30zpjh47fkb1dg251r3m7bj47v" - -["github.com/moby/sys/mountinfo"] - sumVersion = "v0.4.1" - relPath = "mountinfo" - ["github.com/moby/sys/mountinfo".fetch] - type = "git" - url = "https://github.com/moby/sys" - rev = "b0f1fd7235275d01bd35cc4421e884e522395f45" - sha256 = "1svicfa0gyq8fcbsl475gpr0y5rgv0389d9yq6hzwz2acrdxyxm2" - -["github.com/modern-go/concurrent"] - sumVersion = "v0.0.0-20180306012644-bacd9c7ef1dd" - ["github.com/modern-go/concurrent".fetch] - type = "git" - url = "https://github.com/modern-go/concurrent" - rev = "bacd9c7ef1dd9b15be4a9909b8ac7a4e313eec94" - sha256 = "0s0fxccsyb8icjmiym5k7prcqx36hvgdwl588y0491gi18k5i4zs" - -["github.com/modern-go/reflect2"] - sumVersion = "v1.0.1" - ["github.com/modern-go/reflect2".fetch] - type = "git" - url = "https://github.com/modern-go/reflect2" - rev = "94122c33edd36123c84d5368cfb2b69df93a0ec8" - sha256 = "06a3sablw53n1dqqbr2f53jyksbxdmmk8axaas4yvnhyfi55k4lf" - -["github.com/mrunalp/fileutils"] - sumVersion = "v0.5.0" - ["github.com/mrunalp/fileutils".fetch] - type = "git" - url = "https://github.com/mrunalp/fileutils" - rev = "d7fdd64cc1cabe10bc154ee7d2318b07b7f296ef" - sha256 = "1zrs959gf4zgi6ijwkdn4dcqk0svfblpaikkqy63q30rqz4swm0x" - -["github.com/mtibben/percent"] - sumVersion = "v0.2.1" - ["github.com/mtibben/percent".fetch] - type = "git" - url = "https://github.com/mtibben/percent" - rev = "07b18b68c1413ce9f8137a8cbd4509fac9e15f0c" - sha256 = "1iqivw8pigj259rj5yifibbvic70f9hb7k24a4sa967s4fj6agb6" - -["github.com/mwitkow/go-conntrack"] - sumVersion = "v0.0.0-20190716064945-2f068394615f" - ["github.com/mwitkow/go-conntrack".fetch] - type = "git" - url = "https://github.com/mwitkow/go-conntrack" - rev = "2f068394615f73e460c2f3d2c158b0ad9321cadb" - sha256 = "0ymjmy12ks7smgwmrwsa5kf07d9w5kpk1dn650azlzr61b561aw7" - -["github.com/mwitkow/grpc-proxy"] - sumVersion = "v0.0.0-20181017164139-0f1106ef9c76" - ["github.com/mwitkow/grpc-proxy".fetch] - type = "git" - url = "https://github.com/mwitkow/grpc-proxy" - rev = "0f1106ef9c766333b9acb4b81e705da4bade7215" - sha256 = "087kid1xiaxnhdhljcm1587cgiiwr0iznk931znkrz3f4gdjyqa2" - -["github.com/naoina/go-stringutil"] - sumVersion = "v0.1.0" - ["github.com/naoina/go-stringutil".fetch] - type = "git" - url = "https://github.com/naoina/go-stringutil" - rev = "6b638e95a32d0c1131db0e7fe83775cbea4a0d0b" - sha256 = "00831p1wn3rimybk1z8l30787kn1akv5jax5wx743nn76qcmkmc6" - -["github.com/naoina/toml"] - sumVersion = "v0.1.2-0.20170918210437-9fafd6967416" - ["github.com/naoina/toml".fetch] - type = "git" - url = "https://github.com/naoina/toml" - rev = "9fafd69674167c06933b1787ae235618431ce87f" - sha256 = "0mpvdnidgab48k7dfq1vaiz1wny8n29y7zxpipnp1zm8ibxpism0" - -["github.com/nats-io/jwt"] - sumVersion = "v0.3.2" - ["github.com/nats-io/jwt".fetch] - type = "git" - url = "https://github.com/nats-io/jwt" - rev = "0c3fc7aed8bb2534e7bfdf0968a75890402d48cd" - sha256 = "0n44ghpz6hnbd2i074ikrj72rd2vnxpg1g3nhv1ly1kr0832khx6" - -["github.com/nats-io/nats-server/v2"] - sumVersion = "v2.1.2" - ["github.com/nats-io/nats-server/v2".fetch] - type = "git" - url = "https://github.com/nats-io/nats-server" - rev = "679bedafd96f85ddfa56a4d5736517c18842047a" - sha256 = "1jxi6d0zbhisxprlynvqw3dl1lz4wwxiy9gnpaqrwx1yi3kvvg62" - -["github.com/nats-io/nats.go"] - sumVersion = "v1.9.1" - ["github.com/nats-io/nats.go".fetch] - type = "git" - url = "https://github.com/nats-io/nats.go" - rev = "6063d679d23ae5b3edb4030d5e89a6e30ea53bc6" - sha256 = "0mmbwri2k2c8q1w0fr0g5s81709lfr6wyarvaf3gibc7cig10pij" - -["github.com/nats-io/nkeys"] - sumVersion = "v0.1.3" - ["github.com/nats-io/nkeys".fetch] - type = "git" - url = "https://github.com/nats-io/nkeys" - rev = "f1930e19b436412202ab130a733187cc6f40ba7e" - sha256 = "1fip0bja471mavvp67bninpd24jviwpnh7w99kchyiy27lbxy4hp" - -["github.com/nats-io/nuid"] - sumVersion = "v1.0.1" - ["github.com/nats-io/nuid".fetch] - type = "git" - url = "https://github.com/nats-io/nuid" - rev = "4b96681fa6d28dd0ab5fe79bac63b3a493d9ee94" - sha256 = "11zbhg4kds5idsya04bwz4plj0mmiigypzppzih731ppbk2ms1zg" - -["github.com/neilotoole/errgroup"] - sumVersion = "v0.1.5" - ["github.com/neilotoole/errgroup".fetch] - type = "git" - url = "https://github.com/neilotoole/errgroup" - rev = "1b5ee5ba6837fe62f5c9f2275033db8ec84de004" - sha256 = "0jk0ws9cxdiicfd4w7mpvfgsx4fabgpjhyl8jwbqnzpq2w0pgk6p" - -["github.com/niemeyer/pretty"] - sumVersion = "v0.0.0-20200227124842-a10e7caefd8e" - ["github.com/niemeyer/pretty".fetch] - type = "git" - url = "https://github.com/niemeyer/pretty" - rev = "a10e7caefd8e0d600cea437f5c3613aeb1553d56" - sha256 = "1jmazh4xzaa3v6g46hz60q2z7nmqs9l9cxdzmmscn3kbcs2znq4v" - -["github.com/nishanths/predeclared"] - sumVersion = "v0.0.0-20200524104333-86fad755b4d3" - ["github.com/nishanths/predeclared".fetch] - type = "git" - url = "https://github.com/nishanths/predeclared" - rev = "86fad755b4d311159d91c13de0c9925a433fd6e5" - sha256 = "1prcndh4kds229xhhh4l7m25dn8w1wp7kj5gpcjs1z38w1jcpdh3" - -["github.com/nxadm/tail"] - sumVersion = "v1.4.8" - ["github.com/nxadm/tail".fetch] - type = "git" - url = "https://github.com/nxadm/tail" - rev = "abad231d8d07ef91e09cd4c4c457cac35ed3bbb9" - sha256 = "1j2gi485fhwdpmyzn42wk62103fclwbfywg42p275z1qv2bsz1rc" - -["github.com/oklog/oklog"] - sumVersion = "v0.3.2" - ["github.com/oklog/oklog".fetch] - type = "git" - url = "https://github.com/oklog/oklog" - rev = "e3ad1c411c27b4bc18c5facb9331820d141a5a54" - sha256 = "1xnjxhgi0zm51skl533la50h133a245i57wqa3h7fr2lv2jqpzny" - -["github.com/oklog/run"] - sumVersion = "v1.0.0" - ["github.com/oklog/run".fetch] - type = "git" - url = "https://github.com/oklog/run" - rev = "4dadeb3030eda0273a12382bb2348ffc7c9d1a39" - sha256 = "1pbjza4claaj95fpqvvfrysvs10y7dm0pl6qr5lzh6qy1vnhmcgw" - -["github.com/oklog/ulid"] - sumVersion = "v1.3.1" - ["github.com/oklog/ulid".fetch] - type = "git" - url = "https://github.com/oklog/ulid" - rev = "02a8604050d8466dd915307496174adb9be4593a" - sha256 = "0hybwyid820n80axrk863k2py93hbqlq6hxhf84ppmz0qd0ys0gq" - -["github.com/olekukonko/tablewriter"] - sumVersion = "v0.0.2-0.20190409134802-7e037d187b0c" - ["github.com/olekukonko/tablewriter".fetch] - type = "git" - url = "https://github.com/olekukonko/tablewriter" - rev = "7e037d187b0c13d81ccf0dd1c6b990c2759e6597" - sha256 = "0z7plnnnps1xlbbfjr99xxalpjz5kxizi24n4cdkqgp07gayh0af" - -["github.com/onsi/ginkgo"] - sumVersion = "v1.16.4" - ["github.com/onsi/ginkgo".fetch] - type = "git" - url = "https://github.com/onsi/ginkgo" - rev = "d125cd027fee341b3b3d65858a4121cf4931fead" - sha256 = "0rpzh0vg2k33szcq17rdwjvj3q6djp7vqfvasck40gsibadimnd7" - -["github.com/onsi/gomega"] - sumVersion = "v1.13.0" - ["github.com/onsi/gomega".fetch] - type = "git" - url = "https://github.com/onsi/gomega" - rev = "dbc6ecdcc526d81592dab902de6cbaf7be9a8a13" - sha256 = "1x49qblj010z4xvfj7c4jh9q9awrkvbwnfrglvbh30gglmmsss8g" - -["github.com/op/go-logging"] - sumVersion = "v0.0.0-20160315200505-970db520ece7" - ["github.com/op/go-logging".fetch] - type = "git" - url = "https://github.com/op/go-logging" - rev = "970db520ece77730c7e4724c61121037378659d9" - sha256 = "1cpna2x5l071z1vrnk7zipdkka8dzwsjyx7m79xk0lr08rip0kcj" - -["github.com/opencontainers/go-digest"] - sumVersion = "v1.0.0-rc1" - ["github.com/opencontainers/go-digest".fetch] - type = "git" - url = "https://github.com/opencontainers/go-digest" - rev = "279bed98673dd5bef374d3b6e4b09e2af76183bf" - sha256 = "01gc7fpn8ax429024p2fcx3yb18axwz5bjf2hqxlii1jbsgw4bh9" - -["github.com/opencontainers/image-spec"] - sumVersion = "v1.0.1" - ["github.com/opencontainers/image-spec".fetch] - type = "git" - url = "https://github.com/opencontainers/image-spec" - rev = "d60099175f88c47cd379c4738d158884749ed235" - sha256 = "03dvbj3dln8c55v9gp79mgmz2yi2ws3r08iyz2fk41y3i22iaw1q" - -["github.com/opencontainers/runc"] - sumVersion = "v1.0.2" - ["github.com/opencontainers/runc".fetch] - type = "git" - url = "https://github.com/opencontainers/runc" - rev = "52b36a2dd837e8462de8e01458bf02cf9eea47dd" - sha256 = "1bpckghjah0rczciw1a1ab8z718lb2d3k4mjm4zb45lpm3njmrcp" - -["github.com/opencontainers/runtime-spec"] - sumVersion = "v1.0.3-0.20210326190908-1c3f411f0417" - ["github.com/opencontainers/runtime-spec".fetch] - type = "git" - url = "https://github.com/opencontainers/runtime-spec" - rev = "1c3f411f041711bbeecf35ff7e93461ea6789220" - sha256 = "1azk8z41ga8af35c966f06vrq9y9hwz6mkm59r3py5qaamzim3qq" - -["github.com/opencontainers/selinux"] - sumVersion = "v1.8.2" - ["github.com/opencontainers/selinux".fetch] - type = "git" - url = "https://github.com/opencontainers/selinux" - rev = "76bc82e11d854d3e40c08889d13c98abcea72ea2" - sha256 = "1dl1h8nzpyhsfki1dcjphm5h4n52qwilahyl6qlnwgzcc76pwizq" - -["github.com/opentracing-contrib/go-observer"] - sumVersion = "v0.0.0-20170622124052-a52f23424492" - ["github.com/opentracing-contrib/go-observer".fetch] - type = "git" - url = "https://github.com/opentracing-contrib/go-observer" - rev = "a52f2342449246d5bcc273e65cbdcfa5f7d6c63c" - sha256 = "1q7z458m2vh3bzml4x9vm2paffqn1jcgiydbisl0zg2asfniq7k3" - -["github.com/opentracing/basictracer-go"] - sumVersion = "v1.0.0" - ["github.com/opentracing/basictracer-go".fetch] - type = "git" - url = "https://github.com/opentracing/basictracer-go" - rev = "1b32af207119a14b1b231d451df3ed04a72efebf" - sha256 = "0hs969asib4yqj5k755zr0byz2iqvjbs6z1szcnr50q6fihigca0" - -["github.com/opentracing/opentracing-go"] - sumVersion = "v1.1.0" - ["github.com/opentracing/opentracing-go".fetch] - type = "git" - url = "https://github.com/opentracing/opentracing-go" - rev = "659c90643e714681897ec2521c60567dd21da733" - sha256 = "0aj9cbm21zsg1i5l25hz8gn0yf99yxyxcp1gqh3yd5g4knj2cgzf" - -["github.com/openzipkin-contrib/zipkin-go-opentracing"] - sumVersion = "v0.4.5" - ["github.com/openzipkin-contrib/zipkin-go-opentracing".fetch] - type = "git" - url = "https://github.com/openzipkin-contrib/zipkin-go-opentracing" - rev = "223664cff43dfd9f54659ff15dc4bd6e023d0c14" - sha256 = "0mdvx50mw17c926rhhkjg8z54v8h0jvnqahdlpij2kbxi3ncgr7q" - -["github.com/openzipkin/zipkin-go"] - sumVersion = "v0.2.2" - ["github.com/openzipkin/zipkin-go".fetch] - type = "git" - url = "https://github.com/openzipkin/zipkin-go" - rev = "c29478e51bfb2e9c93e0e9f5e015e5993a490399" - sha256 = "18c884anq0pkahmjwyhrdg247wyq33ccxp5k7fcq5gzh8g6dj92s" - -["github.com/ory/dockertest"] - sumVersion = "v3.3.5+incompatible" - ["github.com/ory/dockertest".fetch] - type = "git" - url = "https://github.com/ory/dockertest" - rev = "2b0896a948c60f3207381d9fc259d0fc13227c30" - sha256 = "0fgj60l82sl6chd7i4s7lxqjr9hxkzmkaxnc8h6qbvn42246sy68" - -["github.com/otiai10/copy"] - sumVersion = "v1.6.0" - ["github.com/otiai10/copy".fetch] - type = "git" - url = "https://github.com/otiai10/copy" - rev = "edeb9f37d4d0c28725014fcab6635120197932a1" - sha256 = "1l84qx9n464nh1izgr1kx5xb1ab878b2x803fck0w9gy1bwch25h" - -["github.com/otiai10/curr"] - sumVersion = "v1.0.0" - ["github.com/otiai10/curr".fetch] - type = "git" - url = "https://github.com/otiai10/curr" - rev = "88e2f2cffa0b5f13e90ee963a321bd1b2f715561" - sha256 = "0fpw20adq2wff7l4c87zaavj9jra4d64a8bbjixiiv3bbarim987" - -["github.com/otiai10/mint"] - sumVersion = "v1.3.2" - ["github.com/otiai10/mint".fetch] - type = "git" - url = "https://github.com/otiai10/mint" - rev = "3588d691480a831b1e78b776d3bccd9d5ce6461c" - sha256 = "0448nkhmp1ny64g2d7m5x8inz118zj03j6q0b97q3dszzs7hhan4" - -["github.com/pact-foundation/pact-go"] - sumVersion = "v1.0.4" - ["github.com/pact-foundation/pact-go".fetch] - type = "git" - url = "https://github.com/pact-foundation/pact-go" - rev = "3ce08c8af46b7bc33a06efc9b8807c08806c8af2" - sha256 = "08mnyf1yb6zjqfzs1pdh44drv390lfilhh4vi4asnjk52gknqfn0" - -["github.com/pascaldekloe/goe"] - sumVersion = "v0.1.0" - ["github.com/pascaldekloe/goe".fetch] - type = "git" - url = "https://github.com/pascaldekloe/goe" - rev = "57f6aae5913c64c9bcae5dbdffd33365b5a7f138" - sha256 = "1dqd3mfb4z2vmv6pg6fhgvfc53vhndk24wcl9lj1rz02n6m279fq" - -["github.com/pborman/uuid"] - sumVersion = "v1.2.0" - ["github.com/pborman/uuid".fetch] - type = "git" - url = "https://github.com/pborman/uuid" - rev = "8b1b92947f46224e3b97bb1a3a5b0382be00d31e" - sha256 = "0f146yjqwx2mr110kl8scjhqd08hys7vr5z0d0a3lskb6yy22gfg" - -["github.com/pelletier/go-toml"] - sumVersion = "v1.9.3" - ["github.com/pelletier/go-toml".fetch] - type = "git" - url = "https://github.com/pelletier/go-toml" - rev = "8e44986c28d58aefff6125e52814ed1eb7eb0a6a" - sha256 = "0cqwnvlgs1wgdgjxlwv8j52f7d6syniadr51sjh2fya99m5wzvsn" - -["github.com/performancecopilot/speed"] - sumVersion = "v3.0.0+incompatible" - ["github.com/performancecopilot/speed".fetch] - type = "git" - url = "https://github.com/performancecopilot/speed" - rev = "839069a3ed70162d3bcefb9891c8ca852d877c1c" - sha256 = "1r0l6i80xkx9dcysa7ajvs5ypqkw2k0422k0hbz28fizaq9d8y0m" - -["github.com/peterh/liner"] - sumVersion = "v1.1.1-0.20190123174540-a2c9a5303de7" - ["github.com/peterh/liner".fetch] - type = "git" - url = "https://github.com/peterh/liner" - rev = "a2c9a5303de792c7581a3b80a8f10258319bb20e" - sha256 = "1cxpr92adcyv4bimswkfg3cmpmk71zq9gpyckhc64j2p4r4mb8zr" - -["github.com/petermattis/goid"] - sumVersion = "v0.0.0-20180202154549-b0b1615b78e5" - ["github.com/petermattis/goid".fetch] - type = "git" - url = "https://github.com/petermattis/goid" - rev = "b0b1615b78e5ee59739545bb38426383b2cda4c9" - sha256 = "0ghfxn045r0bbn2vszw897lxzmhnm4k59aypjvpxl0pbzsw9ab2c" - -["github.com/pierrec/lz4"] - sumVersion = "v2.0.5+incompatible" - ["github.com/pierrec/lz4".fetch] - type = "git" - url = "https://github.com/pierrec/lz4" - rev = "ea731401f5c95a8ba30f15787e5e0fb77c60c66b" - sha256 = "0y5rh7z01zycd59nnjpkqq0ydyjmcg9j1xw15q1i600l9j9g617p" - -["github.com/pkg/errors"] - sumVersion = "v0.9.1" - ["github.com/pkg/errors".fetch] - type = "git" - url = "https://github.com/pkg/errors" - rev = "614d223910a179a466c1767a985424175c39b465" - sha256 = "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq" - -["github.com/pkg/profile"] - sumVersion = "v1.2.1" - ["github.com/pkg/profile".fetch] - type = "git" - url = "https://github.com/pkg/profile" - rev = "5b67d428864e92711fcbd2f8629456121a56d91f" - sha256 = "0blqmvgqvdbqmh3fp9pfdxc9w1qfshrr0zy9whj0sn372bw64qnr" - -["github.com/pkg/sftp"] - sumVersion = "v1.10.1" - ["github.com/pkg/sftp".fetch] - type = "git" - url = "https://github.com/pkg/sftp" - rev = "3edd153f213d8d4191a0ee4577c61cca19436632" - sha256 = "0iw6lijdljwh5xw5hsy0b578cr52h6vvm7hbnzlrvciwhh4sfhhp" - -["github.com/pmezard/go-difflib"] - sumVersion = "v1.0.0" - ["github.com/pmezard/go-difflib".fetch] - type = "git" - url = "https://github.com/pmezard/go-difflib" - rev = "792786c7400a136282c1664665ae0a8db921c6c2" - sha256 = "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw" - -["github.com/posener/complete"] - sumVersion = "v1.1.1" - ["github.com/posener/complete".fetch] - type = "git" - url = "https://github.com/posener/complete" - rev = "98eb9847f27ba2008d380a32c98be474dea55bdf" - sha256 = "1nbdiybjizbaxbf5q0xwbq0cjqw4bl6jggvsjzrpif0w86fcjda2" - -["github.com/prometheus/client_golang"] - sumVersion = "v1.11.0" - ["github.com/prometheus/client_golang".fetch] - type = "git" - url = "https://github.com/prometheus/client_golang" - rev = "8184d76b3b0bd3b01ed903690431ccb6826bf3e0" - sha256 = "1xdspykw6wgp0bv7s1r7gklvhr5jfmi59n8bg8zhy3vi0yi902y3" - -["github.com/prometheus/client_model"] - sumVersion = "v0.2.0" - ["github.com/prometheus/client_model".fetch] - type = "git" - url = "https://github.com/prometheus/client_model" - rev = "7bc5445566f0fe75b15de23e6b93886e982d7bf9" - sha256 = "0jffnz94d6ff39fr96b5w8i8yk26pwnrfggzz8jhi8k0yihg2c9d" - -["github.com/prometheus/common"] - sumVersion = "v0.29.0" - ["github.com/prometheus/common".fetch] - type = "git" - url = "https://github.com/prometheus/common" - rev = "8281fb2779ab057c7d90fec6b24ce8eb29edcc13" - sha256 = "09zavm3005skf5mgkr2xndpcga2m3zpm4iq2r7kwyqc5q0cpq02m" - -["github.com/prometheus/procfs"] - sumVersion = "v0.6.0" - ["github.com/prometheus/procfs".fetch] - type = "git" - url = "https://github.com/prometheus/procfs" - rev = "e971af51d579a49db14657a96eebec39cefb4755" - sha256 = "0czzw37dq0sfq7rivxmxxw5hy287grqnng6q6hfz6mkqmhqgm1m6" - -["github.com/prometheus/tsdb"] - sumVersion = "v0.7.1" - ["github.com/prometheus/tsdb".fetch] - type = "git" - url = "https://github.com/prometheus/tsdb" - rev = "c20450564cc42983bf923c13f3fda42de709ac13" - sha256 = "1c1da8i5byvhh4fp3vqjfb65aaksjskn3ggb8wg9hcfzjrhgpz04" - -["github.com/rakyll/statik"] - sumVersion = "v0.1.7" - ["github.com/rakyll/statik".fetch] - type = "git" - url = "https://github.com/rakyll/statik" - rev = "46bd79c4540341fe472fe71dd2ce0ccd4e635450" - sha256 = "0y0kbzma55vmyqhyrw9ssgvxn6nw7d0zg72a7nz8vp1zly4hs6va" - -["github.com/rcrowley/go-metrics"] - sumVersion = "v0.0.0-20200313005456-10cdbea86bc0" - ["github.com/rcrowley/go-metrics".fetch] - type = "git" - url = "https://github.com/rcrowley/go-metrics" - rev = "10cdbea86bc0b922507ce91d43f4f78a5bea2e8f" - sha256 = "157rfn5kf1mdn65gay38zpv6zam3sfa5a3zkx9wxk77y7w3kam19" - -["github.com/regen-network/cosmos-proto"] - sumVersion = "v0.3.1" - ["github.com/regen-network/cosmos-proto".fetch] - type = "git" - url = "https://github.com/regen-network/cosmos-proto" - rev = "f793b6157c2cfb8c1c797100e1918b2d1eb40615" - sha256 = "05sk9jhk4qz5m4vkj0wr0swhvq9niz7v7bvpxh063vz0y6mmpj05" - -["github.com/rjeczalik/notify"] - sumVersion = "v0.9.1" - ["github.com/rjeczalik/notify".fetch] - type = "git" - url = "https://github.com/rjeczalik/notify" - rev = "0f065fa99b48b842c3fd3e2c8b194c6f2b69f6b8" - sha256 = "15zzgyry10hvg0z2d3fm1yncbscln9mmvgsm29w67yncf6n8vcb0" - -["github.com/rogpeppe/fastuuid"] - sumVersion = "v1.2.0" - ["github.com/rogpeppe/fastuuid".fetch] - type = "git" - url = "https://github.com/rogpeppe/fastuuid" - rev = "10c3923834d38e951ae8f627bfec2dc632c5b6cb" - sha256 = "028acdg63zkxpjz3l639nlhki2l0canr2v5jglrmwa1wpjqcfff8" - -["github.com/rogpeppe/go-internal"] - sumVersion = "v1.3.0" - ["github.com/rogpeppe/go-internal".fetch] - type = "git" - url = "https://github.com/rogpeppe/go-internal" - rev = "438578804ca6f31be148c27683afc419ce47c06e" - sha256 = "0mcdh1licgnnahwml9y2iq6xy5x9xmjw5frcnds2s3wpjyqrl216" - -["github.com/rs/cors"] - sumVersion = "v1.7.0" - ["github.com/rs/cors".fetch] - type = "git" - url = "https://github.com/rs/cors" - rev = "db0fe48135e83b5812a5a31be0eea66984b1b521" - sha256 = "1abz6jxp7bhcwwsgcz9ajkijspkc46s0chrhqspy4czskmmazygi" - -["github.com/rs/xhandler"] - sumVersion = "v0.0.0-20160618193221-ed27b6fd6521" - ["github.com/rs/xhandler".fetch] - type = "git" - url = "https://github.com/rs/xhandler" - rev = "ed27b6fd65218132ee50cd95f38474a3d8a2cd12" - sha256 = "1fpp4rh812nvr5m0s0d5dsa1ypr4333mcijng0dp5bcgg2bqkwdz" - -["github.com/rs/xid"] - sumVersion = "v1.2.1" - ["github.com/rs/xid".fetch] - type = "git" - url = "https://github.com/rs/xid" - rev = "15d26544def341f036c5f8dca987a4cbe575032c" - sha256 = "1vgw1dikqw273awcci6pzifs7shkl5ah4l88j1zjbnpgbiwzlx9j" - -["github.com/rs/zerolog"] - sumVersion = "v1.23.0" - ["github.com/rs/zerolog".fetch] - type = "git" - url = "https://github.com/rs/zerolog" - rev = "117cb53bc66413d9a810ebed32383e53416347e3" - sha256 = "1cz9g25b47hxhz2nd15pcxarzwnwknm4f2nm4dspr1l99jxll733" - -["github.com/russross/blackfriday"] - sumVersion = "v1.5.2" - ["github.com/russross/blackfriday".fetch] - type = "git" - url = "https://github.com/russross/blackfriday" - rev = "05f3235734ad95d0016f6a23902f06461fcf567a" - sha256 = "0jzbfzcywqcrnym4gxlz6nphmm1grg6wsl4f0r9x384rn83wkj7c" - -["github.com/russross/blackfriday/v2"] - sumVersion = "v2.0.1" - ["github.com/russross/blackfriday/v2".fetch] - type = "git" - url = "https://github.com/russross/blackfriday" - rev = "d3b5b032dc8e8927d31a5071b56e14c89f045135" - sha256 = "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j" - -["github.com/ryanuber/columnize"] - sumVersion = "v0.0.0-20160712163229-9b3edd62028f" - ["github.com/ryanuber/columnize".fetch] - type = "git" - url = "https://github.com/ryanuber/columnize" - rev = "9b3edd62028f107d7cabb19353292afd29311a4e" - sha256 = "1ya1idkbb0a9fjlhkcnh5a9yvpwzwfmbyg7d56lpplwr9rqi1da4" - -["github.com/samuel/go-zookeeper"] - sumVersion = "v0.0.0-20190923202752-2cc03de413da" - ["github.com/samuel/go-zookeeper".fetch] - type = "git" - url = "https://github.com/samuel/go-zookeeper" - rev = "2cc03de413da42869e2db7ce7965d3e978d917eb" - sha256 = "11z2r73q6qk9xy3mzkhdxd7cbfqsdr0105d5m03q4r47fki46hgx" - -["github.com/sasha-s/go-deadlock"] - sumVersion = "v0.2.1-0.20190427202633-1595213edefa" - ["github.com/sasha-s/go-deadlock".fetch] - type = "git" - url = "https://github.com/sasha-s/go-deadlock" - rev = "1595213edefa28ca5047b00340c63557f9c051d0" - sha256 = "06h5g16zlfnw9wvgaqp7jfav3n3pvli6asfcx1hv44sl601wnwk0" - -["github.com/sean-/seed"] - sumVersion = "v0.0.0-20170313163322-e2103e2c3529" - ["github.com/sean-/seed".fetch] - type = "git" - url = "https://github.com/sean-/seed" - rev = "e2103e2c35297fb7e17febb81e49b312087a2372" - sha256 = "0glir8jxi1w7aga2jwdb63pp1h8q4whknili7xixsqzwyy716125" - -["github.com/seccomp/libseccomp-golang"] - sumVersion = "v0.9.1" - ["github.com/seccomp/libseccomp-golang".fetch] - type = "git" - url = "https://github.com/seccomp/libseccomp-golang" - rev = "689e3c1541a84461afc49c1c87352a6cedf72e9c" - sha256 = "022c8prvxz0shrifams7lq4xidvkcqg9xi87wjjcpmbikqi72cna" - -["github.com/segmentio/fasthash"] - sumVersion = "v1.0.3" - ["github.com/segmentio/fasthash".fetch] - type = "git" - url = "https://github.com/segmentio/fasthash" - rev = "9dc1b83dc0d8bf7d26ea69d6c6d7a11ebf6fbb89" - sha256 = "0wrlviycj5hz4w576f156h2cpnnmkflfx5jfj298qzn5lymnqv86" - -["github.com/shirou/gopsutil"] - sumVersion = "v2.20.5+incompatible" - ["github.com/shirou/gopsutil".fetch] - type = "git" - url = "https://github.com/shirou/gopsutil" - rev = "663af789c0858f2ede24f71a8dfba3643100dec9" - sha256 = "1q115pn37ymfqis43sm82iivbab4zk4gmjng21yb54vjk8pzsjvr" - -["github.com/shurcooL/sanitized_anchor_name"] - sumVersion = "v1.0.0" - ["github.com/shurcooL/sanitized_anchor_name".fetch] - type = "git" - url = "https://github.com/shurcooL/sanitized_anchor_name" - rev = "7bfe4c7ecddb3666a94b053b422cdd8f5aaa3615" - sha256 = "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f" - -["github.com/sirupsen/logrus"] - sumVersion = "v1.8.1" - ["github.com/sirupsen/logrus".fetch] - type = "git" - url = "https://github.com/sirupsen/logrus" - rev = "bdc0db8ead3853c56b7cd1ac2ba4e11b47d7da6b" - sha256 = "0rvqzic2zz7fpxyizmqxwmhv1m52ii9bgxnqa6km8wsa0l08wh42" - -["github.com/smartystreets/assertions"] - sumVersion = "v0.0.0-20180927180507-b2de0cb4f26d" - ["github.com/smartystreets/assertions".fetch] - type = "git" - url = "https://github.com/smartystreets/assertions" - rev = "b2de0cb4f26d0705483a2f495d89896d0b808573" - sha256 = "1i7ldgavgl35c7gk25p7bvdr282ckng090zr4ch9mk1705akx09y" - -["github.com/smartystreets/goconvey"] - sumVersion = "v1.6.4" - ["github.com/smartystreets/goconvey".fetch] - type = "git" - url = "https://github.com/smartystreets/goconvey" - rev = "505e419363375c0dc132d3ac02632a4ee32199ca" - sha256 = "07zjxwszayal88z1j2bwnqrsa32vg8l4nivks5yfr9j8xfsw7n6m" - -["github.com/snikch/goodman"] - sumVersion = "v0.0.0-20171125024755-10e37e294daa" - ["github.com/snikch/goodman".fetch] - type = "git" - url = "https://github.com/snikch/goodman" - rev = "10e37e294daa3c9a90abded60ff9924bafab3888" - sha256 = "0n6m17lmlfsynd7ja3s3w7pgpi7zdyakqbg4ahzdq9918fwddqmp" - -["github.com/soheilhy/cmux"] - sumVersion = "v0.1.4" - ["github.com/soheilhy/cmux".fetch] - type = "git" - url = "https://github.com/soheilhy/cmux" - rev = "e09e9389d85d8492d313d73d1469c029e710623f" - sha256 = "1f736g68d9vwlyfb6g0fxkr0r875369xafk30cz8kaq5niaqwv0h" - -["github.com/sony/gobreaker"] - sumVersion = "v0.4.1" - ["github.com/sony/gobreaker".fetch] - type = "git" - url = "https://github.com/sony/gobreaker" - rev = "21dbfda1fc5e89b91bd0c835a91c31fe4d461e88" - sha256 = "0iarblm3w2d0p997jsw9bkznfj0wa8d586nh37ii5gnqy41va700" - -["github.com/spaolacci/murmur3"] - sumVersion = "v1.1.0" - ["github.com/spaolacci/murmur3".fetch] - type = "git" - url = "https://github.com/spaolacci/murmur3" - rev = "f09979ecbc725b9e6d41a297405f65e7e8804acc" - sha256 = "1lv3zyz3jy2d76bhvvs8svygx66606iygdvwy5cwc0p5z8yghq25" - -["github.com/spf13/afero"] - sumVersion = "v1.6.0" - ["github.com/spf13/afero".fetch] - type = "git" - url = "https://github.com/spf13/afero" - rev = "bc94f58beda5dbff6f74599fcb1f1717c5b1c111" - sha256 = "0yi8p0yxiidpcg4cagxg2iyqcaapsng89rak4qyxmgails2fqg37" - -["github.com/spf13/cast"] - sumVersion = "v1.3.1" - ["github.com/spf13/cast".fetch] - type = "git" - url = "https://github.com/spf13/cast" - rev = "1ffadf551085444af981432dd0f6d1160c11ec64" - sha256 = "0lb84788glr0qzrq2ifi36rgvp96qrgywvxrr3ggq5hrbr38hgn1" - -["github.com/spf13/cobra"] - sumVersion = "v1.2.1" - ["github.com/spf13/cobra".fetch] - type = "git" - url = "https://github.com/spf13/cobra" - rev = "de187e874d1ca382320088f8f6d76333408e5c2e" - sha256 = "091kz3xnlsgpqb90fc5nhjr4yfr8b8sjnyl0zd4wm1fgzkpw09jh" - -["github.com/spf13/jwalterweatherman"] - sumVersion = "v1.1.0" - ["github.com/spf13/jwalterweatherman".fetch] - type = "git" - url = "https://github.com/spf13/jwalterweatherman" - rev = "94f6ae3ed3bceceafa716478c5fbf8d29ca601a1" - sha256 = "1ywmkwci5zyd88ijym6f30fj5c0k2yayxarkmnazf5ybljv50q7b" - -["github.com/spf13/pflag"] - sumVersion = "v1.0.5" - ["github.com/spf13/pflag".fetch] - type = "git" - url = "https://github.com/spf13/pflag" - rev = "2e9d26c8c37aae03e3f9d4e90b7116f5accb7cab" - sha256 = "0gpmacngd0gpslnbkzi263f5ishigzgh6pbdv9hp092rnjl4nd31" - -["github.com/spf13/viper"] - sumVersion = "v1.8.1" - ["github.com/spf13/viper".fetch] - type = "git" - url = "https://github.com/spf13/viper" - rev = "bd038658992ae06c6ccf069a5b4bebe432602d0f" - sha256 = "0jcsvd9l05pv10rma6zicp44q2mlvxj0qlhnf4zcg2pymb5i0hq6" - -["github.com/status-im/keycard-go"] - sumVersion = "v0.0.0-20190316090335-8537d3370df4" - ["github.com/status-im/keycard-go".fetch] - type = "git" - url = "https://github.com/status-im/keycard-go" - rev = "8537d3370df43a30a3d450c023783d2e43432b89" - sha256 = "15kbh04282vyb59fy9rjr533aa6vlxxh0cpa66x2qw6wb0896za1" - -["github.com/steakknife/bloomfilter"] - sumVersion = "v0.0.0-20180922174646-6819c0d2a570" - ["github.com/steakknife/bloomfilter".fetch] - type = "git" - url = "https://github.com/steakknife/bloomfilter" - rev = "6819c0d2a57025e1700378ee59b7382d71987f14" - sha256 = "1dr4pb172rwi9cxvxl23j4j8q6ybqjfzll5dd14cd398f231nk81" - -["github.com/steakknife/hamming"] - sumVersion = "v0.0.0-20180906055917-c99c65617cd3" - ["github.com/steakknife/hamming".fetch] - type = "git" - url = "https://github.com/steakknife/hamming" - rev = "c99c65617cd3d686aea8365fe563d6542f01d940" - sha256 = "03scc8fkkwpbc7p9ymlrm6wg57mzr0d6s2k2dz2gp339pllxyxjr" - -["github.com/streadway/amqp"] - sumVersion = "v0.0.0-20190827072141-edfb9018d271" - ["github.com/streadway/amqp".fetch] - type = "git" - url = "https://github.com/streadway/amqp" - rev = "edfb9018d2714e4ec54dbaba37dbfef2bdadf0e4" - sha256 = "07icg7x7saawzqb9lm9avw6bizs387xdi27zry03m6z5i1a22zq2" - -["github.com/streadway/handy"] - sumVersion = "v0.0.0-20190108123426-d5acb3125c2a" - ["github.com/streadway/handy".fetch] - type = "git" - url = "https://github.com/streadway/handy" - rev = "d5acb3125c2a6654d2d691e6851674a645333da1" - sha256 = "02jwalahfj2lh1snklh6i5hysjl9npx59q31ihdfrva10dssg30r" - -["github.com/stretchr/objx"] - sumVersion = "v0.2.0" - ["github.com/stretchr/objx".fetch] - type = "git" - url = "https://github.com/stretchr/objx" - rev = "ea4fe68685ee0d3cee7032121851b57e7494e8ea" - sha256 = "0pcdvakxgddaiwcdj73ra4da05a3q4cgwbpm2w75ycq4kzv8ij8k" - -["github.com/stretchr/testify"] - sumVersion = "v1.7.0" - ["github.com/stretchr/testify".fetch] - type = "git" - url = "https://github.com/stretchr/testify" - rev = "acba37e5db06f0093b465a7d47822bf13644b66c" - sha256 = "0ixgjsvafr3513pz3r6pmgk074s2dxkll0dadvl25gkf30rkmh10" - -["github.com/subosito/gotenv"] - sumVersion = "v1.2.0" - ["github.com/subosito/gotenv".fetch] - type = "git" - url = "https://github.com/subosito/gotenv" - rev = "2ef7124db659d49edac6aa459693a15ae36c671a" - sha256 = "0mav91j7r4arjkpq5zcf9j74f6pww8ic53x43wy7kg3ibw31yjs5" - -["github.com/syndtr/gocapability"] - sumVersion = "v0.0.0-20200815063812-42c35b437635" - ["github.com/syndtr/gocapability".fetch] - type = "git" - url = "https://github.com/syndtr/gocapability" - rev = "42c35b4376354fd554efc7ad35e0b7f94e3a0ffb" - sha256 = "00zi0k190ydlm9drnafvj9p4cf6axm858wr71pbmq1p3r94iqws4" - -["github.com/syndtr/goleveldb"] - sumVersion = "v1.0.1-0.20200815110645-5c35d600f0ca" - ["github.com/syndtr/goleveldb".fetch] - type = "git" - url = "https://github.com/syndtr/goleveldb" - rev = "5c35d600f0caac04c20d52438103f1a7aa612598" - sha256 = "0wsqybzip0khzgk4cl23ilm30jnf4yd674dkbq4c26ivak9qkmz7" - -["github.com/tecbot/gorocksdb"] - sumVersion = "v0.0.0-20191217155057-f0fad39f321c" - ["github.com/tecbot/gorocksdb".fetch] - type = "git" - url = "https://github.com/tecbot/gorocksdb" - rev = "f0fad39f321c61bf05fcb4a01fe259606235e712" - sha256 = "0brf99da00jf91hf7w0qqk6yj61zcya9ci7pm8d60q6zl40i87c5" - -["github.com/tendermint/btcd"] - sumVersion = "v0.1.1" - ["github.com/tendermint/btcd".fetch] - type = "git" - url = "https://github.com/tendermint/btcd" - rev = "80daadac05d1cd29571fccf27002d79667a88b58" - sha256 = "16s909z5awvqi060rdj577wzbgziyk88s53x24kv9rzc71rm99x1" - -["github.com/tendermint/crypto"] - sumVersion = "v0.0.0-20191022145703-50d29ede1e15" - ["github.com/tendermint/crypto".fetch] - type = "git" - url = "https://github.com/tendermint/crypto" - rev = "50d29ede1e15ab205c8558ad67b85596ee19d3a0" - sha256 = "0vhyxsypb2q1zpcl464hlsdpap7kc3nj6gdff53xwrln2bg1jjin" - -["github.com/tendermint/go-amino"] - sumVersion = "v0.16.0" - ["github.com/tendermint/go-amino".fetch] - type = "git" - url = "https://github.com/tendermint/go-amino" - rev = "ccb15b138dfd74282be78f5e9059387768b12918" - sha256 = "1zcms3l5fihzg8nf4vhdk18qpn1jkbm3rpkjfpskfcrgzlxk6vi5" - -["github.com/tendermint/tendermint"] - sumVersion = "v0.34.14" - ["github.com/tendermint/tendermint".fetch] - type = "git" - url = "https://github.com/tendermint/tendermint" - rev = "85870def7b628effad73af942e638bbddf2ba8fd" - sha256 = "15rrh25qdc4dvq0f125a039n08wv82ijjd0zzrr3n9d6fv028mpw" - -["github.com/tendermint/tm-db"] - sumVersion = "v0.6.4" - ["github.com/tendermint/tm-db".fetch] - type = "git" - url = "https://github.com/tendermint/tm-db" - rev = "6f9a08cd4522fb13d8df69b1694587d5015114fc" - sha256 = "1sgjf2vaq554ybc0cwkzn17cz2ibzph2rq0dgaw21c2hym09437x" - -["github.com/tidwall/gjson"] - sumVersion = "v1.6.7" - ["github.com/tidwall/gjson".fetch] - type = "git" - url = "https://github.com/tidwall/gjson" - rev = "97ec619cbe9546828dc45cb856a5938dcf3d74e1" - sha256 = "1gq689xp5bqxn17hcg8kwciakr05rz84dgd8qpiy7aqdv8iqrghq" - -["github.com/tidwall/match"] - sumVersion = "v1.0.3" - ["github.com/tidwall/match".fetch] - type = "git" - url = "https://github.com/tidwall/match" - rev = "c2f534168b739a7ec1821a33839fb2f029f26bbc" - sha256 = "1haa5p7hsjqx0ijxbypgc9c31v128mykm1g0lyymvkk3qdajvcyr" - -["github.com/tidwall/pretty"] - sumVersion = "v1.0.2" - ["github.com/tidwall/pretty".fetch] - type = "git" - url = "https://github.com/tidwall/pretty" - rev = "ef453c788d6a371829f4f9967b014b2b81856df5" - sha256 = "0bfp2nqwd7w3709lsyw2iw71hgbrnhcs1nr9n4vbari408qk2rv0" - -["github.com/tidwall/sjson"] - sumVersion = "v1.1.4" - ["github.com/tidwall/sjson".fetch] - type = "git" - url = "https://github.com/tidwall/sjson" - rev = "b547b7aea4b0c9a8ed8885f0790aea039483f337" - sha256 = "0nin7n4bfjxznkkrjb4g7clprnmkdx79hgx1rjakxqp821l6s85s" - -["github.com/tmc/grpc-websocket-proxy"] - sumVersion = "v0.0.0-20190109142713-0ad062ec5ee5" - ["github.com/tmc/grpc-websocket-proxy".fetch] - type = "git" - url = "https://github.com/tmc/grpc-websocket-proxy" - rev = "0ad062ec5ee553a48f6dbd280b7a1b5638e8a113" - sha256 = "1anw4v9wspnw9xf2z5r9w0sszwjklyanl0l85wgg6nxak9gnrqp4" - -["github.com/tv42/httpunix"] - sumVersion = "v0.0.0-20150427012821-b75d8614f926" - ["github.com/tv42/httpunix".fetch] - type = "git" - url = "https://github.com/tv42/httpunix" - rev = "b75d8614f926c077e48d85f1f8f7885b758c6225" - sha256 = "1sd9nnyyjm7n96fa18l0shlnapld4m0yj5ij2ba0l9yaaa2byqm9" - -["github.com/tyler-smith/go-bip39"] - sumVersion = "v1.0.2" - ["github.com/tyler-smith/go-bip39".fetch] - type = "git" - url = "https://github.com/tyler-smith/go-bip39" - rev = "5e3853c3f4e1a44df487c7efeb064ee8b43755de" - sha256 = "1nbjm9h0hbchp3rgxlnzix5hzwa474kr311yqb1dqxmvyrngaq9w" - -["github.com/ugorji/go"] - sumVersion = "v1.1.7" - ["github.com/ugorji/go".fetch] - type = "git" - url = "https://github.com/ugorji/go" - rev = "23ab95ef5dc3b70286760af84ce2327a2b64ed62" - sha256 = "068gja55kbh2iivp03x4n9dcml0rxv0k64ivkmq06si2ar1835rm" - -["github.com/ugorji/go/codec"] - sumVersion = "v1.1.7" - relPath = "codec" - ["github.com/ugorji/go/codec".fetch] - type = "git" - url = "https://github.com/ugorji/go" - rev = "23ab95ef5dc3b70286760af84ce2327a2b64ed62" - sha256 = "068gja55kbh2iivp03x4n9dcml0rxv0k64ivkmq06si2ar1835rm" - -["github.com/urfave/cli"] - sumVersion = "v1.22.1" - ["github.com/urfave/cli".fetch] - type = "git" - url = "https://github.com/urfave/cli" - rev = "c71fbcefd21552b70cd625b2c54466006e258ad7" - sha256 = "04ymak18flqlfcn8lycmg8r3931al8dvr8f1cg9n4yjaskmg72v8" - -["github.com/vishvananda/netlink"] - sumVersion = "v1.1.0" - ["github.com/vishvananda/netlink".fetch] - type = "git" - url = "https://github.com/vishvananda/netlink" - rev = "f049be6f391489d3f374498fe0c8df8449258372" - sha256 = "1vhl30p1gx636a088ls4h6a0l8jjyfvz79fr5w0qzdrg4qg9h08h" - -["github.com/vishvananda/netns"] - sumVersion = "v0.0.0-20191106174202-0a2b9b5464df" - ["github.com/vishvananda/netns".fetch] - type = "git" - url = "https://github.com/vishvananda/netns" - rev = "0a2b9b5464df8343199164a0321edf3313202f7e" - sha256 = "1k1zb7pzc4r4wicq7ncspf6zsvq298lvpsq963ibj813shg657xw" - -["github.com/vmihailenco/msgpack/v5"] - sumVersion = "v5.1.4" - ["github.com/vmihailenco/msgpack/v5".fetch] - type = "git" - url = "https://github.com/vmihailenco/msgpack" - rev = "77a6f797778061f2c9c30b13418c3a2f5cb98070" - sha256 = "109nansr75fidx3r00nb4jkc14davfzb88kdf75h6jyk06b50iaa" - -["github.com/vmihailenco/tagparser"] - sumVersion = "v0.1.2" - ["github.com/vmihailenco/tagparser".fetch] - type = "git" - url = "https://github.com/vmihailenco/tagparser" - rev = "be04d19a03d0f4739671a500012335e98ebfeb9f" - sha256 = "0418gkcds57c6g6slf8kl3ya7xp14p5y42w1gqkiqp6p98nhblqh" - -["github.com/wsddn/go-ecdh"] - sumVersion = "v0.0.0-20161211032359-48726bab9208" - ["github.com/wsddn/go-ecdh".fetch] - type = "git" - url = "https://github.com/wsddn/go-ecdh" - rev = "48726bab92085232373de4ec5c51ce7b441c63a0" - sha256 = "1rszp777snp9qvnh2giim7d42cvca5l180gq4j7clbmshnzg6c6m" - -["github.com/xiang90/probing"] - sumVersion = "v0.0.0-20190116061207-43a291ad63a2" - ["github.com/xiang90/probing".fetch] - type = "git" - url = "https://github.com/xiang90/probing" - rev = "43a291ad63a214a207fefbf03c7d9d78b703162b" - sha256 = "1z22ms16j5j42775mf31isanwx2pwr1d8wqw8006dczjv36qnz5i" - -["github.com/xordataexchange/crypt"] - sumVersion = "v0.0.3-0.20170626215501-b2862e3d0a77" - ["github.com/xordataexchange/crypt".fetch] - type = "git" - url = "https://github.com/xordataexchange/crypt" - rev = "b2862e3d0a775f18c7cfe02273500ae307b61218" - sha256 = "04q3856anpzl4gdfgmg7pbp9cx231nkz3ymq2xp27rnmmwhfxr8y" - -["github.com/ybbus/jsonrpc"] - sumVersion = "v2.1.2+incompatible" - ["github.com/ybbus/jsonrpc".fetch] - type = "git" - url = "https://github.com/ybbus/jsonrpc" - rev = "dd866631e904a5df2067d934985c5def68f391ac" - sha256 = "1k2i4q4bliqfkam4gd00729plgi6f7wa60npqpgagrlfnd4w9k4m" - -["github.com/yuin/goldmark"] - sumVersion = "v1.3.5" - ["github.com/yuin/goldmark".fetch] - type = "git" - url = "https://github.com/yuin/goldmark" - rev = "9f5125e104c38283b8ca0a581793abe4260dd786" - sha256 = "08rrhfji92hixiv3v0wvamwcy56f90wsw84w7lyvad7g90kbsknx" - -["github.com/zondax/hid"] - sumVersion = "v0.9.0" - ["github.com/zondax/hid".fetch] - type = "git" - url = "https://github.com/zondax/hid" - rev = "302fd402163c34626286195dfa9adac758334acc" - sha256 = "1wnpfn4bd86nz2v9dgb40xpz1ya66vahdkrhb1gj4jyyxdnnhqkh" - -["go.etcd.io/bbolt"] - sumVersion = "v1.3.5" - ["go.etcd.io/bbolt".fetch] - type = "git" - url = "https://github.com/etcd-io/bbolt" - rev = "232d8fc87f50244f9c808f4745759e08a304c029" - sha256 = "1h64gipvcg7060byv5wjlf524kqwj12p3v08kfh4ygv46vpm8p2r" - -["go.etcd.io/etcd"] - sumVersion = "v0.0.0-20191023171146-3cf2f69b5738" - ["go.etcd.io/etcd".fetch] - type = "git" - url = "https://github.com/etcd-io/etcd" - rev = "3cf2f69b5738fb702ba1a935590f36b52b18979b" - sha256 = "1w5jr8shn6whccksmpbcllcr1f8gjgh1dnix5rmnv3wwr5in5cgq" - -["go.etcd.io/etcd/api/v3"] - sumVersion = "v3.5.0" - relPath = "api" - ["go.etcd.io/etcd/api/v3".fetch] - type = "git" - url = "https://github.com/etcd-io/etcd" - rev = "946a5a6f25c3b6b89408ab447852731bde6e6289" - sha256 = "1dinf1668bkpq5lff8sr4fjd7dkxw9smm1f9zcadpdz3ci3knpzg" - -["go.etcd.io/etcd/client/pkg/v3"] - sumVersion = "v3.5.0" - relPath = "client/pkg" - ["go.etcd.io/etcd/client/pkg/v3".fetch] - type = "git" - url = "https://github.com/etcd-io/etcd" - rev = "946a5a6f25c3b6b89408ab447852731bde6e6289" - sha256 = "1dinf1668bkpq5lff8sr4fjd7dkxw9smm1f9zcadpdz3ci3knpzg" - -["go.etcd.io/etcd/client/v2"] - sumVersion = "v2.305.0" - relPath = "client" - ["go.etcd.io/etcd/client/v2".fetch] - type = "git" - url = "https://github.com/etcd-io/etcd" - rev = "946a5a6f25c3b6b89408ab447852731bde6e6289" - sha256 = "1dinf1668bkpq5lff8sr4fjd7dkxw9smm1f9zcadpdz3ci3knpzg" - -["go.opencensus.io"] - sumVersion = "v0.23.0" - ["go.opencensus.io".fetch] - type = "git" - url = "https://github.com/census-instrumentation/opencensus-go" - rev = "49838f207d61097fc0ebb8aeef306913388376ca" - sha256 = "0gw4f7inf8y2ik00yfb36xganiq9rl4w2d1a41bsjqsh83ajz2km" - -["go.uber.org/atomic"] - sumVersion = "v1.7.0" - ["go.uber.org/atomic".fetch] - type = "git" - url = "https://github.com/uber-go/atomic" - rev = "12f27ba2637fa0e13772a4f05fa46a5d18d53182" - sha256 = "0yxvb5sixh76cl9j8dpa97gznj0p8pmg2cdw0ypfwhd3ipx9wph1" - -["go.uber.org/multierr"] - sumVersion = "v1.6.0" - ["go.uber.org/multierr".fetch] - type = "git" - url = "https://github.com/uber-go/multierr" - rev = "3114a8b704d2d28dbacda34a872690aaef66aeed" - sha256 = "162941s8f6a9x2w04qm4qa3zz0zylwag9149hywrj9ibp2nzcsqz" - -["go.uber.org/tools"] - sumVersion = "v0.0.0-20190618225709-2cfd321de3ee" - ["go.uber.org/tools".fetch] - type = "git" - url = "https://github.com/uber-go/tools" - rev = "2cfd321de3ee5d5f8a5fda2521d1703478334d98" - sha256 = "0kcsg9pd3vyp5v9dz8xzd9lkpbqrlhr1rv6hg38afq6ifziw319i" - -["go.uber.org/zap"] - sumVersion = "v1.17.0" - ["go.uber.org/zap".fetch] - type = "git" - url = "https://github.com/uber-go/zap" - rev = "ebebbf3828cd267f08b11cc3f6f4a155c952b2ba" - sha256 = "14mr66h7vxirpvb12106372apw1w3ppymbf89lprxkkg03srkfy8" - -["golang.org/x/crypto"] - sumVersion = "v0.0.0-20210817164053-32db794688a5" - ["golang.org/x/crypto".fetch] - type = "git" - url = "https://go.googlesource.com/crypto" - rev = "32db794688a5a24a23a43f2a984cecd5b3d8da58" - sha256 = "0arh5rhahrjzmlifmbgswwc0kjkgmhps6g4hzia0i6ismsk74n48" - -["golang.org/x/exp"] - sumVersion = "v0.0.0-20200331195152-e8c3332aa8e5" - ["golang.org/x/exp".fetch] - type = "git" - url = "https://go.googlesource.com/exp" - rev = "e8c3332aa8e5b8e6acb4707c3a7e5979052b20aa" - sha256 = "085mbasmshl64f2d0awrf5k0iyh1aij888cp9aa12ldzp36404rw" - -["golang.org/x/image"] - sumVersion = "v0.0.0-20190802002840-cff245a6509b" - ["golang.org/x/image".fetch] - type = "git" - url = "https://go.googlesource.com/image" - rev = "cff245a6509b8c4de022d0d5b9037c503c5989d6" - sha256 = "0hiznlkiaay30acwvvyq8g6bm32r7bc6gv47pygrcxqpapasbz84" - -["golang.org/x/lint"] - sumVersion = "v0.0.0-20210508222113-6edffad5e616" - ["golang.org/x/lint".fetch] - type = "git" - url = "https://go.googlesource.com/lint" - rev = "6edffad5e6160f5949cdefc81710b2706fbcd4f6" - sha256 = "1n7lrr3282q3li4f06afms444qy13rfd316za0drqihakwyki2jk" - -["golang.org/x/mobile"] - sumVersion = "v0.0.0-20200801112145-973feb4309de" - ["golang.org/x/mobile".fetch] - type = "git" - url = "https://go.googlesource.com/mobile" - rev = "973feb4309de5c3aad0553fc987d76abf1fa58f7" - sha256 = "0jwz7jq1cqp9x6b9kpfrmw84sg7dg5v4xaa8zdbgq14gskmjx72d" - -["golang.org/x/mod"] - sumVersion = "v0.4.2" - ["golang.org/x/mod".fetch] - type = "git" - url = "https://go.googlesource.com/mod" - rev = "d6ab96f2441f9631f81862375ef66782fc4a9c12" - sha256 = "0z1p17i291z2k6va08i80ljyzyij2b6qsz78lnz0wi8zsnkfdz43" - -["golang.org/x/net"] - sumVersion = "v0.0.0-20210903162142-ad29c8ab022f" - ["golang.org/x/net".fetch] - type = "git" - url = "https://go.googlesource.com/net" - rev = "ad29c8ab022f0f2c6a18c8279b1db2230acfa59b" - sha256 = "14qfyn4n6x7c339771i1s7chb8qx12y9xbrkgszyn0a3vgggzh6x" - -["golang.org/x/oauth2"] - sumVersion = "v0.0.0-20210514164344-f6687ab2804c" - ["golang.org/x/oauth2".fetch] - type = "git" - url = "https://go.googlesource.com/oauth2" - rev = "f6687ab2804cbebdfdeef385bee94918b1ce83de" - sha256 = "0n0hwhan765nl2znk94jwnawkss1lmcmslqyxnym57p3sdi77zsp" - -["golang.org/x/sync"] - sumVersion = "v0.0.0-20210220032951-036812b2e83c" - ["golang.org/x/sync".fetch] - type = "git" - url = "https://go.googlesource.com/sync" - rev = "036812b2e83c0ddf193dd5a34e034151da389d09" - sha256 = "1gl202py3s4gl6arkaxlf8qa6f0jyyg2f95m6f89qnfmr416h85b" - -["golang.org/x/sys"] - sumVersion = "v0.0.0-20210903071746-97244b99971b" - ["golang.org/x/sys".fetch] - type = "git" - url = "https://go.googlesource.com/sys" - rev = "97244b99971b253e564db131f988a3fde9c556ca" - sha256 = "08b7iaj5ahr6g09wxagh2l9ndpgmnmsmlghkp33rwhwjkn5scxig" - -["golang.org/x/term"] - sumVersion = "v0.0.0-20201126162022-7de9c90e9dd1" - ["golang.org/x/term".fetch] - type = "git" - url = "https://go.googlesource.com/term" - rev = "7de9c90e9dd184706b838f536a1cbf40a296ddb7" - sha256 = "1ba252xmv6qsvf1w1gcy98mngrj0vd4inbjw0lsklqvva65nljna" - -["golang.org/x/text"] - sumVersion = "v0.3.6" - ["golang.org/x/text".fetch] - type = "git" - url = "https://go.googlesource.com/text" - rev = "e328d63cff14134669501e0e154e4f141c784322" - sha256 = "0wzhvdb059vrp2cczqw422ajrb9sbs4l3qd020hlngj33qfhxah0" - -["golang.org/x/time"] - sumVersion = "v0.0.0-20191024005414-555d28b269f0" - ["golang.org/x/time".fetch] - type = "git" - url = "https://go.googlesource.com/time" - rev = "555d28b269f0569763d25dbe1a237ae74c6bcc82" - sha256 = "1rhl4lyz030kwfsg63yk83yd3ivryv1afmzdz9sxbhcj84ym6h4r" - -["golang.org/x/tools"] - sumVersion = "v0.1.5" - ["golang.org/x/tools".fetch] - type = "git" - url = "https://go.googlesource.com/tools" - rev = "ef97713d99aa4e69742aa68fd45a63247b5d3ea0" - sha256 = "1wzbbcja1q0gn8ahxvzvpl4nzj2icwmc0pppgipmx5rdnngqw80l" - -["golang.org/x/xerrors"] - sumVersion = "v0.0.0-20200804184101-5ec99f83aff1" - ["golang.org/x/xerrors".fetch] - type = "git" - url = "https://go.googlesource.com/xerrors" - rev = "5ec99f83aff198f5fbd629d6c8d8eb38a04218ca" - sha256 = "1dbzc3gmf2haazpv7cgmv97rq40g2xzwbglc17vas8dwhgwgwrzb" - -["google.golang.org/api"] - sumVersion = "v0.44.0" - ["google.golang.org/api".fetch] - type = "git" - url = "https://github.com/googleapis/google-api-go-client" - rev = "e8cf7f70a1e0160405dd0f789a006e6b6074fbdb" - sha256 = "0sh6qzc3pnyliy10afrmzpfbbbm2mwcyc6mp5422xhgp3p2x370x" - -["google.golang.org/appengine"] - sumVersion = "v1.6.7" - ["google.golang.org/appengine".fetch] - type = "git" - url = "https://github.com/golang/appengine" - rev = "5d1c1d03f8703c2e81478d9a30e9afa2d3e4bd8a" - sha256 = "1wkipg7xxc0ha5p6c3bj0vpgq38l18441n5l6zxdhx0gzvz5z1hs" - -["google.golang.org/genproto"] - sumVersion = "v0.0.0-20210828152312-66f60bf46e71" - ["google.golang.org/genproto".fetch] - type = "git" - url = "https://github.com/googleapis/go-genproto" - rev = "66f60bf46e712a08287e27c1726b06e93e00b6bf" - sha256 = "14vlk2phr8yr5nq19bvvd6z7yvn4nl3s63rvj1yk8r82b6amd63p" - -["google.golang.org/grpc"] - sumVersion = "v1.33.2" - ["google.golang.org/grpc".fetch] - type = "git" - url = "https://github.com/grpc/grpc-go" - rev = "56d63285d528c0d33f9bf8c355139d91edc047de" - sha256 = "03yz4nlf4kqbnpw48f0mvcb2f5zzy0vjd5i2iw0hrjspd0238fzk" - -["google.golang.org/protobuf"] - sumVersion = "v1.27.1" - ["google.golang.org/protobuf".fetch] - type = "git" - url = "https://go.googlesource.com/protobuf" - rev = "b92717ecb630d4a4824b372bf98c729d87311a4d" - sha256 = "0aszb7cv8fq1m8akgd4kjyg5q7g5z9fdqnry6057ygq9r8r2yif2" - -["gopkg.in/alecthomas/kingpin.v2"] - sumVersion = "v2.2.6" - ["gopkg.in/alecthomas/kingpin.v2".fetch] - type = "git" - url = "https://gopkg.in/alecthomas/kingpin.v2" - rev = "947dcec5ba9c011838740e680966fd7087a71d0d" - sha256 = "0mndnv3hdngr3bxp7yxfd47cas4prv98sqw534mx7vp38gd88n5r" - -["gopkg.in/check.v1"] - sumVersion = "v1.0.0-20200902074654-038fdea0a05b" - ["gopkg.in/check.v1".fetch] - type = "git" - url = "https://gopkg.in/check.v1" - rev = "038fdea0a05bc030b0bfda479dc2e08d2220ec74" - sha256 = "060kpz01bfglrd7przzgq8a1fqf1x0hlkmdj6isindzwx3kfhnm4" - -["gopkg.in/cheggaaa/pb.v1"] - sumVersion = "v1.0.25" - ["gopkg.in/cheggaaa/pb.v1".fetch] - type = "git" - url = "https://gopkg.in/cheggaaa/pb.v1" - rev = "2af8bbdea9e99e83b3ac400d8f6b6d1b8cbbf338" - sha256 = "0vxqiw6f3xyv0zy3g4lksf8za0z8i0hvfpw92hqimsy84f79j3dp" - -["gopkg.in/errgo.v2"] - sumVersion = "v2.1.0" - ["gopkg.in/errgo.v2".fetch] - type = "git" - url = "https://gopkg.in/errgo.v2" - rev = "f768c5ab0476c50e978b039312180859c10fe8c0" - sha256 = "065mbihiy7q67wnql0bzl9y1kkvck5ivra68254zbih52jxwrgr2" - -["gopkg.in/fsnotify.v1"] - sumVersion = "v1.4.7" - ["gopkg.in/fsnotify.v1".fetch] - type = "git" - url = "https://gopkg.in/fsnotify.v1" - rev = "c2828203cd70a50dcccfb2761f8b1f8ceef9a8e9" - sha256 = "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g" - -["gopkg.in/gcfg.v1"] - sumVersion = "v1.2.3" - ["gopkg.in/gcfg.v1".fetch] - type = "git" - url = "https://gopkg.in/gcfg.v1" - rev = "61b2c08bc8f6068f7c5ca684372f9a6cb1c45ebe" - sha256 = "165f9wincwnkblp8x6m1f4ch4m8k4gvy5v4x4gqdpmf59kqv5y7s" - -["gopkg.in/ini.v1"] - sumVersion = "v1.62.0" - ["gopkg.in/ini.v1".fetch] - type = "git" - url = "https://gopkg.in/ini.v1" - rev = "5e97220809ffaa826f787728501264e9114cb834" - sha256 = "1dm9ydqyflasp5li22kb0w73s6kp2swii8naqfhnz64v171gmm5v" - -["gopkg.in/natefinch/npipe.v2"] - sumVersion = "v2.0.0-20160621034901-c1b8fa8bdcce" - ["gopkg.in/natefinch/npipe.v2".fetch] - type = "git" - url = "https://gopkg.in/natefinch/npipe.v2" - rev = "c1b8fa8bdccecb0b8db834ee0b92fdbcfa606dd6" - sha256 = "1qplrvhks05pay169d9lph3hl7apdam4vj1kx3yzik7cphx6b24f" - -["gopkg.in/olebedev/go-duktape.v3"] - sumVersion = "v3.0.0-20200619000410-60c24ae608a6" - ["gopkg.in/olebedev/go-duktape.v3".fetch] - type = "git" - url = "https://gopkg.in/olebedev/go-duktape.v3" - rev = "60c24ae608a642bf894bed9eb53627d2384bedca" - sha256 = "13qirm5nqk6isv9n0wdi18k9wc8h1d7n6zwflhziwix7ghnr7a1q" - -["gopkg.in/resty.v1"] - sumVersion = "v1.12.0" - ["gopkg.in/resty.v1".fetch] - type = "git" - url = "https://gopkg.in/resty.v1" - rev = "fa5875c0caa5c260ab78acec5a244215a730247f" - sha256 = "062mn735rqzhha5ag07z4gz08hxzrfm2yx067jfmaaxmb6797lmp" - -["gopkg.in/tomb.v1"] - sumVersion = "v1.0.0-20141024135613-dd632973f1e7" - ["gopkg.in/tomb.v1".fetch] - type = "git" - url = "https://gopkg.in/tomb.v1" - rev = "dd632973f1e7218eb1089048e0798ec9ae7dceb8" - sha256 = "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv" - -["gopkg.in/urfave/cli.v1"] - sumVersion = "v1.20.0" - ["gopkg.in/urfave/cli.v1".fetch] - type = "git" - url = "https://gopkg.in/urfave/cli.v1" - rev = "cfb38830724cc34fedffe9a2a29fb54fa9169cd1" - sha256 = "0y6f4sbzkiiwrxbl15biivj8c7qwxnvm3zl2dd3mw4wzg4x10ygj" - -["gopkg.in/warnings.v0"] - sumVersion = "v0.1.2" - ["gopkg.in/warnings.v0".fetch] - type = "git" - url = "https://gopkg.in/warnings.v0" - rev = "ec4a0fea49c7b46c2aeb0b51aac55779c607e52b" - sha256 = "1kzj50jn708cingn7a13c2wdlzs6qv89dr2h4zj8d09647vlnd81" - -["gopkg.in/yaml.v2"] - sumVersion = "v2.4.0" - ["gopkg.in/yaml.v2".fetch] - type = "git" - url = "https://gopkg.in/yaml.v2" - rev = "7649d4548cb53a614db133b2a8ac1f31859dda8c" - sha256 = "1pbmrpj7gcws34g8vwna4i2nhm9p6235piww36436xhyaa10cldr" - -["gopkg.in/yaml.v3"] - sumVersion = "v3.0.0-20210107192922-496545a6307b" - ["gopkg.in/yaml.v3".fetch] - type = "git" - url = "https://gopkg.in/yaml.v3" - rev = "496545a6307b2a7d7a710fd516e5e16e8ab62dbc" - sha256 = "06f4lnrp494wqaygv09dggr2dwf3z2bawqhnlnnwiamg5y787k4g" - -["gotest.tools"] - sumVersion = "v2.2.0+incompatible" - ["gotest.tools".fetch] - type = "git" - url = "https://github.com/gotestyourself/gotest.tools" - rev = "7c797b5133e5460410dbb22ba779bf35e6975dea" - sha256 = "0yif3gdyckmf8i54jq0xn00kflla5rhib9sarw66ngnbl7bn9kyl" - -["honnef.co/go/tools"] - sumVersion = "v0.0.1-2020.1.4" - ["honnef.co/go/tools".fetch] - type = "git" - url = "https://github.com/dominikh/go-tools" - rev = "3c17a0d920718d58e7fdc0508f211aff0701dd6d" - sha256 = "182j3zzx1bj4j4jiamqn49v9nd3vcrx727f7i9zgcrgmiscvw3mh" - -["nhooyr.io/websocket"] - sumVersion = "v1.8.6" - ["nhooyr.io/websocket".fetch] - type = "git" - url = "https://github.com/nhooyr/websocket" - rev = "02861b474d9c29660eff53a3c424d589aaf46d1e" - sha256 = "1xw7rhy9bvk0kzqvpcvj92l9zwwnakvqwycfxm724dw7m0d84n52" - -["rsc.io/binaryregexp"] - sumVersion = "v0.2.0" - ["rsc.io/binaryregexp".fetch] - type = "git" - url = "https://github.com/rsc/binaryregexp" - rev = "857b9542aaa89cfa42a1477b43fa1f24192fe921" - sha256 = "1kar0myy85waw418zslviwx8846zj0m9cmqkxjx0fvgjdi70nc4b" - -["rsc.io/quote/v3"] - sumVersion = "v3.1.0" - relPath = "v3" - ["rsc.io/quote/v3".fetch] - type = "git" - url = "https://github.com/rsc/quote" - rev = "0406d7298882187f4c75f75fa85cc808a64bcef1" - sha256 = "0nvv97hwwrl1mx5gzsbdm1ndnwpg3m7i2jb10ig9wily7zmvki0i" - -["rsc.io/sampler"] - sumVersion = "v1.3.0" - ["rsc.io/sampler".fetch] - type = "git" - url = "https://github.com/rsc/sampler" - rev = "0cc034b51e57ed7832d4c67d526f75a900996e5c" - sha256 = "0byxk2ynba50py805kcvbvjzh59l1r308i1xgyzpw6lff4xx9xjh" - -["sigs.k8s.io/yaml"] - sumVersion = "v1.1.0" - ["sigs.k8s.io/yaml".fetch] - type = "git" - url = "https://github.com/kubernetes-sigs/yaml" - rev = "fd68e9863619f6ec2fdd8625fe1f02e7c877e480" - sha256 = "1p7hvjdr5jsyk7nys1g1pmgnf3ys6n320i6hds85afppk81k01kb" - -["sourcegraph.com/sourcegraph/appdash"] - sumVersion = "v0.0.0-20190731080439-ebfcffb1b5c0" - ["sourcegraph.com/sourcegraph/appdash".fetch] - type = "git" - url = "https://github.com/sourcegraph/appdash" - rev = "ebfcffb1b5c00031ce797183546746715a3cfe87" - sha256 = "1xlff68pa7jchg1xr2nkrkk94mrd0ba2z38968j7swlfyf8rkk3d" diff --git a/resources/cosmos-sdk/last-synced.narHash b/resources/cosmos-sdk/last-synced.narHash deleted file mode 100644 index 36d8d0e8..00000000 --- a/resources/cosmos-sdk/last-synced.narHash +++ /dev/null @@ -1 +0,0 @@ -sha256-owsXBdYIf7yENDjumqyQ5AQ+jPHKxVbpQbApUpTzoxo= diff --git a/resources/cosmovisor/default.nix b/resources/cosmovisor/default.nix deleted file mode 100644 index b87cd783..00000000 --- a/resources/cosmovisor/default.nix +++ /dev/null @@ -1,7 +0,0 @@ -{ pkgs, cosmovisor-src }: -pkgs.buildGoApplication { - name = "cosmovisor"; - src = "${cosmovisor-src}"; - modules = ./go-modules.toml; - doCheck = false; -} diff --git a/resources/cosmovisor/go-modules.toml b/resources/cosmovisor/go-modules.toml deleted file mode 100644 index 50cd1dee..00000000 --- a/resources/cosmovisor/go-modules.toml +++ /dev/null @@ -1,482 +0,0 @@ -["cloud.google.com/go"] - sumVersion = "v0.45.1" - ["cloud.google.com/go".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "d1af076dc3f6a314e9dd6610fe83b0f7afaff6d6" - sha256 = "18jcrm504yxxbrkb7vxzia7awc8yr0vb0hsddwvqk15c1rgi7ivj" - -["cloud.google.com/go/bigquery"] - sumVersion = "v1.0.1" - relPath = "bigquery" - ["cloud.google.com/go/bigquery".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "63c28c0124777c34a3bca5876d3c0965ac730d3b" - sha256 = "1gnvs0q96l37z0ypw426b590jsihn459scdzb0g8vr2c8lwkcrmh" - -["cloud.google.com/go/datastore"] - sumVersion = "v1.0.0" - relPath = "datastore" - ["cloud.google.com/go/datastore".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "c5d562bdb35850f11d6a275d85ab8535265e9821" - sha256 = "0d7ikvbyasifhbxgc2gw97zqc27ihi9a22wdywh5gw2cwjwpw5gi" - -["github.com/BurntSushi/toml"] - sumVersion = "v0.3.1" - ["github.com/BurntSushi/toml".fetch] - type = "git" - url = "https://github.com/BurntSushi/toml" - rev = "3012a1dbe2e4bd1391d42b32f0577cb7bbc7f005" - sha256 = "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6" - -["github.com/BurntSushi/xgb"] - sumVersion = "v0.0.0-20160522181843-27f122750802" - ["github.com/BurntSushi/xgb".fetch] - type = "git" - url = "https://github.com/BurntSushi/xgb" - rev = "27f122750802c950b2c869a5b63dafcf590ced95" - sha256 = "18lp2x8f5bljvlz0r7xn744f0c9rywjsb9ifiszqqdcpwhsa0kvj" - -["github.com/aws/aws-sdk-go"] - sumVersion = "v1.15.78" - ["github.com/aws/aws-sdk-go".fetch] - type = "git" - url = "https://github.com/aws/aws-sdk-go" - rev = "5ebc7a404e942062fd3aa7ff50975498716eb990" - sha256 = "12lwccppdg6chmjdjd7yj73bqhrshixqa4rhssb2sc38zxgwg77j" - -["github.com/bgentry/go-netrc"] - sumVersion = "v0.0.0-20140422174119-9fd32a8b3d3d" - ["github.com/bgentry/go-netrc".fetch] - type = "git" - url = "https://github.com/bgentry/go-netrc" - rev = "9fd32a8b3d3d3f9d43c341bfe098430e07609480" - sha256 = "0dn2h8avgavqdzdqnph8bkhj35bx0wssczry1zdczr22xv650g1l" - -["github.com/cheggaaa/pb"] - sumVersion = "v1.0.27" - ["github.com/cheggaaa/pb".fetch] - type = "git" - url = "https://github.com/cheggaaa/pb" - rev = "1cc5bbe20449079337944d56292c7383510c534c" - sha256 = "1f995nsqgi0r4qc16nmxlbdxc536hkfwa5k9xb8ypz8d6jlkihag" - -["github.com/client9/misspell"] - sumVersion = "v0.3.4" - ["github.com/client9/misspell".fetch] - type = "git" - url = "https://github.com/client9/misspell" - rev = "b90dc15cfd220ecf8bbc9043ecb928cef381f011" - sha256 = "1vwf33wsc4la25zk9nylpbp9px3svlmldkm0bha4hp56jws4q9cs" - -["github.com/davecgh/go-spew"] - sumVersion = "v1.1.1" - ["github.com/davecgh/go-spew".fetch] - type = "git" - url = "https://github.com/davecgh/go-spew" - rev = "8991bc29aa16c548c550c7ff78260e27b9ab7c73" - sha256 = "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y" - -["github.com/fatih/color"] - sumVersion = "v1.7.0" - ["github.com/fatih/color".fetch] - type = "git" - url = "https://github.com/fatih/color" - rev = "5b77d2a35fb0ede96d138fc9a99f5c9b6aef11b4" - sha256 = "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv" - -["github.com/golang/glog"] - sumVersion = "v0.0.0-20160126235308-23def4e6c14b" - ["github.com/golang/glog".fetch] - type = "git" - url = "https://github.com/golang/glog" - rev = "23def4e6c14b4da8ac2ed8007337bc5eb5007998" - sha256 = "0jb2834rw5sykfr937fxi8hxi2zy80sj2bdn9b3jb4b26ksqng30" - -["github.com/golang/mock"] - sumVersion = "v1.3.1" - ["github.com/golang/mock".fetch] - type = "git" - url = "https://github.com/golang/mock" - rev = "d74b93584564161b2de771089ee697f07d8bd5b5" - sha256 = "1wnfa8njxdym1qb664dmfnkpm4pmqy22hqjlqpwaaiqhglb5g9d1" - -["github.com/golang/protobuf"] - sumVersion = "v1.3.2" - ["github.com/golang/protobuf".fetch] - type = "git" - url = "https://github.com/golang/protobuf" - rev = "6c65a5562fc06764971b7c5d05c76c75e84bdbf7" - sha256 = "1k1wb4zr0qbwgpvz9q5ws9zhlal8hq7dmq62pwxxriksayl6hzym" - -["github.com/google/btree"] - sumVersion = "v1.0.0" - ["github.com/google/btree".fetch] - type = "git" - url = "https://github.com/google/btree" - rev = "4030bb1f1f0c35b30ca7009e9ebd06849dd45306" - sha256 = "0ba430m9fbnagacp57krgidsyrgp3ycw5r7dj71brgp5r52g82p6" - -["github.com/google/go-cmp"] - sumVersion = "v0.3.0" - ["github.com/google/go-cmp".fetch] - type = "git" - url = "https://github.com/google/go-cmp" - rev = "6f77996f0c42f7b84e5a2b252227263f93432e9b" - sha256 = "1hyxx3434zshl2m9ja78gwlkg1rx9yl6diqa7dnjb31xz5x4gbjj" - -["github.com/google/martian"] - sumVersion = "v2.1.0+incompatible" - ["github.com/google/martian".fetch] - type = "git" - url = "https://github.com/google/martian" - rev = "195b986b4b6d4c513582cf4d2b8c4fd7e2494f7e" - sha256 = "197hil6vrjk50b9wvwyzf61csid83whsjj6ik8mc9r2lryxlyyrp" - -["github.com/google/pprof"] - sumVersion = "v0.0.0-20190515194954-54271f7e092f" - ["github.com/google/pprof".fetch] - type = "git" - url = "https://github.com/google/pprof" - rev = "54271f7e092ff31b10b7626fee166cbc6304e350" - sha256 = "14x4ydifz23rzaylggvwbm3dwlv1bc6s0bclmkxck9nbjbqw89vy" - -["github.com/googleapis/gax-go/v2"] - sumVersion = "v2.0.5" - relPath = "v2" - ["github.com/googleapis/gax-go/v2".fetch] - type = "git" - url = "https://github.com/googleapis/gax-go" - rev = "bd5b16380fd03dc758d11cef74ba2e3bc8b0e8c2" - sha256 = "1lxawwngv6miaqd25s3ba0didfzylbwisd2nz7r4gmbmin6jsjrx" - -["github.com/hashicorp/go-cleanhttp"] - sumVersion = "v0.5.0" - ["github.com/hashicorp/go-cleanhttp".fetch] - type = "git" - url = "https://github.com/hashicorp/go-cleanhttp" - rev = "e8ab9daed8d1ddd2d3c4efba338fe2eeae2e4f18" - sha256 = "1mwl96a815x1843pnqn7lk38s05bgn5rdjw57xd46jzr62izcnsq" - -["github.com/hashicorp/go-getter"] - sumVersion = "v1.4.1" - ["github.com/hashicorp/go-getter".fetch] - type = "git" - url = "https://github.com/hashicorp/go-getter" - rev = "0d2e82b049447fff51421fcfb85ee25016d2ced1" - sha256 = "181r3i9z67baqd9k951i77py0kplsvx38bkqhpwinrv3q8v1a5c8" - -["github.com/hashicorp/go-safetemp"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-safetemp".fetch] - type = "git" - url = "https://github.com/hashicorp/go-safetemp" - rev = "c9a55de4fe06c920a71964b53cfe3dd293a3c743" - sha256 = "0gydks8bkq88adlzmv8qj3rvljx15j94c8lyrp88ji2jn6dvv643" - -["github.com/hashicorp/go-version"] - sumVersion = "v1.1.0" - ["github.com/hashicorp/go-version".fetch] - type = "git" - url = "https://github.com/hashicorp/go-version" - rev = "d40cf49b3a77bba84a7afdbd7f1dc295d114efb1" - sha256 = "1ykh3jl5zj5a4irkgp5mq936bqkznmf9lp23qk741vh4r5874vi8" - -["github.com/hashicorp/golang-lru"] - sumVersion = "v0.5.1" - ["github.com/hashicorp/golang-lru".fetch] - type = "git" - url = "https://github.com/hashicorp/golang-lru" - rev = "7087cb70de9f7a8bc0a10c375cb0d2280a8edf9c" - sha256 = "13f870cvk161bzjj6x41l45r5x9i1z9r2ymwmvm7768kg08zznpy" - -["github.com/jmespath/go-jmespath"] - sumVersion = "v0.0.0-20160202185014-0b12d6b521d8" - ["github.com/jmespath/go-jmespath".fetch] - type = "git" - url = "https://github.com/jmespath/go-jmespath" - rev = "0b12d6b521d83fc7f755e7cfc1b1fbdd35a01a74" - sha256 = "1vv6hph8j6xgv7gwl9vvhlsaaqsm22sxxqmgmldi4v11783pc1ld" - -["github.com/jstemmer/go-junit-report"] - sumVersion = "v0.0.0-20190106144839-af01ea7f8024" - ["github.com/jstemmer/go-junit-report".fetch] - type = "git" - url = "https://github.com/jstemmer/go-junit-report" - rev = "af01ea7f8024089b458d804d5cdf190f962a9a0c" - sha256 = "1lp3n94ris12hac02wi31f3whs88lcrzwgdg43a5j6cafg9p1d0s" - -["github.com/mattn/go-colorable"] - sumVersion = "v0.0.9" - ["github.com/mattn/go-colorable".fetch] - type = "git" - url = "https://github.com/mattn/go-colorable" - rev = "167de6bfdfba052fa6b2d3664c8f5272e23c9072" - sha256 = "1nwjmsppsjicr7anq8na6md7b1z84l9ppnlr045hhxjvbkqwalvx" - -["github.com/mattn/go-isatty"] - sumVersion = "v0.0.4" - ["github.com/mattn/go-isatty".fetch] - type = "git" - url = "https://github.com/mattn/go-isatty" - rev = "6ca4dbf54d38eea1a992b3c722a76a5d1c4cb25c" - sha256 = "0zs92j2cqaw9j8qx1sdxpv3ap0rgbs0vrvi72m40mg8aa36gd39w" - -["github.com/mattn/go-runewidth"] - sumVersion = "v0.0.4" - ["github.com/mattn/go-runewidth".fetch] - type = "git" - url = "https://github.com/mattn/go-runewidth" - rev = "3ee7d812e62a0804a7d0a324e0249ca2db3476d3" - sha256 = "00b3ssm7wiqln3k54z2wcnxr3k3c7m1ybyhb9h8ixzbzspld0qzs" - -["github.com/mitchellh/go-homedir"] - sumVersion = "v1.0.0" - ["github.com/mitchellh/go-homedir".fetch] - type = "git" - url = "https://github.com/mitchellh/go-homedir" - rev = "ae18d6b8b3205b561c79e8e5f69bff09736185f4" - sha256 = "0f0z0aa4wivk4z1y503dmnw0k0g0g403dly8i4q263gfshs82sbq" - -["github.com/mitchellh/go-testing-interface"] - sumVersion = "v1.0.0" - ["github.com/mitchellh/go-testing-interface".fetch] - type = "git" - url = "https://github.com/mitchellh/go-testing-interface" - rev = "6d0b8010fcc857872e42fc6c931227569016843c" - sha256 = "1dl2js8di858bawg7dadlf1qjpkl2g3apziihjyf5imri3znyfpw" - -["github.com/otiai10/copy"] - sumVersion = "v1.2.0" - ["github.com/otiai10/copy".fetch] - type = "git" - url = "https://github.com/otiai10/copy" - rev = "c5f0361fe546fb0f4f26b13746afc8864ea7f6d9" - sha256 = "1kbc1wwkhjxss522znbzldbaqvcwhaqsx7wr2rv7ss5jj4mbvc96" - -["github.com/otiai10/curr"] - sumVersion = "v1.0.0" - ["github.com/otiai10/curr".fetch] - type = "git" - url = "https://github.com/otiai10/curr" - rev = "88e2f2cffa0b5f13e90ee963a321bd1b2f715561" - sha256 = "0fpw20adq2wff7l4c87zaavj9jra4d64a8bbjixiiv3bbarim987" - -["github.com/otiai10/mint"] - sumVersion = "v1.3.1" - ["github.com/otiai10/mint".fetch] - type = "git" - url = "https://github.com/otiai10/mint" - rev = "bef812dd30a0e7e65435fde5ef6a81277d78ca05" - sha256 = "1p9rzmp8q23nx44lmv7imfp3b4n6va79snipmbvhkscijgy4sqps" - -["github.com/pmezard/go-difflib"] - sumVersion = "v1.0.0" - ["github.com/pmezard/go-difflib".fetch] - type = "git" - url = "https://github.com/pmezard/go-difflib" - rev = "792786c7400a136282c1664665ae0a8db921c6c2" - sha256 = "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw" - -["github.com/stretchr/objx"] - sumVersion = "v0.1.0" - ["github.com/stretchr/objx".fetch] - type = "git" - url = "https://github.com/stretchr/objx" - rev = "facf9a85c22f48d2f52f2380e4efce1768749a89" - sha256 = "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w" - -["github.com/stretchr/testify"] - sumVersion = "v1.6.1" - ["github.com/stretchr/testify".fetch] - type = "git" - url = "https://github.com/stretchr/testify" - rev = "f654a9112bbeac49ca2cd45bfbe11533c4666cf8" - sha256 = "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l" - -["github.com/ulikunitz/xz"] - sumVersion = "v0.5.5" - ["github.com/ulikunitz/xz".fetch] - type = "git" - url = "https://github.com/ulikunitz/xz" - rev = "590df8077fbcb06ad62d7714da06c00e5dd2316d" - sha256 = "07mivr4aiw3b8qzwajsxyjlpbkf3my4xx23lv0yryc4pciam5lhy" - -["go.opencensus.io"] - sumVersion = "v0.22.0" - ["go.opencensus.io".fetch] - type = "git" - url = "https://github.com/census-instrumentation/opencensus-go" - rev = "9c377598961b706d1542bd2d84d538b5094d596e" - sha256 = "05jr8gkr2w34i5wwki4zhl5ch0qrgi7cdgag5iy5gpxplhbrvbg9" - -["golang.org/x/crypto"] - sumVersion = "v0.0.0-20190605123033-f99c8df09eb5" - ["golang.org/x/crypto".fetch] - type = "git" - url = "https://go.googlesource.com/crypto" - rev = "f99c8df09eb5bff426315721bfa5f16a99cad32c" - sha256 = "0jwi6c6366999mnpzwx3a2kr7hzvdx97qfwiphx0r7cy0mpf28hf" - -["golang.org/x/exp"] - sumVersion = "v0.0.0-20190510132918-efd6b22b2522" - ["golang.org/x/exp".fetch] - type = "git" - url = "https://go.googlesource.com/exp" - rev = "efd6b22b2522a48712e1fd0b3c1ab34d243f5245" - sha256 = "0ysahwb7p6y09izks4ca8nk2w414gmjxzz44l5rmadlvk3k66cgp" - -["golang.org/x/image"] - sumVersion = "v0.0.0-20190227222117-0694c2d4d067" - ["golang.org/x/image".fetch] - type = "git" - url = "https://go.googlesource.com/image" - rev = "0694c2d4d067f97ebef574d63a763ee8ab559da7" - sha256 = "0v4rs4xpi7agbdzjw713mp7gzij8z89058s0yfj3276mzlns3zk4" - -["golang.org/x/lint"] - sumVersion = "v0.0.0-20190409202823-959b441ac422" - ["golang.org/x/lint".fetch] - type = "git" - url = "https://go.googlesource.com/lint" - rev = "959b441ac422379a43da2230f62be024250818b0" - sha256 = "1mgcv5f00pkzsbwnq2y7vqvd1b4lr5a3s47cphh2qv4indfk7pck" - -["golang.org/x/mobile"] - sumVersion = "v0.0.0-20190312151609-d3739f865fa6" - ["golang.org/x/mobile".fetch] - type = "git" - url = "https://go.googlesource.com/mobile" - rev = "d3739f865fa66d07c1f506505c18aac71a8ead6e" - sha256 = "079ck2dyikacnph9s5mf0hrjnqlk6lc8q64dwnyw45w3xbbc50mg" - -["golang.org/x/net"] - sumVersion = "v0.0.0-20190620200207-3b0461eec859" - ["golang.org/x/net".fetch] - type = "git" - url = "https://go.googlesource.com/net" - rev = "3b0461eec859c4b73bb64fdc8285971fd33e3938" - sha256 = "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5" - -["golang.org/x/oauth2"] - sumVersion = "v0.0.0-20190604053449-0f29369cfe45" - ["golang.org/x/oauth2".fetch] - type = "git" - url = "https://go.googlesource.com/oauth2" - rev = "0f29369cfe4552d0e4bcddc57cc75f4d7e672a33" - sha256 = "06jwpvx0x2gjn2y959drbcir5kd7vg87k0r1216abk6rrdzzrzi2" - -["golang.org/x/sync"] - sumVersion = "v0.0.0-20190423024810-112230192c58" - ["golang.org/x/sync".fetch] - type = "git" - url = "https://go.googlesource.com/sync" - rev = "112230192c580c3556b8cee6403af37a4fc5f28c" - sha256 = "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn" - -["golang.org/x/sys"] - sumVersion = "v0.0.0-20190624142023-c5567b49c5d0" - ["golang.org/x/sys".fetch] - type = "git" - url = "https://go.googlesource.com/sys" - rev = "c5567b49c5d04a5f83870795b8c0e2df43a8ce32" - sha256 = "0z6nh1ma3jmqa0wh5dk9183kbm0sdzja5wl3mbnmimjv88f3rmah" - -["golang.org/x/text"] - sumVersion = "v0.3.2" - ["golang.org/x/text".fetch] - type = "git" - url = "https://go.googlesource.com/text" - rev = "342b2e1fbaa52c93f31447ad2c6abc048c63e475" - sha256 = "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh" - -["golang.org/x/time"] - sumVersion = "v0.0.0-20190308202827-9d24e82272b4" - ["golang.org/x/time".fetch] - type = "git" - url = "https://go.googlesource.com/time" - rev = "9d24e82272b4f38b78bc8cff74fa936d31ccd8ef" - sha256 = "1f5nkr4vys2vbd8wrwyiq2f5wcaahhpxmia85d1gshcbqjqf8dkb" - -["golang.org/x/tools"] - sumVersion = "v0.0.0-20190628153133-6cdbf07be9d0" - ["golang.org/x/tools".fetch] - type = "git" - url = "https://go.googlesource.com/tools" - rev = "6cdbf07be9d0ad08776df0b65fb1b3e4e617c42a" - sha256 = "08nsarz53xbapsbdrj4kp05rli27zx6bmyb9f52hd739yi2375pv" - -["google.golang.org/api"] - sumVersion = "v0.9.0" - ["google.golang.org/api".fetch] - type = "git" - url = "https://github.com/googleapis/google-api-go-client" - rev = "feb0267beb8644f5088a03be4d5ec3f8c7020152" - sha256 = "1lzdzkd2i41v6amxs9jah1q44qbvf1yvm8906jpfjiq6c3ffhqss" - -["google.golang.org/appengine"] - sumVersion = "v1.6.1" - ["google.golang.org/appengine".fetch] - type = "git" - url = "https://github.com/golang/appengine" - rev = "b2f4a3cf3c67576a2ee09e1fe62656a5086ce880" - sha256 = "0zxlvwzxwkwz4bs4h9zc9979dx76y4xf9ks4d22bclg47dv59yry" - -["google.golang.org/genproto"] - sumVersion = "v0.0.0-20190819201941-24fa4b261c55" - ["google.golang.org/genproto".fetch] - type = "git" - url = "https://github.com/googleapis/go-genproto" - rev = "24fa4b261c55da65468f2abfdae2b024eef27dfb" - sha256 = "109zhaqlfd8zkbr1hk6zqbs6vcxfrk64scjwh2nswph05gr0m84d" - -["google.golang.org/grpc"] - sumVersion = "v1.21.1" - ["google.golang.org/grpc".fetch] - type = "git" - url = "https://github.com/grpc/grpc-go" - rev = "501c41df7f472c740d0674ff27122f3f48c80ce7" - sha256 = "0hla9rjvyi6wjak4cw39ic8jkdcd0lsymhrz9sa52bfybxsczf38" - -["gopkg.in/check.v1"] - sumVersion = "v0.0.0-20161208181325-20d25e280405" - ["gopkg.in/check.v1".fetch] - type = "git" - url = "https://gopkg.in/check.v1" - rev = "20d25e2804050c1cd24a7eea1e7a6447dd0e74ec" - sha256 = "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np" - -["gopkg.in/cheggaaa/pb.v1"] - sumVersion = "v1.0.27" - ["gopkg.in/cheggaaa/pb.v1".fetch] - type = "git" - url = "https://gopkg.in/cheggaaa/pb.v1" - rev = "1cc5bbe20449079337944d56292c7383510c534c" - sha256 = "1f995nsqgi0r4qc16nmxlbdxc536hkfwa5k9xb8ypz8d6jlkihag" - -["gopkg.in/yaml.v3"] - sumVersion = "v3.0.0-20200313102051-9f266ea9e77c" - ["gopkg.in/yaml.v3".fetch] - type = "git" - url = "https://gopkg.in/yaml.v3" - rev = "9f266ea9e77c4c7aab4cf02650570e7c7b3031a5" - sha256 = "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35" - -["honnef.co/go/tools"] - sumVersion = "v0.0.0-20190418001031-e561f6794a2a" - ["honnef.co/go/tools".fetch] - type = "git" - url = "https://github.com/dominikh/go-tools" - rev = "e561f6794a2a09dd97bd3cdefde08db0d564f55c" - sha256 = "099mnjjkcw1jgqm6y1hjmqyi03a6f9asx7ifwp9c29c0yjw7fpd5" - -["rsc.io/binaryregexp"] - sumVersion = "v0.2.0" - ["rsc.io/binaryregexp".fetch] - type = "git" - url = "https://github.com/rsc/binaryregexp" - rev = "857b9542aaa89cfa42a1477b43fa1f24192fe921" - sha256 = "1kar0myy85waw418zslviwx8846zj0m9cmqkxjx0fvgjdi70nc4b" diff --git a/resources/cosmovisor/last-synced.narHash b/resources/cosmovisor/last-synced.narHash deleted file mode 100644 index 36d8d0e8..00000000 --- a/resources/cosmovisor/last-synced.narHash +++ /dev/null @@ -1 +0,0 @@ -sha256-owsXBdYIf7yENDjumqyQ5AQ+jPHKxVbpQbApUpTzoxo= diff --git a/resources/evmos/default.nix b/resources/evmos/default.nix deleted file mode 100644 index d5e1f2a1..00000000 --- a/resources/evmos/default.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ pkgs, evmos-src }: -pkgs.buildGoApplication { - name = "evmos"; - src = "${evmos-src}"; - modules = ./go-modules.toml; - preCheck = '' - export HOME="$(mktemp -d)" - ''; - CGO_ENABLED = "1"; -} - diff --git a/resources/evmos/go-modules.toml b/resources/evmos/go-modules.toml deleted file mode 100644 index 40044256..00000000 --- a/resources/evmos/go-modules.toml +++ /dev/null @@ -1,4375 +0,0 @@ -["bazil.org/fuse"] - sumVersion = "v0.0.0-20160811212531-371fbbdaa898" - ["bazil.org/fuse".fetch] - type = "git" - url = "https://github.com/bazil/fuse" - rev = "371fbbdaa8987b715bdd21d6adc4c9b20155f748" - sha256 = "1x5p301py7mcxgwklfm6pqqkzssln0nfzllng49pnk60m03ilp4w" - -["cloud.google.com/go"] - sumVersion = "v0.93.3" - ["cloud.google.com/go".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "71387f0142a47d5452dffe710e9a9013d6f73fed" - sha256 = "097ngr2jaabxsj3j5ymhg2gjzjwlrymar02xjj7bl76qc6hczqzm" - -["cloud.google.com/go/bigquery"] - sumVersion = "v1.8.0" - relPath = "bigquery" - ["cloud.google.com/go/bigquery".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "0aa265f094062dbc111a6906d279fbb88a6cc761" - sha256 = "1127ha4r0xjsfl04mdb134b6kvpc6yz5bx4bba8m1jmb4k3vyg3j" - -["cloud.google.com/go/bigtable"] - sumVersion = "v1.2.0" - relPath = "bigtable" - ["cloud.google.com/go/bigtable".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "4e7fb24f2973a4a8d59ff13c95859759b6506f95" - sha256 = "1nzy6y4cwb8vrbfbmwijk73i242p6ip58a1s140p57wh8qq000v1" - -["cloud.google.com/go/datastore"] - sumVersion = "v1.1.0" - relPath = "datastore" - ["cloud.google.com/go/datastore".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "d96ccb2ba7586bb79a416471882d347754a78ce5" - sha256 = "18f1l28665x1a8j8a5bh2i7wb2vrwj050d1g5qda50isgqaybixd" - -["cloud.google.com/go/firestore"] - sumVersion = "v1.6.0" - relPath = "firestore" - ["cloud.google.com/go/firestore".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "845edad40185ff8431ee7b0a5e0760ef886ea9e5" - sha256 = "18pabid0rayvkayzk6cb333k7zcz4khifw2ylmh0w4igswylb01z" - -["cloud.google.com/go/pubsub"] - sumVersion = "v1.3.1" - relPath = "pubsub" - ["cloud.google.com/go/pubsub".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "f4685751540ab300d8e99946847a75f7d0837e45" - sha256 = "1fxsj63d773yf6mjas5gwsq2caa6iqxmss6mms0yfdcc6krg6zkf" - -["cloud.google.com/go/storage"] - sumVersion = "v1.10.0" - relPath = "storage" - ["cloud.google.com/go/storage".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "3f2988d48e253a8e290b8c0e821284eead1131a0" - sha256 = "10fp6galzz8jwx35159xdcrwsqaz95xw78iwv1z5n67vhglwi5nf" - -["collectd.org"] - sumVersion = "v0.3.0" - ["collectd.org".fetch] - type = "git" - url = "https://github.com/collectd/go-collectd" - rev = "2ce144541b8903101fb8f1483cc0497a68798122" - sha256 = "0rr9rnc777jk27a7yxhdb7vgkj493158a8k6q44x51s30dkp78x3" - -["contrib.go.opencensus.io/exporter/prometheus"] - sumVersion = "v0.4.0" - ["contrib.go.opencensus.io/exporter/prometheus".fetch] - type = "git" - url = "https://github.com/census-ecosystem/opencensus-go-exporter-prometheus" - rev = "f3a7283b300296b21a74844bcdca927845f89a07" - sha256 = "0gd21w0zfsfbmh95vh8yqh8lq48z8f232ams7fzmnfaf618g14a5" - -["dmitri.shuralyov.com/gpu/mtl"] - sumVersion = "v0.0.0-20190408044501-666a987793e9" - ["dmitri.shuralyov.com/gpu/mtl".fetch] - type = "git" - url = "https://dmitri.shuralyov.com/gpu/mtl" - rev = "666a987793e9432fbb48592aa2f3bf3463685dfa" - sha256 = "1isd03hgiwcf2ld1rlp0plrnfz7r4i7c5q4kb6hkcd22axnmrv0z" - -["filippo.io/edwards25519"] - sumVersion = "v1.0.0-beta.2" - ["filippo.io/edwards25519".fetch] - type = "git" - url = "https://github.com/FiloSottile/edwards25519" - rev = "6944ac7e84c8dffcf51f4e1b0bc2d75a822549e5" - sha256 = "1fv6mssk1r96jbkbb413kxmcf87xz2knyx1bivdam2aa3mhxrim5" - -["github.com/99designs/keyring"] - sumVersion = "v1.1.7-0.20210622111912-ef00f8ac3d76" - vendorPath = "github.com/cosmos/keyring" - ["github.com/99designs/keyring".fetch] - type = "git" - url = "https://github.com/cosmos/keyring" - rev = "ef00f8ac3d762e4e0997a49c16808bb7fe81b661" - sha256 = "1ivw6y46iv1x6r6wqiahzv2c4a9rakkjx8a2drx54y6798hdcvvf" - -["github.com/Azure/azure-pipeline-go"] - sumVersion = "v0.2.2" - ["github.com/Azure/azure-pipeline-go".fetch] - type = "git" - url = "https://github.com/Azure/azure-pipeline-go" - rev = "232aee85e8e3a6223a11c0943f7df2ae0fac00e4" - sha256 = "1agn2nzmm1dkwggm4w7h4bnrav4n5jrl0vqbqy2s49vqlr8zirn6" - -["github.com/Azure/azure-storage-blob-go"] - sumVersion = "v0.7.0" - ["github.com/Azure/azure-storage-blob-go".fetch] - type = "git" - url = "https://github.com/Azure/azure-storage-blob-go" - rev = "3efca72bd11c050222deab57e25ea90df03b9692" - sha256 = "03lxg2v7gjl49cli818g9rnkz6818zvwhw8zm8z16y6cjmj8qmzv" - -["github.com/Azure/go-ansiterm"] - sumVersion = "v0.0.0-20210617225240-d185dfc1b5a1" - ["github.com/Azure/go-ansiterm".fetch] - type = "git" - url = "https://github.com/Azure/go-ansiterm" - rev = "d185dfc1b5a126116ea5a19e148e29d16b4574c9" - sha256 = "1y54b1fx80qlyvv2915xrryb9vcc8nnbsdkxszhxjg8bcg85ps5c" - -["github.com/Azure/go-autorest/autorest"] - sumVersion = "v0.9.0" - relPath = "autorest" - ["github.com/Azure/go-autorest/autorest".fetch] - type = "git" - url = "https://github.com/Azure/go-autorest" - rev = "85d9c035382e5537c3c76e84ca5b82c5f09825e9" - sha256 = "01fg6x3a6as2kh0km8kvjzjalq7xiqa17hnsdwawzlpnfpqgslvq" - -["github.com/Azure/go-autorest/autorest/adal"] - sumVersion = "v0.8.0" - relPath = "autorest/adal" - ["github.com/Azure/go-autorest/autorest/adal".fetch] - type = "git" - url = "https://github.com/Azure/go-autorest" - rev = "740293c019d8314ce3378d456b4327fa646297e6" - sha256 = "1ga12qs31v95010jdn8raw0mf2kvlxhfl8z856y7dn2x3fviv7r4" - -["github.com/Azure/go-autorest/autorest/date"] - sumVersion = "v0.2.0" - relPath = "autorest/date" - ["github.com/Azure/go-autorest/autorest/date".fetch] - type = "git" - url = "https://github.com/Azure/go-autorest" - rev = "5bd9621f41a06b08038be5c0522971a35316d5ef" - sha256 = "0fifmqljld72v0g545qqljmynhjgg8jm0ying35wzni0m7cg6n4y" - -["github.com/Azure/go-autorest/autorest/mocks"] - sumVersion = "v0.3.0" - relPath = "autorest/mocks" - ["github.com/Azure/go-autorest/autorest/mocks".fetch] - type = "git" - url = "https://github.com/Azure/go-autorest" - rev = "5bd9621f41a06b08038be5c0522971a35316d5ef" - sha256 = "0fifmqljld72v0g545qqljmynhjgg8jm0ying35wzni0m7cg6n4y" - -["github.com/Azure/go-autorest/logger"] - sumVersion = "v0.1.0" - relPath = "logger" - ["github.com/Azure/go-autorest/logger".fetch] - type = "git" - url = "https://github.com/Azure/go-autorest" - rev = "4bb4e3c99dd98a53e3d65a6f28aa05e2d435cb24" - sha256 = "1w94wxjjkiv8m44rcdm1af9h0ap2r8kpp9198cxpxj8d5xxkaxpz" - -["github.com/Azure/go-autorest/tracing"] - sumVersion = "v0.5.0" - relPath = "tracing" - ["github.com/Azure/go-autorest/tracing".fetch] - type = "git" - url = "https://github.com/Azure/go-autorest" - rev = "5e7a399d8bbf4953ab0c8e3167d7fd535fd74ce1" - sha256 = "0n482cjr2pk6ql6awcnn6llrnygjzakihbjaahgmylf3znwil7jp" - -["github.com/BurntSushi/toml"] - sumVersion = "v0.3.1" - ["github.com/BurntSushi/toml".fetch] - type = "git" - url = "https://github.com/BurntSushi/toml" - rev = "3012a1dbe2e4bd1391d42b32f0577cb7bbc7f005" - sha256 = "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6" - -["github.com/BurntSushi/xgb"] - sumVersion = "v0.0.0-20160522181843-27f122750802" - ["github.com/BurntSushi/xgb".fetch] - type = "git" - url = "https://github.com/BurntSushi/xgb" - rev = "27f122750802c950b2c869a5b63dafcf590ced95" - sha256 = "18lp2x8f5bljvlz0r7xn744f0c9rywjsb9ifiszqqdcpwhsa0kvj" - -["github.com/ChainSafe/go-schnorrkel"] - sumVersion = "v0.0.0-20200405005733-88cbf1b4c40d" - ["github.com/ChainSafe/go-schnorrkel".fetch] - type = "git" - url = "https://github.com/ChainSafe/go-schnorrkel" - rev = "88cbf1b4c40de64a5ea4863476c6c8ae5433c594" - sha256 = "09ncxdzy4scwmgj96lq83a40bb29nkws1y9x0nim86l9x5jmgi4b" - -["github.com/DATA-DOG/go-sqlmock"] - sumVersion = "v1.3.3" - ["github.com/DATA-DOG/go-sqlmock".fetch] - type = "git" - url = "https://github.com/DATA-DOG/go-sqlmock" - rev = "3f9954f6f6697845b082ca57995849ddf614f450" - sha256 = "1xrly2vmy1mgj9dbkmivhh8gvq6v9f9xy2yp2dw54i1895zzs928" - -["github.com/DataDog/datadog-go"] - sumVersion = "v3.2.0+incompatible" - ["github.com/DataDog/datadog-go".fetch] - type = "git" - url = "https://github.com/DataDog/datadog-go" - rev = "8bfdc335936a79b55b3e2c1080930bc5a3eb57f2" - sha256 = "1m8anll166rwcprjyv3bb0l450p35m0gzn6fs7bcd3ck2s527k7x" - -["github.com/DataDog/zstd"] - sumVersion = "v1.4.8" - ["github.com/DataDog/zstd".fetch] - type = "git" - url = "https://github.com/DataDog/zstd" - rev = "12a1eb7c63c644316b0eded9fc939def05ce4b5a" - sha256 = "0rb0d09zas3698vx6r61nsgppgs9y1f7wkik9p28jjpgqzmfdjqh" - -["github.com/Knetic/govaluate"] - sumVersion = "v3.0.1-0.20171022003610-9aa49832a739+incompatible" - ["github.com/Knetic/govaluate".fetch] - type = "git" - url = "https://github.com/Knetic/govaluate" - rev = "9aa49832a739dcd78a5542ff189fb82c3e423116" - sha256 = "12klijhq4fckzbhv0cwygbazj6lvhmdqksha9y6jgfmwzv51kwv5" - -["github.com/Microsoft/go-winio"] - sumVersion = "v0.5.0" - ["github.com/Microsoft/go-winio".fetch] - type = "git" - url = "https://github.com/Microsoft/go-winio" - rev = "58dba89befbca5b5a2c944f84642f5b0540bcfd5" - sha256 = "123p5by5craqigydfqj0hchplcv75zz81xzj5s3ixq624qjbg0z5" - -["github.com/Nvveen/Gotty"] - sumVersion = "v0.0.0-20120604004816-cd527374f1e5" - ["github.com/Nvveen/Gotty".fetch] - type = "git" - url = "https://github.com/Nvveen/Gotty" - rev = "cd527374f1e5bff4938207604a14f2e38a9cf512" - sha256 = "1ylvr1p6p036ns3g3wdz8f92f69symshkc8j54fa6gpg4hyk0k6q" - -["github.com/OneOfOne/xxhash"] - sumVersion = "v1.2.2" - ["github.com/OneOfOne/xxhash".fetch] - type = "git" - url = "https://github.com/OneOfOne/xxhash" - rev = "6def279d2ce6c81a79dd1c1be580f03bb216fb8a" - sha256 = "1mjfhrwhvxa48rycjnqpqzm521i38h1hdyz6pdwmhd7xb8j6gwi6" - -["github.com/Shopify/sarama"] - sumVersion = "v1.19.0" - ["github.com/Shopify/sarama".fetch] - type = "git" - url = "https://github.com/Shopify/sarama" - rev = "ec843464b50d4c8b56403ec9d589cf41ea30e722" - sha256 = "0q1z3pvcd011yprwzws2s293v4cjvsszhai6vnfrahjcbsz79q0z" - -["github.com/Shopify/toxiproxy"] - sumVersion = "v2.1.4+incompatible" - ["github.com/Shopify/toxiproxy".fetch] - type = "git" - url = "https://github.com/Shopify/toxiproxy" - rev = "49b4ea27da29ae83ad3bfe7f7f090d18cbee1dc3" - sha256 = "07yhsvscdv1qjfc2fyyh9qsrrdwrrw04wadk5gaq4qddcway7vig" - -["github.com/StackExchange/wmi"] - sumVersion = "v1.2.1" - ["github.com/StackExchange/wmi".fetch] - type = "git" - url = "https://github.com/StackExchange/wmi" - rev = "441642c1665945335b93778e496324884ce569e7" - sha256 = "0ijhmr8sl768vkxslvw7fprav6srw4ivp32rzg3ydj8nc1wh86nl" - -["github.com/VictoriaMetrics/fastcache"] - sumVersion = "v1.6.0" - ["github.com/VictoriaMetrics/fastcache".fetch] - type = "git" - url = "https://github.com/VictoriaMetrics/fastcache" - rev = "5ffb40c1da4c7e2b8483e73629e66f4f1f94bff2" - sha256 = "1ivx700ijnkyjbgw4rq4446d4dnb4sg7sh569rsvnm5cm0fkvyhz" - -["github.com/VividCortex/gohistogram"] - sumVersion = "v1.0.0" - ["github.com/VividCortex/gohistogram".fetch] - type = "git" - url = "https://github.com/VividCortex/gohistogram" - rev = "51564d9861991fb0ad0f531c99ef602d0f9866e6" - sha256 = "1ykpvrkri3mzc0z77kdva93ylh0bqg7jq3i024r3iv0i6bwx3rnf" - -["github.com/Workiva/go-datastructures"] - sumVersion = "v1.0.52" - ["github.com/Workiva/go-datastructures".fetch] - type = "git" - url = "https://github.com/Workiva/go-datastructures" - rev = "0819bcaf26091e7c33585441f8961854c2400faa" - sha256 = "0qsj9r3md4n9nxmlvg6cgysivm4ay905ivbk5vi5csnykwnamqmk" - -["github.com/Zilliqa/gozilliqa-sdk"] - sumVersion = "v1.2.1-0.20201201074141-dd0ecada1be6" - ["github.com/Zilliqa/gozilliqa-sdk".fetch] - type = "git" - url = "https://github.com/Zilliqa/gozilliqa-sdk" - rev = "dd0ecada1be6987976b9f3b557dbb4de305ecf5b" - sha256 = "06hzp118gzkbfvmzpwsqd4iky9br99lxgidgs5xnxwhzhli017w1" - -["github.com/adlio/schema"] - sumVersion = "v1.1.13" - ["github.com/adlio/schema".fetch] - type = "git" - url = "https://github.com/adlio/schema" - rev = "158666f4977057e9c8000a43995556d43f18fc8e" - sha256 = "18myq29vi5l3l1yzmpvam29m8lb6pgihs2a3gxpip9m38cz72rsf" - -["github.com/aead/siphash"] - sumVersion = "v1.0.1" - ["github.com/aead/siphash".fetch] - type = "git" - url = "https://github.com/aead/siphash" - rev = "83563a290f60225eb120d724600b9690c3fb536f" - sha256 = "01kd1z82sc4nh3nj9c25aryyp396s7jrqc2kz9d7qq1vy2hdbznc" - -["github.com/afex/hystrix-go"] - sumVersion = "v0.0.0-20180502004556-fa1af6a1f4f5" - ["github.com/afex/hystrix-go".fetch] - type = "git" - url = "https://github.com/afex/hystrix-go" - rev = "fa1af6a1f4f56e0e50d427fe901cd604d8c6fb8a" - sha256 = "0zlj0330j816flvwvis4d4vv1gigpxlghph7awbc9jb7ggf2qssn" - -["github.com/ajstarks/svgo"] - sumVersion = "v0.0.0-20180226025133-644b8db467af" - ["github.com/ajstarks/svgo".fetch] - type = "git" - url = "https://github.com/ajstarks/svgo" - rev = "644b8db467afccf19a0692a3e31a1868e4287ab8" - sha256 = "1m56v06gpdzfmw0hgjri487gdlc5w40s3pz1l7lp8hbw2l6lbjhk" - -["github.com/alecthomas/template"] - sumVersion = "v0.0.0-20190718012654-fb15b899a751" - ["github.com/alecthomas/template".fetch] - type = "git" - url = "https://github.com/alecthomas/template" - rev = "fb15b899a75114aa79cc930e33c46b577cc664b1" - sha256 = "1vlasv4dgycydh5wx6jdcvz40zdv90zz1h7836z7lhsi2ymvii26" - -["github.com/alecthomas/units"] - sumVersion = "v0.0.0-20190924025748-f65c72e2690d" - ["github.com/alecthomas/units".fetch] - type = "git" - url = "https://github.com/alecthomas/units" - rev = "f65c72e2690dc4b403c8bd637baf4611cd4c069b" - sha256 = "04jyqm7m3m01ppfy1f9xk4qvrwvs78q9zml6llyf2b3v5k6b2bbc" - -["github.com/allegro/bigcache"] - sumVersion = "v1.2.1" - ["github.com/allegro/bigcache".fetch] - type = "git" - url = "https://github.com/allegro/bigcache" - rev = "0605c28b510103c549fb020d5fb50e1ad4093de8" - sha256 = "1h4lir4xfdyfbn6g8yv8g1if63wdx5k0az70rirnvriv303jlg7w" - -["github.com/andreyvit/diff"] - sumVersion = "v0.0.0-20170406064948-c7f18ee00883" - ["github.com/andreyvit/diff".fetch] - type = "git" - url = "https://github.com/andreyvit/diff" - rev = "c7f18ee00883bfd3b00e0a2bf7607827e0148ad4" - sha256 = "1s4qjkxig5yqahpzfl4xqh4kzi9mymdpkzq6kj3f4dr5dl3hlynr" - -["github.com/antihax/optional"] - sumVersion = "v1.0.0" - ["github.com/antihax/optional".fetch] - type = "git" - url = "https://github.com/antihax/optional" - rev = "c3f0ba9c1a592b971d66b2787679af55b5c58f21" - sha256 = "1ix08vl49qxr58rc6201cl97g1yznhhkwvqldslawind99js4rj0" - -["github.com/apache/arrow/go/arrow"] - sumVersion = "v0.0.0-20191024131854-af6fa24be0db" - relPath = "go/arrow" - ["github.com/apache/arrow/go/arrow".fetch] - type = "git" - url = "https://github.com/apache/arrow" - rev = "af6fa24be0dbbc021e0844c63d1c0b89fb23a95c" - sha256 = "1gy68sg7jz3m07hmq8s1n8qs2yvgyb33qxw0zhivj9zyflxha0rd" - -["github.com/apache/thrift"] - sumVersion = "v0.13.0" - ["github.com/apache/thrift".fetch] - type = "git" - url = "https://github.com/apache/thrift" - rev = "cecee50308fc7e6f77f55b3fd906c1c6c471fa2f" - sha256 = "17ckl7p7s3ga33yrjisilsimp80ansqxl54wvpkv0j7vx2zvc13y" - -["github.com/aristanetworks/goarista"] - sumVersion = "v0.0.0-20170210015632-ea17b1a17847" - ["github.com/aristanetworks/goarista".fetch] - type = "git" - url = "https://github.com/aristanetworks/goarista" - rev = "ea17b1a17847fb6e4c0a91de0b674704693469b0" - sha256 = "02q3dhrgcbdx2826vs7gwrnw6yg9kwcyqyhrvnyf5fj5wfdqzdmp" - -["github.com/armon/circbuf"] - sumVersion = "v0.0.0-20150827004946-bbbad097214e" - ["github.com/armon/circbuf".fetch] - type = "git" - url = "https://github.com/armon/circbuf" - rev = "bbbad097214e2918d8543d5201d12bfd7bca254d" - sha256 = "1idpr0lzb2px2p3wgfq2276yl7jpaz43df6n91kf790404s4zmk3" - -["github.com/armon/consul-api"] - sumVersion = "v0.0.0-20180202201655-eb2c6b5be1b6" - ["github.com/armon/consul-api".fetch] - type = "git" - url = "https://github.com/armon/consul-api" - rev = "eb2c6b5be1b66bab83016e0b05f01b8d5496ffbd" - sha256 = "1j6fdr1sg36qy4n4xjl7brq739fpm5npq98cmvklzjc9qrx98nk9" - -["github.com/armon/go-metrics"] - sumVersion = "v0.3.9" - ["github.com/armon/go-metrics".fetch] - type = "git" - url = "https://github.com/armon/go-metrics" - rev = "f792dbc8f4b651df89dc7098fce61ca56a0a2bee" - sha256 = "0sbnzw7sdjcf2l6nsxynpv99m6sza1zyakl82by37sqhn60hj9is" - -["github.com/armon/go-radix"] - sumVersion = "v1.0.0" - ["github.com/armon/go-radix".fetch] - type = "git" - url = "https://github.com/armon/go-radix" - rev = "1a2de0c21c94309923825da3df33a4381872c795" - sha256 = "1m1k0jz9gjfrk4m7hjm7p03qmviamfgxwm2ghakqxw3hdds8v503" - -["github.com/aryann/difflib"] - sumVersion = "v0.0.0-20170710044230-e206f873d14a" - ["github.com/aryann/difflib".fetch] - type = "git" - url = "https://github.com/aryann/difflib" - rev = "e206f873d14a916d3d26c40ab667bca123f365a3" - sha256 = "00zb9sx6l6b2zq614x45zlyshl20zjhwfj8r5krw4f9y0mx3n2dm" - -["github.com/aws/aws-lambda-go"] - sumVersion = "v1.13.3" - ["github.com/aws/aws-lambda-go".fetch] - type = "git" - url = "https://github.com/aws/aws-lambda-go" - rev = "b5b7267d297de263cc5b61f8c37543daa9c95ffd" - sha256 = "049zq6gr9xdjjsxd3yimawqlh2ibfkj2434cnjm4x93ph62hppm9" - -["github.com/aws/aws-sdk-go"] - sumVersion = "v1.27.0" - ["github.com/aws/aws-sdk-go".fetch] - type = "git" - url = "https://github.com/aws/aws-sdk-go" - rev = "a1e6946e8014a793d989e64ef5566315010ce898" - sha256 = "1b2lkbvlbgkas1l7cilnanr4mc0z2l28ii5bpsrcp3azn6wdjfpx" - -["github.com/aws/aws-sdk-go-v2"] - sumVersion = "v1.2.0" - ["github.com/aws/aws-sdk-go-v2".fetch] - type = "git" - url = "https://github.com/aws/aws-sdk-go-v2" - rev = "be1c89938486820ef47f075e7db95d4ad7411ccd" - sha256 = "1zaczqlqhi97qclgnvxblgqky4v2blvvpa4p4z4kq5ymqklzs9i2" - -["github.com/aws/aws-sdk-go-v2/config"] - sumVersion = "v1.1.1" - relPath = "config" - ["github.com/aws/aws-sdk-go-v2/config".fetch] - type = "git" - url = "https://github.com/aws/aws-sdk-go-v2" - rev = "be1c89938486820ef47f075e7db95d4ad7411ccd" - sha256 = "1zaczqlqhi97qclgnvxblgqky4v2blvvpa4p4z4kq5ymqklzs9i2" - -["github.com/aws/aws-sdk-go-v2/credentials"] - sumVersion = "v1.1.1" - relPath = "credentials" - ["github.com/aws/aws-sdk-go-v2/credentials".fetch] - type = "git" - url = "https://github.com/aws/aws-sdk-go-v2" - rev = "be1c89938486820ef47f075e7db95d4ad7411ccd" - sha256 = "1zaczqlqhi97qclgnvxblgqky4v2blvvpa4p4z4kq5ymqklzs9i2" - -["github.com/aws/aws-sdk-go-v2/feature/ec2/imds"] - sumVersion = "v1.0.2" - relPath = "feature/ec2/imds" - ["github.com/aws/aws-sdk-go-v2/feature/ec2/imds".fetch] - type = "git" - url = "https://github.com/aws/aws-sdk-go-v2" - rev = "be1c89938486820ef47f075e7db95d4ad7411ccd" - sha256 = "1zaczqlqhi97qclgnvxblgqky4v2blvvpa4p4z4kq5ymqklzs9i2" - -["github.com/aws/aws-sdk-go-v2/service/internal/presigned-url"] - sumVersion = "v1.0.2" - relPath = "service/internal/presigned-url" - ["github.com/aws/aws-sdk-go-v2/service/internal/presigned-url".fetch] - type = "git" - url = "https://github.com/aws/aws-sdk-go-v2" - rev = "be1c89938486820ef47f075e7db95d4ad7411ccd" - sha256 = "1zaczqlqhi97qclgnvxblgqky4v2blvvpa4p4z4kq5ymqklzs9i2" - -["github.com/aws/aws-sdk-go-v2/service/route53"] - sumVersion = "v1.1.1" - relPath = "service/route53" - ["github.com/aws/aws-sdk-go-v2/service/route53".fetch] - type = "git" - url = "https://github.com/aws/aws-sdk-go-v2" - rev = "be1c89938486820ef47f075e7db95d4ad7411ccd" - sha256 = "1zaczqlqhi97qclgnvxblgqky4v2blvvpa4p4z4kq5ymqklzs9i2" - -["github.com/aws/aws-sdk-go-v2/service/sso"] - sumVersion = "v1.1.1" - relPath = "service/sso" - ["github.com/aws/aws-sdk-go-v2/service/sso".fetch] - type = "git" - url = "https://github.com/aws/aws-sdk-go-v2" - rev = "be1c89938486820ef47f075e7db95d4ad7411ccd" - sha256 = "1zaczqlqhi97qclgnvxblgqky4v2blvvpa4p4z4kq5ymqklzs9i2" - -["github.com/aws/aws-sdk-go-v2/service/sts"] - sumVersion = "v1.1.1" - relPath = "service/sts" - ["github.com/aws/aws-sdk-go-v2/service/sts".fetch] - type = "git" - url = "https://github.com/aws/aws-sdk-go-v2" - rev = "be1c89938486820ef47f075e7db95d4ad7411ccd" - sha256 = "1zaczqlqhi97qclgnvxblgqky4v2blvvpa4p4z4kq5ymqklzs9i2" - -["github.com/aws/smithy-go"] - sumVersion = "v1.1.0" - ["github.com/aws/smithy-go".fetch] - type = "git" - url = "https://github.com/aws/smithy-go" - rev = "e9104d8f89001998c6ab305ddbb64383e9f17680" - sha256 = "153ky3d91bskmsipj4v4h2011qxpjbjkbwrr8n3x2z21fhixrwda" - -["github.com/beorn7/perks"] - sumVersion = "v1.0.1" - ["github.com/beorn7/perks".fetch] - type = "git" - url = "https://github.com/beorn7/perks" - rev = "37c8de3658fcb183f997c4e13e8337516ab753e6" - sha256 = "17n4yygjxa6p499dj3yaqzfww2g7528165cl13haj97hlx94dgl7" - -["github.com/bgentry/speakeasy"] - sumVersion = "v0.1.0" - ["github.com/bgentry/speakeasy".fetch] - type = "git" - url = "https://github.com/bgentry/speakeasy" - rev = "4aabc24848ce5fd31929f7d1e4ea74d3709c14cd" - sha256 = "02dfrj0wyphd3db9zn2mixqxwiz1ivnyc5xc7gkz58l5l27nzp8s" - -["github.com/bits-and-blooms/bitset"] - sumVersion = "v1.2.0" - ["github.com/bits-and-blooms/bitset".fetch] - type = "git" - url = "https://github.com/bits-and-blooms/bitset" - rev = "59de210119f50cedaa42d175dc88b6335fcf63f6" - sha256 = "0r9f7lvz6znl7yr6njg77m8hj472yhdshf1qaybwyw7j8as6c4r3" - -["github.com/bketelsen/crypt"] - sumVersion = "v0.0.4" - ["github.com/bketelsen/crypt".fetch] - type = "git" - url = "https://github.com/bketelsen/crypt" - rev = "3f0829aaee54a3e9eabd45afbf68257a5cf754f7" - sha256 = "0fyfcvy73zskd1p1mv0cn03anxkkr5gvlawsc87znqk60hdypq3v" - -["github.com/bmizerany/pat"] - sumVersion = "v0.0.0-20170815010413-6226ea591a40" - ["github.com/bmizerany/pat".fetch] - type = "git" - url = "https://github.com/bmizerany/pat" - rev = "6226ea591a40176dd3ff9cd8eff81ed6ca721a00" - sha256 = "0qjkm7169y6pybwh0s02fjjk251isa2b367xqfzrwvl6cy4yzfxp" - -["github.com/boltdb/bolt"] - sumVersion = "v1.3.1" - ["github.com/boltdb/bolt".fetch] - type = "git" - url = "https://github.com/boltdb/bolt" - rev = "2f1ce7a837dcb8da3ec595b1dac9d0632f0f99e8" - sha256 = "0z7j06lijfi4y30ggf2znak2zf2srv2m6c68ar712wd2ys44qb3r" - -["github.com/btcsuite/btcd"] - sumVersion = "v0.22.0-beta" - ["github.com/btcsuite/btcd".fetch] - type = "git" - url = "https://github.com/btcsuite/btcd" - rev = "63438c6d3661a7dec09013f7731035abdf1eb4bc" - sha256 = "0rcsd3wcs0cii8qq0573h9fi1x92i8c1gzdvifnkm2r0ndl4knla" - -["github.com/btcsuite/btclog"] - sumVersion = "v0.0.0-20170628155309-84c8d2346e9f" - ["github.com/btcsuite/btclog".fetch] - type = "git" - url = "https://github.com/btcsuite/btclog" - rev = "84c8d2346e9fc8c7b947e243b9c24e6df9fd206a" - sha256 = "02dl46wcnfpg9sqvg0ipipkpnd7lrf4fnvb9zy56jqa7mfcwc7wk" - -["github.com/btcsuite/btcutil"] - sumVersion = "v1.0.3-0.20201208143702-a53e38424cce" - ["github.com/btcsuite/btcutil".fetch] - type = "git" - url = "https://github.com/btcsuite/btcutil" - rev = "a53e38424cce1c9de2062b69364efd35fd428d15" - sha256 = "1izjvgi0d5wnknfwdnqa196hn4vj1n5ga7swbhcfsgghk2zngwr4" - -["github.com/btcsuite/go-socks"] - sumVersion = "v0.0.0-20170105172521-4720035b7bfd" - ["github.com/btcsuite/go-socks".fetch] - type = "git" - url = "https://github.com/btcsuite/go-socks" - rev = "4720035b7bfd2a9bb130b1c184f8bbe41b6f0d0f" - sha256 = "18cv2icj059lq4s99p6yh91hlas5f2gi3f1p4c10sjgwrs933d7b" - -["github.com/btcsuite/goleveldb"] - sumVersion = "v1.0.0" - ["github.com/btcsuite/goleveldb".fetch] - type = "git" - url = "https://github.com/btcsuite/goleveldb" - rev = "3fd0373267b6461dbefe91cef614278064d05465" - sha256 = "0kwllw5yflpn362xbsqphbm10qcy08v3zqs15zbyp4mkjjk0bl9z" - -["github.com/btcsuite/snappy-go"] - sumVersion = "v1.0.0" - ["github.com/btcsuite/snappy-go".fetch] - type = "git" - url = "https://github.com/btcsuite/snappy-go" - rev = "b3db38edf0a9a11a115eb6b022d8c946024a9ac0" - sha256 = "0b2536a58l6advb0ag9ywz7i5cdzclvmm3x796jydv1yrbj5x2vk" - -["github.com/btcsuite/websocket"] - sumVersion = "v0.0.0-20150119174127-31079b680792" - ["github.com/btcsuite/websocket".fetch] - type = "git" - url = "https://github.com/btcsuite/websocket" - rev = "31079b6807923eb23992c421b114992b95131b55" - sha256 = "0xpkf257ml6fpfdgv7hxxc41n0d5yxxm3njm50qpzp7j71l9cjwa" - -["github.com/btcsuite/winsvc"] - sumVersion = "v1.0.0" - ["github.com/btcsuite/winsvc".fetch] - type = "git" - url = "https://github.com/btcsuite/winsvc" - rev = "f8fb11f83f7e860e3769a08e6811d1b399a43722" - sha256 = "0nsw8y86a5hzr2a3j6ch9myrpccj5bnsgaxpgajhzfk5d31xlw1z" - -["github.com/c-bata/go-prompt"] - sumVersion = "v0.2.2" - ["github.com/c-bata/go-prompt".fetch] - type = "git" - url = "https://github.com/c-bata/go-prompt" - rev = "c52492ff1b386e5c0ba5271b5eaad165fab09eca" - sha256 = "14k8anchf0rcpxfbb2acrajdqrfspscbkn47m4py1zh5rkk6b9p9" - -["github.com/casbin/casbin/v2"] - sumVersion = "v2.1.2" - ["github.com/casbin/casbin/v2".fetch] - type = "git" - url = "https://github.com/casbin/casbin" - rev = "31a4cf3e119fdace8f02263315e83ca37a3fcc18" - sha256 = "175y7v4wlr26g23k551676zq3n3cxv8wjm3zsfhyxy3liikg7899" - -["github.com/cenkalti/backoff"] - sumVersion = "v2.2.1+incompatible" - ["github.com/cenkalti/backoff".fetch] - type = "git" - url = "https://github.com/cenkalti/backoff" - rev = "5267b6dd4d2666b980a911bf235efa276222cbe2" - sha256 = "1mf4lsl3rbb8kk42x0mrhzzy4ikqy0jf6nxpzhkr02rdgwh6rjk8" - -["github.com/cenkalti/backoff/v4"] - sumVersion = "v4.1.1" - ["github.com/cenkalti/backoff/v4".fetch] - type = "git" - url = "https://github.com/cenkalti/backoff" - rev = "a78d3804c2c84f0a3178648138442c9b07665bda" - sha256 = "08c28226q612i1pv83161y57qh16631vpc51ai9f76qfrzsy946z" - -["github.com/census-instrumentation/opencensus-proto"] - sumVersion = "v0.2.1" - ["github.com/census-instrumentation/opencensus-proto".fetch] - type = "git" - url = "https://github.com/census-instrumentation/opencensus-proto" - rev = "d89fa54de508111353cb0b06403c00569be780d8" - sha256 = "19fcx3sc99i5dsklny6r073z5j20vlwn2xqm6di1q3b1xwchzqfj" - -["github.com/cespare/cp"] - sumVersion = "v0.1.0" - ["github.com/cespare/cp".fetch] - type = "git" - url = "https://github.com/cespare/cp" - rev = "165db2f241fd235aec29ba6d9b1ccd5f1c14637c" - sha256 = "1x76x985q9av29smybpc3g4az2qjmzqw181vp9z38wpbips31nm9" - -["github.com/cespare/xxhash"] - sumVersion = "v1.1.0" - ["github.com/cespare/xxhash".fetch] - type = "git" - url = "https://github.com/cespare/xxhash" - rev = "569f7c8abf1f58d9043ab804d364483cb1c853b6" - sha256 = "1qyzlcdcayavfazvi03izx83fvip8h36kis44zr2sg7xf6sx6l4x" - -["github.com/cespare/xxhash/v2"] - sumVersion = "v2.1.1" - ["github.com/cespare/xxhash/v2".fetch] - type = "git" - url = "https://github.com/cespare/xxhash" - rev = "d7df74196a9e781ede915320c11c378c1b2f3a1f" - sha256 = "0rl5rs8546zj1vzggv38w93wx0b5dvav7yy5hzxa8kw7iikv1cgr" - -["github.com/checkpoint-restore/go-criu/v5"] - sumVersion = "v5.0.0" - ["github.com/checkpoint-restore/go-criu/v5".fetch] - type = "git" - url = "https://github.com/checkpoint-restore/go-criu" - rev = "885cc36edb02fc5afeed0759885b473c16d249d8" - sha256 = "07dal5a9y43azkkh61jf6s81h7anbl17drkh2mal9mzcsi8wa2z8" - -["github.com/chzyer/logex"] - sumVersion = "v1.1.10" - ["github.com/chzyer/logex".fetch] - type = "git" - url = "https://github.com/chzyer/logex" - rev = "cd112f618178aaaf4ea8592c8839f5276145d9cf" - sha256 = "08pbjj3wx9acavlwyr055isa8a5hnmllgdv5k6ra60l5y1brmlq4" - -["github.com/chzyer/readline"] - sumVersion = "v0.0.0-20180603132655-2972be24d48e" - ["github.com/chzyer/readline".fetch] - type = "git" - url = "https://github.com/chzyer/readline" - rev = "2972be24d48e78746da79ba8e24e8b488c9880de" - sha256 = "104q8dazj8yf6b089jjr82fy9h1g80zyyzvp3g8b44a7d8ngjj6r" - -["github.com/chzyer/test"] - sumVersion = "v0.0.0-20180213035817-a1ea475d72b1" - ["github.com/chzyer/test".fetch] - type = "git" - url = "https://github.com/chzyer/test" - rev = "a1ea475d72b168a29f44221e0ad031a842642302" - sha256 = "0rns2aqk22i9xsgyap0pq8wi4cfaxsri4d9q6xxhhyma8jjsnj2k" - -["github.com/cilium/ebpf"] - sumVersion = "v0.6.2" - ["github.com/cilium/ebpf".fetch] - type = "git" - url = "https://github.com/cilium/ebpf" - rev = "ca492085341e0e917f48ec30704d5054c5d42ca8" - sha256 = "0x64sg0kyc8bbsp75dpv8g2jfmpdldsshf9ni49jh6rgsnnqhpf8" - -["github.com/circonus-labs/circonus-gometrics"] - sumVersion = "v2.3.1+incompatible" - ["github.com/circonus-labs/circonus-gometrics".fetch] - type = "git" - url = "https://github.com/circonus-labs/circonus-gometrics" - rev = "9eb673b3d5f6bf1c932ae7596831eefb0c0c3c2f" - sha256 = "0s2wir711h0k2h8xsypgpzshccnx8jkwjfni7n32l7wd8yng9ngs" - -["github.com/circonus-labs/circonusllhist"] - sumVersion = "v0.1.3" - ["github.com/circonus-labs/circonusllhist".fetch] - type = "git" - url = "https://github.com/circonus-labs/circonusllhist" - rev = "87d4d00b35adeefe4911ece727838749e0fab113" - sha256 = "127js92p5gx84vfj3vdmf7nn6dmqmkrxg927z0jh91fdkipmmv3i" - -["github.com/clbanning/x2j"] - sumVersion = "v0.0.0-20191024224557-825249438eec" - ["github.com/clbanning/x2j".fetch] - type = "git" - url = "https://github.com/clbanning/x2j" - rev = "825249438eec392bc87b980fb635b336e496a888" - sha256 = "1khqy1m22vnyw0x24i4bwd37zvgzj25q139mh79bddj1rw5hf7hy" - -["github.com/cloudflare/cloudflare-go"] - sumVersion = "v0.14.0" - ["github.com/cloudflare/cloudflare-go".fetch] - type = "git" - url = "https://github.com/cloudflare/cloudflare-go" - rev = "1426b776f85bc6c5c9390247d48b6ea0bcffa13f" - sha256 = "0x3jh3ihvwbjwjk2bld9gfijp2sd318cjjxn1z35fnnxwwbwbzhx" - -["github.com/cncf/udpa/go"] - sumVersion = "v0.0.0-20191209042840-269d4d468f6f" - relPath = "go" - ["github.com/cncf/udpa/go".fetch] - type = "git" - url = "https://github.com/cncf/udpa" - rev = "269d4d468f6f798d803d140c3016ed6fc6b735c5" - sha256 = "0i1jiaw2k3hlwwmg4hap81vb4s1p25xp9kdfww37v0fbgjariccs" - -["github.com/cockroachdb/datadriven"] - sumVersion = "v0.0.0-20190809214429-80d97fb3cbaa" - ["github.com/cockroachdb/datadriven".fetch] - type = "git" - url = "https://github.com/cockroachdb/datadriven" - rev = "80d97fb3cbaa752564320702f409fdb2ef3da0ef" - sha256 = "0rvavka9zhri6r50n8fy98247fl5vycb1hffjrhshsicjv1frmlp" - -["github.com/codahale/hdrhistogram"] - sumVersion = "v0.0.0-20161010025455-3a0bb77429bd" - ["github.com/codahale/hdrhistogram".fetch] - type = "git" - url = "https://github.com/codahale/hdrhistogram" - rev = "3a0bb77429bd3a61596f5e8a3172445844342120" - sha256 = "1zampgfjbxy192cbwdi7g86l1idxaam96d834wncnpfdwgh5kl57" - -["github.com/coinbase/rosetta-sdk-go"] - sumVersion = "v0.6.10" - ["github.com/coinbase/rosetta-sdk-go".fetch] - type = "git" - url = "https://github.com/coinbase/rosetta-sdk-go" - rev = "9ba330f0a51ab41c1c8738a040eb2b28894b82d9" - sha256 = "0idsqyxjdvb2j7h97g5jyr7nniphwcd8pjgw969fvrg08rjm7qr7" - -["github.com/confio/ics23/go"] - sumVersion = "v0.6.6" - relPath = "go" - ["github.com/confio/ics23/go".fetch] - type = "git" - url = "https://github.com/confio/ics23" - rev = "6cf2f712b5ecccf0a138c29a77b726d57bdaad51" - sha256 = "0r1vk5lvjfri57hd5dk75dfiyzz57qaljshw6sr80aj5v8krzxsn" - -["github.com/consensys/bavard"] - sumVersion = "v0.1.8-0.20210406032232-f3452dc9b572" - ["github.com/consensys/bavard".fetch] - type = "git" - url = "https://github.com/consensys/bavard" - rev = "f3452dc9b5723cb45e221513c9b6085f397932d9" - sha256 = "19sp1x5rkshqc2avq7zzrj49mdnnqwbkj2psm82f244gcr0a08d5" - -["github.com/consensys/gnark-crypto"] - sumVersion = "v0.4.1-0.20210426202927-39ac3d4b3f1f" - ["github.com/consensys/gnark-crypto".fetch] - type = "git" - url = "https://github.com/consensys/gnark-crypto" - rev = "39ac3d4b3f1fc30b95a4098257eaac0ad2093a34" - sha256 = "1y564cvr8lh33andnbpivpkz472z72g4f2gf24b701s2bclx0k6w" - -["github.com/containerd/console"] - sumVersion = "v1.0.2" - ["github.com/containerd/console".fetch] - type = "git" - url = "https://github.com/containerd/console" - rev = "2f1e3d2b6afd18e8b2077816c711205a0b4d8769" - sha256 = "0rxwgq578hphs2ldx1gg6c9fq1qm8rgqfx3vgi2sbrsmxn6m2438" - -["github.com/containerd/continuity"] - sumVersion = "v0.1.0" - ["github.com/containerd/continuity".fetch] - type = "git" - url = "https://github.com/containerd/continuity" - rev = "bce1c3f9669b6f3e7f6656ee715b0b4d75fa64a6" - sha256 = "1h756l1xc31sc4zc1d3hmh64kl9qm5vpbbw0c93hrasn51ki96yz" - -["github.com/coreos/bbolt"] - sumVersion = "v1.3.2" - ["github.com/coreos/bbolt".fetch] - type = "git" - url = "https://github.com/coreos/bbolt" - rev = "63597a96ec0ad9e6d43c3fc81e809909e0237461" - sha256 = "13d5l6p6c5wvkr6vn9hkhz9c593qifn7fgx0hg4d6jcvg1y0bnm2" - -["github.com/coreos/etcd"] - sumVersion = "v3.3.13+incompatible" - ["github.com/coreos/etcd".fetch] - type = "git" - url = "https://github.com/coreos/etcd" - rev = "98d308426819d892e149fe45f6fd542464cb1f9d" - sha256 = "1kac4qfr83f2hdz35403f1ald05wc85vvhw79vxb431n61jvyaqy" - -["github.com/coreos/go-etcd"] - sumVersion = "v2.0.0+incompatible" - ["github.com/coreos/go-etcd".fetch] - type = "git" - url = "https://github.com/coreos/go-etcd" - rev = "f02171fbd43c7b9b53ce8679b03235a1ef3c7b12" - sha256 = "1xb34hzaa1lkbq5vkzy9vcz6gqwj7hp6cdbvyack2bf28dwn33jj" - -["github.com/coreos/go-semver"] - sumVersion = "v0.3.0" - ["github.com/coreos/go-semver".fetch] - type = "git" - url = "https://github.com/coreos/go-semver" - rev = "e214231b295a8ea9479f11b70b35d5acf3556d9b" - sha256 = "0770h1mpig2j5sbiha3abnwaw8p6dg9i87r8pc7cf6m4kwml3sc9" - -["github.com/coreos/go-systemd"] - sumVersion = "v0.0.0-20190321100706-95778dfbb74e" - ["github.com/coreos/go-systemd".fetch] - type = "git" - url = "https://github.com/coreos/go-systemd" - rev = "95778dfbb74eb7e4dbaf43bf7d71809650ef8076" - sha256 = "1s3bg9p78wkixn2bqb2p23wbsqfg949ml6crw2b498s71mwh8rcf" - -["github.com/coreos/go-systemd/v22"] - sumVersion = "v22.3.2" - ["github.com/coreos/go-systemd/v22".fetch] - type = "git" - url = "https://github.com/coreos/go-systemd" - rev = "777e73a89cef78631ccaa97f53a9bae67e166186" - sha256 = "1ndi86b8va84ha93njqgafypz4di7yxfd5r5kf1r0s3y3ghcjajq" - -["github.com/coreos/pkg"] - sumVersion = "v0.0.0-20180928190104-399ea9e2e55f" - ["github.com/coreos/pkg".fetch] - type = "git" - url = "https://github.com/coreos/pkg" - rev = "399ea9e2e55f791b6e3d920860dbecb99c3692f0" - sha256 = "0nxbn0m7lr4dg0yrwnvlkfiyg3ndv8vdpssjx7b714nivpc6ar0y" - -["github.com/cosmos/cosmos-sdk"] - sumVersion = "v0.44.3-olympus" - vendorPath = "github.com/tharsis/cosmos-sdk" - ["github.com/cosmos/cosmos-sdk".fetch] - type = "git" - url = "https://github.com/tharsis/cosmos-sdk" - rev = "1aa23793b263c6bbd1fd132c5a58301b80cf0bcb" - sha256 = "0r795h6xf7ni7z3wvaq3wmqwrgfnkfbq4sz25j8s1gldv94yqnj0" - -["github.com/cosmos/go-bip39"] - sumVersion = "v1.0.0" - ["github.com/cosmos/go-bip39".fetch] - type = "git" - url = "https://github.com/cosmos/go-bip39" - rev = "3027fe585f89a39da9b7389bd4e3482e056f6d3f" - sha256 = "0q063bsalxffq41l3f6xlr50xa2985liw6y5niiwnjysdc5rlva2" - -["github.com/cosmos/iavl"] - sumVersion = "v0.17.2" - ["github.com/cosmos/iavl".fetch] - type = "git" - url = "https://github.com/cosmos/iavl" - rev = "72b6c23262c6f36f995a226d607dab73893488b9" - sha256 = "1fdj0nzspd27xhv6m8jrgpyyg9x5nkjclhv5bbkmp762r2vb66ys" - -["github.com/cosmos/ibc-go/v2"] - sumVersion = "v2.0.1" - ["github.com/cosmos/ibc-go/v2".fetch] - type = "git" - url = "https://github.com/cosmos/ibc-go" - rev = "637038c5b22a2eb23e984e554e2d2d95a22ca182" - sha256 = "1paxigb8qvsxfaz3la2i0cyfprxa07brgbmphr0bzi8kxb8dgmms" - -["github.com/cosmos/ledger-cosmos-go"] - sumVersion = "v0.11.1" - ["github.com/cosmos/ledger-cosmos-go".fetch] - type = "git" - url = "https://github.com/cosmos/ledger-cosmos-go" - rev = "c03f491cbf1740e5ec7919683019c2c84d9fbc10" - sha256 = "0c584nig16mz1i5w1pp741q1ymb1ln70kvxkv3l62rkdymbbwn6a" - -["github.com/cosmos/ledger-go"] - sumVersion = "v0.9.2" - ["github.com/cosmos/ledger-go".fetch] - type = "git" - url = "https://github.com/cosmos/ledger-go" - rev = "1c99b41f1877b58e3517ef93012cc76fe5cd335b" - sha256 = "10vnj13c8diq3bxvf2m46s8ifj4fj1iwsw5hg7i1h55h1v83x0ni" - -["github.com/cpuguy83/go-md2man"] - sumVersion = "v1.0.10" - ["github.com/cpuguy83/go-md2man".fetch] - type = "git" - url = "https://github.com/cpuguy83/go-md2man" - rev = "7762f7e404f8416dfa1d9bb6a8c192aa9acb4d19" - sha256 = "1bqkf2bvy1dns9zd24k81mh2p1zxsx2nhq5cj8dz2vgkv1xkh60i" - -["github.com/cpuguy83/go-md2man/v2"] - sumVersion = "v2.0.0" - ["github.com/cpuguy83/go-md2man/v2".fetch] - type = "git" - url = "https://github.com/cpuguy83/go-md2man" - rev = "f79a8a8ca69da163eee19ab442bedad7a35bba5a" - sha256 = "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv" - -["github.com/creack/pty"] - sumVersion = "v1.1.9" - ["github.com/creack/pty".fetch] - type = "git" - url = "https://github.com/creack/pty" - rev = "3a6a957789163cacdfe0e291617a1c8e80612c11" - sha256 = "1v52599qq76dwq742mffakzj6mxqqccv2szn3hjicjld56nmd2d3" - -["github.com/cyberdelia/templates"] - sumVersion = "v0.0.0-20141128023046-ca7fffd4298c" - ["github.com/cyberdelia/templates".fetch] - type = "git" - url = "https://github.com/cyberdelia/templates" - rev = "ca7fffd4298cba4fc31b3fc0ff2ae0bc9bac933d" - sha256 = "1miakwci9pz95p0jps4i3pyv5ws713ks1wwir5bzrl0yg8klrgw1" - -["github.com/cyphar/filepath-securejoin"] - sumVersion = "v0.2.2" - ["github.com/cyphar/filepath-securejoin".fetch] - type = "git" - url = "https://github.com/cyphar/filepath-securejoin" - rev = "a261ee33d7a517f054effbf451841abaafe3e0fd" - sha256 = "0id32zjb92wm569m29nfrzz5mw9z1glr3klayr6j134pp4h1sgq4" - -["github.com/danieljoos/wincred"] - sumVersion = "v1.0.2" - ["github.com/danieljoos/wincred".fetch] - type = "git" - url = "https://github.com/danieljoos/wincred" - rev = "b892d337201d1400370ebf4fa919941c9ea222ee" - sha256 = "1ym8mygjrf3rw1qka9irw76b2yisr2l5pq2w581s40yldnbfq4lc" - -["github.com/dave/jennifer"] - sumVersion = "v1.2.0" - ["github.com/dave/jennifer".fetch] - type = "git" - url = "https://github.com/dave/jennifer" - rev = "f915da8d6601a64feaa0a3086c4a6ace38996206" - sha256 = "0qpnzygsnvcyar10fjyqinsrmcs1b73a0srg0jys8bgyhmj9ryvf" - -["github.com/davecgh/go-spew"] - sumVersion = "v1.1.1" - ["github.com/davecgh/go-spew".fetch] - type = "git" - url = "https://github.com/davecgh/go-spew" - rev = "8991bc29aa16c548c550c7ff78260e27b9ab7c73" - sha256 = "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y" - -["github.com/deckarep/golang-set"] - sumVersion = "v1.7.1" - ["github.com/deckarep/golang-set".fetch] - type = "git" - url = "https://github.com/deckarep/golang-set" - rev = "cbaa98ba5575e67703b32b4b19f73c91f3c4159e" - sha256 = "0y64c0p6a7ww5jp6adm6fm97vsni86njw8wkwxfmciy466vhl0lf" - -["github.com/decred/dcrd/lru"] - sumVersion = "v1.0.0" - relPath = "lru" - ["github.com/decred/dcrd/lru".fetch] - type = "git" - url = "https://github.com/decred/dcrd" - rev = "5c3e0d6454001c8d14fcf06be94381d93991aaea" - sha256 = "0m2mxrkbnr4dfan9ljxq9dd5hhqmpx5n9pd4hnwn5mlj4zgv018a" - -["github.com/deepmap/oapi-codegen"] - sumVersion = "v1.8.2" - ["github.com/deepmap/oapi-codegen".fetch] - type = "git" - url = "https://github.com/deepmap/oapi-codegen" - rev = "5f43277fa067cdfee9bcdb9ad229362af52cefe9" - sha256 = "046azmbi27jw0zb56hf4rnbsnqfp48z4npp0zapnm9dccaw9277j" - -["github.com/desertbit/timer"] - sumVersion = "v0.0.0-20180107155436-c41aec40b27f" - ["github.com/desertbit/timer".fetch] - type = "git" - url = "https://github.com/desertbit/timer" - rev = "c41aec40b27f0eeb2b94300fffcd624c69b02990" - sha256 = "1jsy04ga79xbdfn0xqzs7q8gyh2sz9jpfqdsb210m6188yscxck9" - -["github.com/dgraph-io/badger/v2"] - sumVersion = "v2.2007.3" - ["github.com/dgraph-io/badger/v2".fetch] - type = "git" - url = "https://github.com/dgraph-io/badger" - rev = "166e07594bd30ef24518399095331147375f57e3" - sha256 = "0ng56plsk55krv7n03bjnnsmrf7r5npw4binr2p2p3ijyvi723g4" - -["github.com/dgraph-io/ristretto"] - sumVersion = "v0.1.0" - ["github.com/dgraph-io/ristretto".fetch] - type = "git" - url = "https://github.com/dgraph-io/ristretto" - rev = "1ff978f89ae61dfad7460f12355a5f3ee1e6af13" - sha256 = "0lj1dwfqmk0f83c5jc17xdf3c919b8kgljchjv0l33jvjgxascav" - -["github.com/dgrijalva/jwt-go"] - sumVersion = "v3.2.0+incompatible" - ["github.com/dgrijalva/jwt-go".fetch] - type = "git" - url = "https://github.com/dgrijalva/jwt-go" - rev = "06ea1031745cb8b3dab3f6a236daf2b0aa468b7e" - sha256 = "08m27vlms74pfy5z79w67f9lk9zkx6a9jd68k3c4msxy75ry36mp" - -["github.com/dgryski/go-bitstream"] - sumVersion = "v0.0.0-20180413035011-3522498ce2c8" - ["github.com/dgryski/go-bitstream".fetch] - type = "git" - url = "https://github.com/dgryski/go-bitstream" - rev = "3522498ce2c8ea06df73e55df58edfbfb33cfdd6" - sha256 = "1lr0qjdddxdiwfs530saglk4q5395i4n3w8h8k5j8nsjj8k3na7f" - -["github.com/dgryski/go-farm"] - sumVersion = "v0.0.0-20200201041132-a6ae2369ad13" - ["github.com/dgryski/go-farm".fetch] - type = "git" - url = "https://github.com/dgryski/go-farm" - rev = "a6ae2369ad13dc757768086f0cb902728c7e03e5" - sha256 = "1qbz4a4fv3853ix974x02q1129kc4xxf0c92ib5sdpsq04zjbqv8" - -["github.com/dgryski/go-sip13"] - sumVersion = "v0.0.0-20181026042036-e10d5fee7954" - ["github.com/dgryski/go-sip13".fetch] - type = "git" - url = "https://github.com/dgryski/go-sip13" - rev = "e10d5fee79544bd84105c9329adcc7b745fd588c" - sha256 = "15fyibfas209ljz3f7g07kdmfbl3hhyd9n5n7aq5n5p9m5mn41d6" - -["github.com/dlclark/regexp2"] - sumVersion = "v1.4.1-0.20201116162257-a2a8dda75c91" - ["github.com/dlclark/regexp2".fetch] - type = "git" - url = "https://github.com/dlclark/regexp2" - rev = "a2a8dda75c91d84f7daa4154f32385f65b101bf2" - sha256 = "04fv2yzh9jvlzjv9ns94m5kcmkrli6krwjrmvkh40divhxj4rlsl" - -["github.com/docker/docker"] - sumVersion = "v1.4.2-0.20180625184442-8e610b2b55bf" - ["github.com/docker/docker".fetch] - type = "git" - url = "https://github.com/docker/docker" - rev = "8e610b2b55bfd1bfa9436ab110d311f5e8a74dcb" - sha256 = "00d27aj6c2vi9q0djy9pqk3h8fqp066vffqckil43qq1c5b83c1j" - -["github.com/docker/go-connections"] - sumVersion = "v0.4.0" - ["github.com/docker/go-connections".fetch] - type = "git" - url = "https://github.com/docker/go-connections" - rev = "7395e3f8aa162843a74ed6d48e79627d9792ac55" - sha256 = "0mv6f6b5nljc17dmwmc28hc0y11pqglz7x0d2mjrwdmfxf64hwqq" - -["github.com/docker/go-units"] - sumVersion = "v0.4.0" - ["github.com/docker/go-units".fetch] - type = "git" - url = "https://github.com/docker/go-units" - rev = "519db1ee28dcc9fd2474ae59fca29a810482bfb1" - sha256 = "0k8gja8ql4pqg5rzmqvka42vjfs6rzablak87whcnqba6qxpimvz" - -["github.com/dop251/goja"] - sumVersion = "v0.0.0-20211011172007-d99e4b8cbf48" - ["github.com/dop251/goja".fetch] - type = "git" - url = "https://github.com/dop251/goja" - rev = "d99e4b8cbf48ec0fe9424da4baf7804a302ef33a" - sha256 = "13idkdhigbablrj0761f4ki3b8zai5zjqms67r5fwvczp7zbk23d" - -["github.com/dop251/goja_nodejs"] - sumVersion = "v0.0.0-20210225215109-d91c329300e7" - ["github.com/dop251/goja_nodejs".fetch] - type = "git" - url = "https://github.com/dop251/goja_nodejs" - rev = "d91c329300e7bcdd190492335c775cacd8f64db4" - sha256 = "1mh2ibv3s24x766xnhbc8r54xjrnxixlv127rq0l8cxpd2dnarkr" - -["github.com/dustin/go-humanize"] - sumVersion = "v1.0.0" - ["github.com/dustin/go-humanize".fetch] - type = "git" - url = "https://github.com/dustin/go-humanize" - rev = "9f541cc9db5d55bce703bd99987c9d5cb8eea45e" - sha256 = "1kqf1kavdyvjk7f8kx62pnm7fbypn9z1vbf8v2qdh3y7z7a0cbl3" - -["github.com/dvsekhvalnov/jose2go"] - sumVersion = "v0.0.0-20200901110807-248326c1351b" - ["github.com/dvsekhvalnov/jose2go".fetch] - type = "git" - url = "https://github.com/dvsekhvalnov/jose2go" - rev = "248326c1351b716b2820b01a49d53837bfd9ac59" - sha256 = "06zj4n96pa5lnx8pxjhn3vis01fjklhsdqbcbqdv9m4kc7qip27s" - -["github.com/dvyukov/go-fuzz"] - sumVersion = "v0.0.0-20200318091601-be3528f3a813" - ["github.com/dvyukov/go-fuzz".fetch] - type = "git" - url = "https://github.com/dvyukov/go-fuzz" - rev = "be3528f3a81351d8a438aed216130e1e7da39f7c" - sha256 = "1sxl62r8c13p4sm60c77mzcn6dlxbbk6c2nmic6j8z55dx4nlg1a" - -["github.com/eapache/go-resiliency"] - sumVersion = "v1.1.0" - ["github.com/eapache/go-resiliency".fetch] - type = "git" - url = "https://github.com/eapache/go-resiliency" - rev = "ea41b0fad31007accc7f806884dcdf3da98b79ce" - sha256 = "1zmgw3c4w5r6m2r340n4jc5l5ll3m3nbszqrmrgbqc2xixxyk2gx" - -["github.com/eapache/go-xerial-snappy"] - sumVersion = "v0.0.0-20180814174437-776d5712da21" - ["github.com/eapache/go-xerial-snappy".fetch] - type = "git" - url = "https://github.com/eapache/go-xerial-snappy" - rev = "776d5712da21bc4762676d614db1d8a64f4238b0" - sha256 = "0ncc41dv7xwb1znyzmzh7cvs6j5fzz0f1n8h1v3grl9ma6s1si9d" - -["github.com/eapache/queue"] - sumVersion = "v1.1.0" - ["github.com/eapache/queue".fetch] - type = "git" - url = "https://github.com/eapache/queue" - rev = "44cc805cf13205b55f69e14bcb69867d1ae92f98" - sha256 = "07dp54n94gn3gsvdcki56yqh7py7wqqigxbamhxwgbr05n61fqyg" - -["github.com/eclipse/paho.mqtt.golang"] - sumVersion = "v1.2.0" - ["github.com/eclipse/paho.mqtt.golang".fetch] - type = "git" - url = "https://github.com/eclipse/paho.mqtt.golang" - rev = "adca289fdcf8c883800aafa545bc263452290bae" - sha256 = "1f81ia8pkfz2084bla4kirrh7yrfg8dy11gsi84m75j25nf762zn" - -["github.com/edsrzf/mmap-go"] - sumVersion = "v1.0.0" - ["github.com/edsrzf/mmap-go".fetch] - type = "git" - url = "https://github.com/edsrzf/mmap-go" - rev = "188cc3b666ba704534fa4f96e9e61f21f1e1ba7c" - sha256 = "0ajmkk5cj6xmbngx3nhar7672i2vrkwpnbv1f26i5p4f5aydhl4k" - -["github.com/enigmampc/btcutil"] - sumVersion = "v1.0.3-0.20200723161021-e2fb6adb2a25" - ["github.com/enigmampc/btcutil".fetch] - type = "git" - url = "https://github.com/enigmampc/btcutil" - rev = "e2fb6adb2a25f868283c4f243c873ad6b4894974" - sha256 = "0r2gf20acxnrcrch57hvgg8qp8ic96w6bx0j080cfya04xib3dxv" - -["github.com/envoyproxy/go-control-plane"] - sumVersion = "v0.9.4" - ["github.com/envoyproxy/go-control-plane".fetch] - type = "git" - url = "https://github.com/envoyproxy/go-control-plane" - rev = "ba8e577f987f6676343cac84525b92ed1b2d86fe" - sha256 = "0m0crzx70lp7vz13v20wxb1fcfdnzp7h3mkh3bn6a8mbfz6w5asj" - -["github.com/envoyproxy/protoc-gen-validate"] - sumVersion = "v0.1.0" - ["github.com/envoyproxy/protoc-gen-validate".fetch] - type = "git" - url = "https://github.com/envoyproxy/protoc-gen-validate" - rev = "9eff07ddfcb4001aa1aab280648153f46e1a8ddc" - sha256 = "0kxd3wwh3xwqk0r684hsy281xq4y71cd11d4q2hspcjbnlbwh7cy" - -["github.com/ethereum/go-ethereum"] - sumVersion = "v1.10.11" - ["github.com/ethereum/go-ethereum".fetch] - type = "git" - url = "https://github.com/ethereum/go-ethereum" - rev = "7231b3efb8095d3dd18d7164c3fa84d7705759d3" - sha256 = "0p3h9szm8i0fw83a717h8jsv25i3vcgasixfjg0xvvfyn74aqnsp" - -["github.com/facebookgo/ensure"] - sumVersion = "v0.0.0-20160127193407-b4ab57deab51" - ["github.com/facebookgo/ensure".fetch] - type = "git" - url = "https://github.com/facebookgo/ensure" - rev = "b4ab57deab51ee655ae4bd85281f0715a068016d" - sha256 = "19icavc3sg0mdz8151q3vp2vn3ipq53mnb9h9n57w32amyyszl4d" - -["github.com/facebookgo/stack"] - sumVersion = "v0.0.0-20160209184415-751773369052" - ["github.com/facebookgo/stack".fetch] - type = "git" - url = "https://github.com/facebookgo/stack" - rev = "751773369052141c013c6e827a71e8f35c07879c" - sha256 = "07yr05mz7h007ldpij90zjflwgixp148sbyrdlh1fj5bikr4p8m3" - -["github.com/facebookgo/subset"] - sumVersion = "v0.0.0-20150612182917-8dac2c3c4870" - ["github.com/facebookgo/subset".fetch] - type = "git" - url = "https://github.com/facebookgo/subset" - rev = "8dac2c3c48703541e481feddf22975953d4ff842" - sha256 = "0kyc2m5wxjzj4fwspybgn1mgjzhbdfnadpwy9mrw1s05bh21rgai" - -["github.com/fatih/color"] - sumVersion = "v1.10.0" - ["github.com/fatih/color".fetch] - type = "git" - url = "https://github.com/fatih/color" - rev = "bc2269661d49c6c9d0e514eef49710556883f3fa" - sha256 = "1azg1r8ifnr1pk5lvqkpcssqb7s7hs0zym1fmg0k67p842bvm2n8" - -["github.com/felixge/httpsnoop"] - sumVersion = "v1.0.1" - ["github.com/felixge/httpsnoop".fetch] - type = "git" - url = "https://github.com/felixge/httpsnoop" - rev = "33ec42cfe005395fb4cc4b296781f65d7ffef2c3" - sha256 = "0ncd8lar5zxiwjhsp315s4hsl4bhnm271h49jhyxc66r5yffgmac" - -["github.com/fjl/memsize"] - sumVersion = "v0.0.0-20190710130421-bcb5799ab5e5" - ["github.com/fjl/memsize".fetch] - type = "git" - url = "https://github.com/fjl/memsize" - rev = "bcb5799ab5e5bd6a0fbd8ba513f95a50d9eac048" - sha256 = "0q1ixp3g77slfr3xqag74j42h35ilir1xl0qhxm1hiw2gj49jqfk" - -["github.com/fogleman/gg"] - sumVersion = "v1.2.1-0.20190220221249-0403632d5b90" - ["github.com/fogleman/gg".fetch] - type = "git" - url = "https://github.com/fogleman/gg" - rev = "0403632d5b905943a1c2a5b2763aaecd568467ec" - sha256 = "1nkldjghbqnzj2djfaxhiv35kk341xhcrj9m2dwq65v684iqkk8n" - -["github.com/fortytw2/leaktest"] - sumVersion = "v1.3.0" - ["github.com/fortytw2/leaktest".fetch] - type = "git" - url = "https://github.com/fortytw2/leaktest" - rev = "9a23578d06a26ec1b47bfc8965bf5e7011df8bd6" - sha256 = "0487zghyxqzk6zdbhd2j074pcc2l15l4sfg5clrjqwfbql7519wx" - -["github.com/franela/goblin"] - sumVersion = "v0.0.0-20200105215937-c9ffbefa60db" - ["github.com/franela/goblin".fetch] - type = "git" - url = "https://github.com/franela/goblin" - rev = "c9ffbefa60dbcc40777294734ec3664f35a8c838" - sha256 = "0qdhg6i4bcf6inmzq2dbdv0r0c7clw1vd3n2zs4896ig0aws6vff" - -["github.com/franela/goreq"] - sumVersion = "v0.0.0-20171204163338-bcd34c9993f8" - ["github.com/franela/goreq".fetch] - type = "git" - url = "https://github.com/franela/goreq" - rev = "bcd34c9993f899273c74baaa95e15386cd97b6e7" - sha256 = "055a20nc5f1blk2swiwpwqpxd3z495ms1qr6a7cbbss1w3a7a7sb" - -["github.com/frankban/quicktest"] - sumVersion = "v1.11.3" - ["github.com/frankban/quicktest".fetch] - type = "git" - url = "https://github.com/frankban/quicktest" - rev = "e7d1f0b53af1e9c9cf66924bc310190b1db8c339" - sha256 = "0d5njmwkfq2809vlimnlvy8ir6kln0c4cgdwr680fwsclpbr43qs" - -["github.com/fsnotify/fsnotify"] - sumVersion = "v1.5.1" - ["github.com/fsnotify/fsnotify".fetch] - type = "git" - url = "https://github.com/fsnotify/fsnotify" - rev = "466b39d216616549a37ee93c7c47775f6a010790" - sha256 = "0xpdprvab4zgn5igymc5468hk5s429cqyxml9xjsk0cn53rikj87" - -["github.com/gballet/go-libpcsclite"] - sumVersion = "v0.0.0-20190607065134-2772fd86a8ff" - ["github.com/gballet/go-libpcsclite".fetch] - type = "git" - url = "https://github.com/gballet/go-libpcsclite" - rev = "2772fd86a8ff4306d2749f610a386bfee9e0d727" - sha256 = "1j7389jcjdsb73c30cial688m3r2wypspn8zhy5mvm3c9xqnigin" - -["github.com/getkin/kin-openapi"] - sumVersion = "v0.61.0" - ["github.com/getkin/kin-openapi".fetch] - type = "git" - url = "https://github.com/getkin/kin-openapi" - rev = "cc9e37b212eab86de474d58c64f390b717b7bb69" - sha256 = "01h5qdzpnm9my14pw19q72zhfy5pinkd34zx1c7zz90cphwahiiv" - -["github.com/ghodss/yaml"] - sumVersion = "v1.0.0" - ["github.com/ghodss/yaml".fetch] - type = "git" - url = "https://github.com/ghodss/yaml" - rev = "0ca9ea5df5451ffdf184b4428c902747c2c11cd7" - sha256 = "0skwmimpy7hlh7pva2slpcplnm912rp3igs98xnqmn859kwa5v8g" - -["github.com/gin-contrib/sse"] - sumVersion = "v0.1.0" - ["github.com/gin-contrib/sse".fetch] - type = "git" - url = "https://github.com/gin-contrib/sse" - rev = "54d8467d122d380a14768b6b4e5cd7ca4755938f" - sha256 = "072nq91a65n5xvwslqjyvydfd0mfpnvb3vwjyfvmzm1ym96wr1nd" - -["github.com/gin-gonic/gin"] - sumVersion = "v1.6.3" - ["github.com/gin-gonic/gin".fetch] - type = "git" - url = "https://github.com/gin-gonic/gin" - rev = "6a8b8b6651a228590bbc42145483ff864f4f6e89" - sha256 = "18k0ydx88xh100xp1ff0zpjk2n233rv7qxijbsrrsgqrq9z83w3l" - -["github.com/glycerine/go-unsnap-stream"] - sumVersion = "v0.0.0-20180323001048-9f0cb55181dd" - ["github.com/glycerine/go-unsnap-stream".fetch] - type = "git" - url = "https://github.com/glycerine/go-unsnap-stream" - rev = "9f0cb55181dd3a0a4c168d3dbc72d4aca4853126" - sha256 = "1v10z30y9qc8dl34x0s8lr773g6raxilfdxbmzd1176pspzcmm9n" - -["github.com/glycerine/goconvey"] - sumVersion = "v0.0.0-20190410193231-58a59202ab31" - ["github.com/glycerine/goconvey".fetch] - type = "git" - url = "https://github.com/glycerine/goconvey" - rev = "58a59202ab311a28f6cf05b95753256576781273" - sha256 = "014cj82z42gaw863nrfmw39ff1z103n0aj5bs1fpx2iawgw5i6qh" - -["github.com/go-chi/chi/v5"] - sumVersion = "v5.0.0" - ["github.com/go-chi/chi/v5".fetch] - type = "git" - url = "https://github.com/go-chi/chi" - rev = "fe3708ee6c7bf30623c33ca1b8005182c392ff3f" - sha256 = "1aadsmrl8yi175ix59vsjizk416yjf0vp6zc7mqk3lz49cyfywgx" - -["github.com/go-gl/glfw"] - sumVersion = "v0.0.0-20190409004039-e6da0acd62b1" - ["github.com/go-gl/glfw".fetch] - type = "git" - url = "https://github.com/go-gl/glfw" - rev = "e6da0acd62b1b57ee2799d4d0a76a7d4514dc5bc" - sha256 = "0prvx5r7q8yrhqvnwibv4xz3dayjbq36yajzqvh0z4lqsh4hyhch" - -["github.com/go-gl/glfw/v3.3/glfw"] - sumVersion = "v0.0.0-20200222043503-6f7a984d4dc4" - relPath = "v3.3/glfw" - ["github.com/go-gl/glfw/v3.3/glfw".fetch] - type = "git" - url = "https://github.com/go-gl/glfw" - rev = "6f7a984d4dc470c3f197229ad1991ae9e211bba2" - sha256 = "1nyv7h08qf4dp8w9pmcnrc6vv9bkwj8fil6pz0mkbss5hf4i8xcq" - -["github.com/go-kit/kit"] - sumVersion = "v0.10.0" - ["github.com/go-kit/kit".fetch] - type = "git" - url = "https://github.com/go-kit/kit" - rev = "cc938d52e0cdf4c811ab203f428fcd06f9d9a148" - sha256 = "1cqlrjf90b5pg6sj4nh0qz5wplnsjmcdgrvs6wfdjy5p71f17msa" - -["github.com/go-kit/log"] - sumVersion = "v0.1.0" - ["github.com/go-kit/log".fetch] - type = "git" - url = "https://github.com/go-kit/log" - rev = "63376a29a92260f7b256eedf2fae39e28161114d" - sha256 = "1giv2pdswp02zk82rqfda2qpazqs4z5agnnfxxasghlsiry170r1" - -["github.com/go-logfmt/logfmt"] - sumVersion = "v0.5.0" - ["github.com/go-logfmt/logfmt".fetch] - type = "git" - url = "https://github.com/go-logfmt/logfmt" - rev = "3be5f6aae7db841d31dc5e1b3bb7b4cff19200b3" - sha256 = "0mcvgimnf6a15hhpmmv42kzbsn618f0zi2j3np49xkq1113d7yyj" - -["github.com/go-ole/go-ole"] - sumVersion = "v1.2.5" - ["github.com/go-ole/go-ole".fetch] - type = "git" - url = "https://github.com/go-ole/go-ole" - rev = "9f1c1d07a2d46919f666f69f6a324bacba498a6a" - sha256 = "1561h2srxgp4kx7l4q2dsvsh47h8k8ps3xnwjzg76yjvgfsqrlnw" - -["github.com/go-openapi/jsonpointer"] - sumVersion = "v0.19.5" - ["github.com/go-openapi/jsonpointer".fetch] - type = "git" - url = "https://github.com/go-openapi/jsonpointer" - rev = "2446e21cad36eee826e1c2380f0ff747074a2faa" - sha256 = "0azic9nfwywlz4qxvacyi4g668fbbrkcyv15bag02yfcsi8szg5c" - -["github.com/go-openapi/swag"] - sumVersion = "v0.19.5" - ["github.com/go-openapi/swag".fetch] - type = "git" - url = "https://github.com/go-openapi/swag" - rev = "c3d0f7896d589f3babb99eea24bbc7de98108e72" - sha256 = "1z34vqc5yz6rzvarrvlhkimxx33p74iaxb28l1mv716njvlsmjhg" - -["github.com/go-playground/assert/v2"] - sumVersion = "v2.0.1" - ["github.com/go-playground/assert/v2".fetch] - type = "git" - url = "https://github.com/go-playground/assert" - rev = "8eb943fbae8448cf47383208d8d0c396e26011a9" - sha256 = "1cl9c4s405zddzrj36hhs0a18g02zscdl46fyipp6k91mhvai8wz" - -["github.com/go-playground/locales"] - sumVersion = "v0.13.0" - ["github.com/go-playground/locales".fetch] - type = "git" - url = "https://github.com/go-playground/locales" - rev = "9f105231d3a5f6877a2bf8321dfa15ea6f844b1b" - sha256 = "0qydcpkvss3mf8mk3xzg6a34n8i69aydrigcl2apifrkx72jw7pf" - -["github.com/go-playground/universal-translator"] - sumVersion = "v0.17.0" - ["github.com/go-playground/universal-translator".fetch] - type = "git" - url = "https://github.com/go-playground/universal-translator" - rev = "f87b1403479a348651dbf5f07f5cc6e5fcf07008" - sha256 = "1zdiaisb32iv4x93cpbqrgx8ll7sxh4hcd2iibpswy4bwvjbjlz6" - -["github.com/go-playground/validator/v10"] - sumVersion = "v10.2.0" - ["github.com/go-playground/validator/v10".fetch] - type = "git" - url = "https://github.com/go-playground/validator" - rev = "c68441b7f4748b48ad9a0c9a79d346019730e207" - sha256 = "0pfbn06n7ll7slp36vvv94gf8ylm6mynp332r5q7j78nca1bjb5b" - -["github.com/go-sourcemap/sourcemap"] - sumVersion = "v2.1.3+incompatible" - ["github.com/go-sourcemap/sourcemap".fetch] - type = "git" - url = "https://github.com/go-sourcemap/sourcemap" - rev = "2588a51d69f1c3e296d57f75815ef40a20d54245" - sha256 = "08i1xysiqbqzip3xjlkwivg8cbcym83hxwyzkbmjy0z7y8y5fy3r" - -["github.com/go-sql-driver/mysql"] - sumVersion = "v1.4.1" - ["github.com/go-sql-driver/mysql".fetch] - type = "git" - url = "https://github.com/go-sql-driver/mysql" - rev = "72cd26f257d44c1114970e19afddcd812016007e" - sha256 = "1fvsvwc1v2i0gqn01mynvi1shp5xm0xaym6xng09fcbqb56lbjx1" - -["github.com/go-stack/stack"] - sumVersion = "v1.8.0" - ["github.com/go-stack/stack".fetch] - type = "git" - url = "https://github.com/go-stack/stack" - rev = "2fee6af1a9795aafbe0253a0cfbdf668e1fb8a9a" - sha256 = "0wk25751ryyvxclyp8jdk5c3ar0cmfr8lrjb66qbg4808x66b96v" - -["github.com/go-task/slim-sprig"] - sumVersion = "v0.0.0-20210107165309-348f09dbbbc0" - ["github.com/go-task/slim-sprig".fetch] - type = "git" - url = "https://github.com/go-task/slim-sprig" - rev = "348f09dbbbc0ff8b922a311da7a90cd014b69aa3" - sha256 = "16i1w4sm1h8wd132gdaq1z0asj9nc36zs8b3q9jy5kcbjzidl34f" - -["github.com/gobwas/httphead"] - sumVersion = "v0.0.0-20180130184737-2c6c146eadee" - ["github.com/gobwas/httphead".fetch] - type = "git" - url = "https://github.com/gobwas/httphead" - rev = "2c6c146eadee0b69f856f87e3e9f1d0cd6aad2f5" - sha256 = "0j7nlrf79cafl8ap69ri2c7v3psr2y133cr2wn735z7yn3dz3kss" - -["github.com/gobwas/pool"] - sumVersion = "v0.2.0" - ["github.com/gobwas/pool".fetch] - type = "git" - url = "https://github.com/gobwas/pool" - rev = "fa3125c39d7eca32e1387bb69b1b38dcb31b1e0b" - sha256 = "1avpa8c75j1y4hs7awazrjjy7w0pjfw80l424ddn5zyizvh7s67i" - -["github.com/gobwas/ws"] - sumVersion = "v1.0.2" - ["github.com/gobwas/ws".fetch] - type = "git" - url = "https://github.com/gobwas/ws" - rev = "05baaea2bbcfe8963301c62d9931c882d59595cd" - sha256 = "070mfcjbfb40bglc9aw9zjvd4jb1hp3l1s12ww6mjlwbjcg0mm9s" - -["github.com/godbus/dbus"] - sumVersion = "v0.0.0-20190726142602-4481cbc300e2" - ["github.com/godbus/dbus".fetch] - type = "git" - url = "https://github.com/godbus/dbus" - rev = "4481cbc300e2df0c0b3cecc18b6c16c6c0bb885d" - sha256 = "0h0cl1r136g0kxbw3i7ggb9mhavpi1yr7d7312iwhkxm93dxkphg" - -["github.com/godbus/dbus/v5"] - sumVersion = "v5.0.4" - ["github.com/godbus/dbus/v5".fetch] - type = "git" - url = "https://github.com/godbus/dbus" - rev = "c88335c0b1d28a30e7fc76d526a06154b85e5d97" - sha256 = "0znax8kskb5gmp5fj75w56bc9p7b22wrdswzlh4d04sprlc471yi" - -["github.com/gofrs/uuid"] - sumVersion = "v3.3.0+incompatible" - ["github.com/gofrs/uuid".fetch] - type = "git" - url = "https://github.com/gofrs/uuid" - rev = "abfe1881e60ef34074c1b8d8c63b42565c356ed6" - sha256 = "1smqivlj8j2g3y9scqrx1hafi01dn7iwlyzh8ach74k64xkhs1ar" - -["github.com/gogo/gateway"] - sumVersion = "v1.1.0" - ["github.com/gogo/gateway".fetch] - type = "git" - url = "https://github.com/gogo/gateway" - rev = "817b4cf527e834d7d563b7329355c45801d5e02d" - sha256 = "1jj7vr3sdk7yz8jl1kzv8473pkhd388f95byc8pdwrh6y7fh0xrq" - -["github.com/gogo/protobuf"] - sumVersion = "v1.3.3-alpha.regen.1" - vendorPath = "github.com/regen-network/protobuf" - ["github.com/gogo/protobuf".fetch] - type = "git" - url = "https://github.com/regen-network/protobuf" - rev = "8a70ddfdaf94e68497f7b26a6896ad75e03b6616" - sha256 = "0jmhiv9gq0a6brs9p8dk9phafs62yggyhlav07cqwakcq70ss6r2" - -["github.com/golang/freetype"] - sumVersion = "v0.0.0-20170609003504-e2365dfdc4a0" - ["github.com/golang/freetype".fetch] - type = "git" - url = "https://github.com/golang/freetype" - rev = "e2365dfdc4a05e4b8299a783240d4a7d5a65d4e4" - sha256 = "194w3djc6fv1rgcjqds085b9fq074panc5vw582bcb8dbfzsrqxc" - -["github.com/golang/geo"] - sumVersion = "v0.0.0-20190916061304-5b978397cfec" - ["github.com/golang/geo".fetch] - type = "git" - url = "https://github.com/golang/geo" - rev = "5b978397cfecc7280e598e9ac5854e9534b0918b" - sha256 = "1l09fl449css9bw045c7a35rp5jxgfpbisyn1rb9r4ign7956wi3" - -["github.com/golang/glog"] - sumVersion = "v0.0.0-20210429001901-424d2337a529" - ["github.com/golang/glog".fetch] - type = "git" - url = "https://github.com/golang/glog" - rev = "424d2337a5299a465c8a8228fc3ba4b1c28337a2" - sha256 = "1hnbln6h61ik9z92dspybmb0cxpddm1c4dzx5g64jr8cdvqcgpji" - -["github.com/golang/groupcache"] - sumVersion = "v0.0.0-20210331224755-41bb18bfe9da" - ["github.com/golang/groupcache".fetch] - type = "git" - url = "https://github.com/golang/groupcache" - rev = "41bb18bfe9da5321badc438f91158cd790a33aa3" - sha256 = "07amgr8ji4mnq91qbsw2jlcmw6hqiwdf4kzfdrj8c4b05w4knszc" - -["github.com/golang/mock"] - sumVersion = "v1.6.0" - ["github.com/golang/mock".fetch] - type = "git" - url = "https://github.com/golang/mock" - rev = "aba2ff9a6844d5e3289e8472d3217d5b3090f083" - sha256 = "1hara8j0x431njjhqxfrg1png7xa1gbrpwza6ya4mwlx76hppap4" - -["github.com/golang/protobuf"] - sumVersion = "v1.5.2" - ["github.com/golang/protobuf".fetch] - type = "git" - url = "https://github.com/golang/protobuf" - rev = "ae97035608a719c7a1c1c41bed0ae0744bdb0c6f" - sha256 = "1mh5fyim42dn821nsd3afnmgscrzzhn3h8rag635d2jnr23r1zhk" - -["github.com/golang/snappy"] - sumVersion = "v0.0.4" - ["github.com/golang/snappy".fetch] - type = "git" - url = "https://github.com/golang/snappy" - rev = "544b4180ac705b7605231d4a4550a1acb22a19fe" - sha256 = "004cw699yz3pdpawhjhpa0y94c4w479nw1rf39zj6h6027kpwv2j" - -["github.com/golangci/lint-1"] - sumVersion = "v0.0.0-20181222135242-d2cdd8c08219" - ["github.com/golangci/lint-1".fetch] - type = "git" - url = "https://github.com/golangci/lint-1" - rev = "d2cdd8c0821928c61cb0903441f8b35457a98a61" - sha256 = "0viib12a61338411ng4nnd4na4fscsknghk397jdfn00sigyy4ls" - -["github.com/google/btree"] - sumVersion = "v1.0.1" - ["github.com/google/btree".fetch] - type = "git" - url = "https://github.com/google/btree" - rev = "479b5e81b0a93ec038d201b0b33d17db599531d3" - sha256 = "0fv5577bmpf2gkzw8z271q8mn3x6fqyzqjrbzm580bqld0a1xwnl" - -["github.com/google/flatbuffers"] - sumVersion = "v1.11.0" - ["github.com/google/flatbuffers".fetch] - type = "git" - url = "https://github.com/google/flatbuffers" - rev = "9e7e8cbe9f675123dd41b7c62868acad39188cae" - sha256 = "1gl8pnykzifh7pnnvl80f5prmj5ga60dp44inpv9az2k9zaqx3qr" - -["github.com/google/go-cmp"] - sumVersion = "v0.5.6" - ["github.com/google/go-cmp".fetch] - type = "git" - url = "https://github.com/google/go-cmp" - rev = "d103655696d8ae43c4125ee61454dbf03d8e8324" - sha256 = "0lrb0pacv5iy3m6fn1qb3nv7zwimfhpzqq8f6hwpwx88cx3g6p1s" - -["github.com/google/gofuzz"] - sumVersion = "v1.1.1-0.20200604201612-c04b05f3adfa" - ["github.com/google/gofuzz".fetch] - type = "git" - url = "https://github.com/google/gofuzz" - rev = "c04b05f3adfa7f64e47bf054350f2336aea32e9d" - sha256 = "0i75fm6pg54zvrgbvjkg46cr03pypqm4w0wv0a349f4k7ff8qv9r" - -["github.com/google/martian"] - sumVersion = "v2.1.0+incompatible" - ["github.com/google/martian".fetch] - type = "git" - url = "https://github.com/google/martian" - rev = "195b986b4b6d4c513582cf4d2b8c4fd7e2494f7e" - sha256 = "197hil6vrjk50b9wvwyzf61csid83whsjj6ik8mc9r2lryxlyyrp" - -["github.com/google/martian/v3"] - sumVersion = "v3.2.1" - ["github.com/google/martian/v3".fetch] - type = "git" - url = "https://github.com/google/martian" - rev = "7e75073889cd2324f33b959c4fb4545440da046c" - sha256 = "0ylsicpiaprq6yvgbl4qiclvj4xsnsmjsjmyi21rqgxhnvyjbfyf" - -["github.com/google/orderedcode"] - sumVersion = "v0.0.1" - ["github.com/google/orderedcode".fetch] - type = "git" - url = "https://github.com/google/orderedcode" - rev = "9a3d15e0d5340bb1ba5db4071afd931e18b6e013" - sha256 = "0sdqfjji2skc1f7fbv9krbrb0cgfz43ksrld333hllgdidi33c9a" - -["github.com/google/pprof"] - sumVersion = "v0.0.0-20210720184732-4bb14d4b1be1" - ["github.com/google/pprof".fetch] - type = "git" - url = "https://github.com/google/pprof" - rev = "4bb14d4b1be14417e47d0bbaf2bd4e188eda647f" - sha256 = "15lgdlblmw0f0cj0k7qn8bbk15k5b61n4r3vm2gaac2zribxk47b" - -["github.com/google/renameio"] - sumVersion = "v0.1.0" - ["github.com/google/renameio".fetch] - type = "git" - url = "https://github.com/google/renameio" - rev = "f0e32980c006571efd537032e5f9cd8c1a92819e" - sha256 = "1ki2x5a9nrj17sn092d6n4zr29lfg5ydv4xz5cp58z6cw8ip43jx" - -["github.com/google/uuid"] - sumVersion = "v1.3.0" - ["github.com/google/uuid".fetch] - type = "git" - url = "https://github.com/google/uuid" - rev = "44b5fee7c49cf3bcdf723f106b36d56ef13ccc88" - sha256 = "0imkw52m7fzrwsdj2rfrk3zbplqfbwncyv6hv89xw0vdw3jpk122" - -["github.com/googleapis/gax-go/v2"] - sumVersion = "v2.1.0" - relPath = "v2" - ["github.com/googleapis/gax-go/v2".fetch] - type = "git" - url = "https://github.com/googleapis/gax-go" - rev = "79931379926d00ab27b462bc37278731fdcc6272" - sha256 = "08kiiislmcs9dzwy1fs7yxp4l7cfs3qgrlxh04p8vmbvjxrkzkgg" - -["github.com/gopherjs/gopherjs"] - sumVersion = "v0.0.0-20181017120253-0766667cb4d1" - ["github.com/gopherjs/gopherjs".fetch] - type = "git" - url = "https://github.com/gopherjs/gopherjs" - rev = "0766667cb4d1cfb8d5fde1fe210ae41ead3cf589" - sha256 = "13pfc9sxiwjky2lm1xb3i3lcisn8p6mgjk2d927l7r92ysph8dmw" - -["github.com/gordonklaus/ineffassign"] - sumVersion = "v0.0.0-20200309095847-7953dde2c7bf" - ["github.com/gordonklaus/ineffassign".fetch] - type = "git" - url = "https://github.com/gordonklaus/ineffassign" - rev = "7953dde2c7bf4ce700d9f14c2e41c0966763760c" - sha256 = "088r2jcxgfhabg7mcgyr42yvnd1iab5kncr0cc898p9cf7fyd95z" - -["github.com/gorilla/context"] - sumVersion = "v1.1.1" - ["github.com/gorilla/context".fetch] - type = "git" - url = "https://github.com/gorilla/context" - rev = "08b5f424b9271eedf6f9f0ce86cb9396ed337a42" - sha256 = "03p4hn87vcmfih0p9w663qbx9lpsf7i7j3lc7yl7n84la3yz63m4" - -["github.com/gorilla/handlers"] - sumVersion = "v1.5.1" - ["github.com/gorilla/handlers".fetch] - type = "git" - url = "https://github.com/gorilla/handlers" - rev = "d453effd20e6817a8acfd9d278dadd21371da0ba" - sha256 = "15gycdz9lkjnsvvichsbdf25vf6pi1sfn41khhz53iqf300l0w0s" - -["github.com/gorilla/mux"] - sumVersion = "v1.8.0" - ["github.com/gorilla/mux".fetch] - type = "git" - url = "https://github.com/gorilla/mux" - rev = "98cb6bf42e086f6af920b965c38cacc07402d51b" - sha256 = "18f0q9qxgq1yh4ji07mqhiydfcwvi56z9d775v7dc7yckj33kpdk" - -["github.com/gorilla/websocket"] - sumVersion = "v1.4.2" - ["github.com/gorilla/websocket".fetch] - type = "git" - url = "https://github.com/gorilla/websocket" - rev = "b65e62901fc1c0d968042419e74789f6af455eb9" - sha256 = "0mkm9w6kjkrlzab5wh8p4qxkc0icqawjbvr01d2nk6ykylrln40s" - -["github.com/gotestyourself/gotestyourself"] - sumVersion = "v2.2.0+incompatible" - ["github.com/gotestyourself/gotestyourself".fetch] - type = "git" - url = "https://github.com/gotestyourself/gotestyourself" - rev = "7c797b5133e5460410dbb22ba779bf35e6975dea" - sha256 = "0yif3gdyckmf8i54jq0xn00kflla5rhib9sarw66ngnbl7bn9kyl" - -["github.com/graph-gophers/graphql-go"] - sumVersion = "v0.0.0-20201113091052-beb923fada29" - ["github.com/graph-gophers/graphql-go".fetch] - type = "git" - url = "https://github.com/graph-gophers/graphql-go" - rev = "beb923fada293249384c7a9fa0c5078ea92466f3" - sha256 = "19l2xzrdhw7lc5h8kq56k356qnmld8cfcxz575mmdblrca76pnwx" - -["github.com/grpc-ecosystem/go-grpc-middleware"] - sumVersion = "v1.3.0" - ["github.com/grpc-ecosystem/go-grpc-middleware".fetch] - type = "git" - url = "https://github.com/grpc-ecosystem/go-grpc-middleware" - rev = "df0f91b29bbbdfc3a686a7a8edbe2b9de2072fdd" - sha256 = "1c9chw2nwj46ayx6cbq1sq21gmfmm3fx1gg579hn7srwywq0xsw0" - -["github.com/grpc-ecosystem/go-grpc-prometheus"] - sumVersion = "v1.2.0" - ["github.com/grpc-ecosystem/go-grpc-prometheus".fetch] - type = "git" - url = "https://github.com/grpc-ecosystem/go-grpc-prometheus" - rev = "c225b8c3b01faf2899099b768856a9e916e5087b" - sha256 = "1lzk54h7np32b3acidg1ggbn8ppbnns0m71gcg9d1qkkdh8zrijl" - -["github.com/grpc-ecosystem/grpc-gateway"] - sumVersion = "v1.16.0" - ["github.com/grpc-ecosystem/grpc-gateway".fetch] - type = "git" - url = "https://github.com/grpc-ecosystem/grpc-gateway" - rev = "094a6fe78b3ca888297d090185cdf30f0e42e157" - sha256 = "0dzq1qbgzz2c6vnh8anx0j3py34sd72p35x6s2wrl001q68am5cc" - -["github.com/gsterjov/go-libsecret"] - sumVersion = "v0.0.0-20161001094733-a6f4afe4910c" - ["github.com/gsterjov/go-libsecret".fetch] - type = "git" - url = "https://github.com/gsterjov/go-libsecret" - rev = "a6f4afe4910cad8688db3e0e9b9ac92ad22d54e1" - sha256 = "09zaiadnll83vs22ib89agg7anj0blw5fywvmckxllsgif6ak6v7" - -["github.com/gtank/merlin"] - sumVersion = "v0.1.1" - ["github.com/gtank/merlin".fetch] - type = "git" - url = "https://github.com/gtank/merlin" - rev = "8318aed1a79f2b4c16cf2d7c2f09d991ec0731d1" - sha256 = "1gcj26hiyb87cjvqrdyr4q201c1rknpbahnsvcnz08agaw6gvwxm" - -["github.com/gtank/ristretto255"] - sumVersion = "v0.1.2" - ["github.com/gtank/ristretto255".fetch] - type = "git" - url = "https://github.com/gtank/ristretto255" - rev = "f33454717c935f5c93978e82b7bd1e848768bb91" - sha256 = "0kn4r28zbxf4vqr2if455wqzak38l27wqrwbzpxygrvczm61a2kw" - -["github.com/hashicorp/consul/api"] - sumVersion = "v1.10.1" - relPath = "api" - ["github.com/hashicorp/consul/api".fetch] - type = "git" - url = "https://github.com/hashicorp/consul" - rev = "db839f18ba4796df77601bfe9873756ed340525d" - sha256 = "1sak084ilb14ppbcqr4x2s3lmg782ag6c6yhknnml4f7hpp0x15g" - -["github.com/hashicorp/consul/sdk"] - sumVersion = "v0.8.0" - relPath = "sdk" - ["github.com/hashicorp/consul/sdk".fetch] - type = "git" - url = "https://github.com/hashicorp/consul" - rev = "402636ff2db998edef392ac6d59210d2170b3ebf" - sha256 = "0vhbdkzqbs3nfg8dnkfiqjmhxc8cf81mnmy9003zqmlv9i1vfid9" - -["github.com/hashicorp/errwrap"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/errwrap".fetch] - type = "git" - url = "https://github.com/hashicorp/errwrap" - rev = "8a6fb523712970c966eefc6b39ed2c5e74880354" - sha256 = "0slfb6w3b61xz04r32bi0a1bygc82rjzhqkxj2si2074wynqnr1c" - -["github.com/hashicorp/go-bexpr"] - sumVersion = "v0.1.10" - ["github.com/hashicorp/go-bexpr".fetch] - type = "git" - url = "https://github.com/hashicorp/go-bexpr" - rev = "b515551c2135509e07d5b3869bb2f78d8f3921e1" - sha256 = "14id00c98kphnm61l20q46ffvh0k980wdnmrlx8x72hs9m2cblag" - -["github.com/hashicorp/go-cleanhttp"] - sumVersion = "v0.5.1" - ["github.com/hashicorp/go-cleanhttp".fetch] - type = "git" - url = "https://github.com/hashicorp/go-cleanhttp" - rev = "eda1e5db218aad1db63ca4642c8906b26bcf2744" - sha256 = "07kx3fhryqmaw3czacmm11qwx63js2q8cfq967vphk7xg9q377kk" - -["github.com/hashicorp/go-hclog"] - sumVersion = "v0.12.0" - ["github.com/hashicorp/go-hclog".fetch] - type = "git" - url = "https://github.com/hashicorp/go-hclog" - rev = "15c4a3c7a4dccc6eba7615c001f01c6da0e590b7" - sha256 = "0d2ah4w2ic9d1yj8sp0n9vrpfjlwb1kap4046rkrvwickzw37q8y" - -["github.com/hashicorp/go-immutable-radix"] - sumVersion = "v1.3.0" - ["github.com/hashicorp/go-immutable-radix".fetch] - type = "git" - url = "https://github.com/hashicorp/go-immutable-radix" - rev = "57230d80bd59689cded197c5065835b39d890dd0" - sha256 = "0wnnh4q4398ib3h0440dq82x8y89hy3214qdzc2jbbxg95cic0cr" - -["github.com/hashicorp/go-msgpack"] - sumVersion = "v0.5.3" - ["github.com/hashicorp/go-msgpack".fetch] - type = "git" - url = "https://github.com/hashicorp/go-msgpack" - rev = "be3a5be7ee2202386d02936a19ae4fbde1c77800" - sha256 = "00jv0ajqd58pkb2yyhlrjp0rv1mvb1ijx3yqjyikcmzvk9jb4h5m" - -["github.com/hashicorp/go-multierror"] - sumVersion = "v1.1.0" - ["github.com/hashicorp/go-multierror".fetch] - type = "git" - url = "https://github.com/hashicorp/go-multierror" - rev = "2004d9dba6b07a5b8d133209244f376680f9d472" - sha256 = "0pmjpzpra7lqgikxzwlcp5mh01b46j2vhyxkixz0v86fr9kf0k3k" - -["github.com/hashicorp/go-retryablehttp"] - sumVersion = "v0.5.3" - ["github.com/hashicorp/go-retryablehttp".fetch] - type = "git" - url = "https://github.com/hashicorp/go-retryablehttp" - rev = "357460732517ec3b57c05c51443296bdd6df1874" - sha256 = "008mimxs8a970rdhvgmc5v1wk0gmpcl96mrkwz7wq6ik6fhg1sjl" - -["github.com/hashicorp/go-rootcerts"] - sumVersion = "v1.0.2" - ["github.com/hashicorp/go-rootcerts".fetch] - type = "git" - url = "https://github.com/hashicorp/go-rootcerts" - rev = "98fadc2a5ba2ad2a534a179b352ecdfd1f4259aa" - sha256 = "06z1bxcnr0rma02b6r52m6y0q7niikqjs090vm1i8xi3scyaw1qa" - -["github.com/hashicorp/go-sockaddr"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-sockaddr".fetch] - type = "git" - url = "https://github.com/hashicorp/go-sockaddr" - rev = "a6a0d2df398f7e0e9f6e43f589c8b51cec0eb6b0" - sha256 = "1yn1xq8ysn0lszmkygz3a9lgpswbz1p91jv7q8l20s4749a22xgi" - -["github.com/hashicorp/go-syslog"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-syslog".fetch] - type = "git" - url = "https://github.com/hashicorp/go-syslog" - rev = "8d1874e3e8d1862b74e0536851e218c4571066a5" - sha256 = "09vccqggz212cg0jir6vv708d6mx0f9w5bxrcdah3h6chgmal6v1" - -["github.com/hashicorp/go-uuid"] - sumVersion = "v1.0.1" - ["github.com/hashicorp/go-uuid".fetch] - type = "git" - url = "https://github.com/hashicorp/go-uuid" - rev = "4f571afc59f3043a65f8fe6bf46d887b10a01d43" - sha256 = "0jvb88m0rq41bwgirsadgw7mnayl27av3gd2vqa3xvxp3fy0hp5k" - -["github.com/hashicorp/go-version"] - sumVersion = "v1.2.0" - ["github.com/hashicorp/go-version".fetch] - type = "git" - url = "https://github.com/hashicorp/go-version" - rev = "ac23dc3fea5d1a983c43f6a0f6e2c13f0195d8bd" - sha256 = "1bwi6y6111xq8ww8kjq0w1cmz15l1h9hb2id6596l8l0ag1vjj1z" - -["github.com/hashicorp/go.net"] - sumVersion = "v0.0.1" - ["github.com/hashicorp/go.net".fetch] - type = "git" - url = "https://github.com/hashicorp/go.net" - rev = "afc3cb3a421746fc66dd55b09a270c750cf536ce" - sha256 = "06arwi95xp5rxyz7rndvhc3wlwg0jn9a5z6djf3yyg5h9zfab9i4" - -["github.com/hashicorp/golang-lru"] - sumVersion = "v0.5.5-0.20210104140557-80c98217689d" - ["github.com/hashicorp/golang-lru".fetch] - type = "git" - url = "https://github.com/hashicorp/golang-lru" - rev = "80c98217689d6df152309d574ccc682b21dc802c" - sha256 = "0rvnxv3vphzmh59p6ddir11rzp7lrn6rizhmyx2rm9vvqhnav6y3" - -["github.com/hashicorp/hcl"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/hcl".fetch] - type = "git" - url = "https://github.com/hashicorp/hcl" - rev = "8cb6e5b959231cc1119e43259c4a608f9c51a241" - sha256 = "0q6ml0qqs0yil76mpn4mdx4lp94id8vbv575qm60jzl1ijcl5i66" - -["github.com/hashicorp/logutils"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/logutils".fetch] - type = "git" - url = "https://github.com/hashicorp/logutils" - rev = "a335183dfd075f638afcc820c90591ca3c97eba6" - sha256 = "076wf4sh5p3f953ndqk1cc0x7jhmlqrxak9953rz79rcdw77rjvv" - -["github.com/hashicorp/mdns"] - sumVersion = "v1.0.1" - ["github.com/hashicorp/mdns".fetch] - type = "git" - url = "https://github.com/hashicorp/mdns" - rev = "06dd1a31b32c42d4d6c2cf8dbce70597d1118f54" - sha256 = "185zpyj1jf1jm7hihg73gqnspr0a359aqwv11v4a6mwd5bkdh19j" - -["github.com/hashicorp/memberlist"] - sumVersion = "v0.2.2" - ["github.com/hashicorp/memberlist".fetch] - type = "git" - url = "https://github.com/hashicorp/memberlist" - rev = "8da026e14bc868a316c57c34aa7fc151e40be98b" - sha256 = "0fndid9saypx9p9lxyhxw0w26gr80kjfpadc8w7w6bv5pzjjlapx" - -["github.com/hashicorp/serf"] - sumVersion = "v0.9.5" - ["github.com/hashicorp/serf".fetch] - type = "git" - url = "https://github.com/hashicorp/serf" - rev = "7faa1b06262f70780c3c35ac25a4c96d754f06f3" - sha256 = "0f1rsmvp96dpsv69sbn7wkiw0r4r98nrpr2ln50zyzjzy1pmbrrx" - -["github.com/hdevalence/ed25519consensus"] - sumVersion = "v0.0.0-20210204194344-59a8610d2b87" - ["github.com/hdevalence/ed25519consensus".fetch] - type = "git" - url = "https://github.com/hdevalence/ed25519consensus" - rev = "59a8610d2b877a977e021f711e382bc0e757bf48" - sha256 = "0nw0i884mbya2sdijrhlfnx3ymhdl3jcxk36g6mqk1d91p5b40s2" - -["github.com/holiman/bloomfilter/v2"] - sumVersion = "v2.0.3" - relPath = "v2" - ["github.com/holiman/bloomfilter/v2".fetch] - type = "git" - url = "https://github.com/holiman/bloomfilter" - rev = "cb834897ed3b94c6a6fb37ec57bc7cdd651c6c32" - sha256 = "16dlc7q0w99nsqjh1ibv54rmmdl2kisbh5z57j963zlwbg43byjz" - -["github.com/holiman/uint256"] - sumVersion = "v1.2.0" - ["github.com/holiman/uint256".fetch] - type = "git" - url = "https://github.com/holiman/uint256" - rev = "46b8ad94199afbcc12f2ca653481891165d829d5" - sha256 = "0gi0i5zv5czydnvk5fa3p7a92ygfdi0x8sbaynn9i1ivajivw8g4" - -["github.com/hpcloud/tail"] - sumVersion = "v1.0.0" - ["github.com/hpcloud/tail".fetch] - type = "git" - url = "https://github.com/hpcloud/tail" - rev = "a30252cb686a21eb2d0b98132633053ec2f7f1e5" - sha256 = "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0" - -["github.com/hudl/fargo"] - sumVersion = "v1.3.0" - ["github.com/hudl/fargo".fetch] - type = "git" - url = "https://github.com/hudl/fargo" - rev = "fce5cf495554be9ef0766f6f5459e2874fb08c89" - sha256 = "1f7pwj793p51nq03jiz834g0qvg502h9asry6nx4pdc10wzx2948" - -["github.com/huin/goupnp"] - sumVersion = "v1.0.2" - ["github.com/huin/goupnp".fetch] - type = "git" - url = "https://github.com/huin/goupnp" - rev = "5a0d4bd7ee6bee8e26f24664c8e0d0c8ec3b0a7e" - sha256 = "1cv561wlzlzwxwpwirmyck33bhfmgpgv4wfq65wv8wkk6lgvqz0m" - -["github.com/huin/goutil"] - sumVersion = "v0.0.0-20170803182201-1ca381bf3150" - ["github.com/huin/goutil".fetch] - type = "git" - url = "https://github.com/huin/goutil" - rev = "1ca381bf315033e89af3286fdec0109ce8d86126" - sha256 = "0alhyacsfqic2wxyqn4gvk9wzjl4pkmy8rhvqjk84xsghgx5xf12" - -["github.com/ianlancetaylor/demangle"] - sumVersion = "v0.0.0-20200824232613-28f6c0f3b639" - ["github.com/ianlancetaylor/demangle".fetch] - type = "git" - url = "https://github.com/ianlancetaylor/demangle" - rev = "28f6c0f3b63983aaa99575ca3b693afff7996387" - sha256 = "0rsq3622gd40f1x1l7caidsxrmzg1993ich2higwd94fqbxs1r83" - -["github.com/improbable-eng/grpc-web"] - sumVersion = "v0.15.0" - ["github.com/improbable-eng/grpc-web".fetch] - type = "git" - url = "https://github.com/improbable-eng/grpc-web" - rev = "c1971f71a28950d212b7ddc8df07b5563723031d" - sha256 = "1ng2n08z741487kjwkafj6kw63xpngqaviiyfmndfmql475awsm1" - -["github.com/inconshreveable/mousetrap"] - sumVersion = "v1.0.0" - ["github.com/inconshreveable/mousetrap".fetch] - type = "git" - url = "https://github.com/inconshreveable/mousetrap" - rev = "76626ae9c91c4f2a10f34cad8ce83ea42c93bb75" - sha256 = "1mn0kg48xkd74brf48qf5hzp0bc6g8cf5a77w895rl3qnlpfw152" - -["github.com/influxdata/flux"] - sumVersion = "v0.65.1" - ["github.com/influxdata/flux".fetch] - type = "git" - url = "https://github.com/influxdata/flux" - rev = "79f011fc00e260b588a150c4d99958c706621620" - sha256 = "12fj9cn6gia57xc0g56hsn6pqg7r6x5h0c1730rga6a87czzw4s0" - -["github.com/influxdata/influxdb"] - sumVersion = "v1.8.3" - ["github.com/influxdata/influxdb".fetch] - type = "git" - url = "https://github.com/influxdata/influxdb" - rev = "563e6c3d1a7a2790763c6289501095dbec19244e" - sha256 = "1siv31gp7ypjphxjfv91sxzpz2rxk1nn2aj17pgk0cz7c8m59ic7" - -["github.com/influxdata/influxdb-client-go/v2"] - sumVersion = "v2.4.0" - ["github.com/influxdata/influxdb-client-go/v2".fetch] - type = "git" - url = "https://github.com/influxdata/influxdb-client-go" - rev = "66a8c329808fb7f697c70a83b98c99a827e93648" - sha256 = "19w8s6370lvlvl431wi9bnyq72wghzng4ld3yvw5y7pb29msibky" - -["github.com/influxdata/influxdb1-client"] - sumVersion = "v0.0.0-20191209144304-8bf82d3c094d" - ["github.com/influxdata/influxdb1-client".fetch] - type = "git" - url = "https://github.com/influxdata/influxdb1-client" - rev = "8bf82d3c094dc06be9da8e5bf9d3589b6ea032ae" - sha256 = "0cjli7prxfxayx2grianbla5jr0dq28sazk8phbnh61ac5zaya4s" - -["github.com/influxdata/influxql"] - sumVersion = "v1.1.1-0.20200828144457-65d3ef77d385" - ["github.com/influxdata/influxql".fetch] - type = "git" - url = "https://github.com/influxdata/influxql" - rev = "65d3ef77d385b8be40abe6591f50d2321ef14d13" - sha256 = "1p7nmx31yp3cn2njwqpj1hqqlhalpyj9x91mpllvprrislzwf06v" - -["github.com/influxdata/line-protocol"] - sumVersion = "v0.0.0-20210311194329-9aa0e372d097" - ["github.com/influxdata/line-protocol".fetch] - type = "git" - url = "https://github.com/influxdata/line-protocol" - rev = "9aa0e372d097c9632ad8b3b9f76ca9cf70c4c14a" - sha256 = "1w65mr95sfygz64b6gvbbmhgwpkacdic6213kn3ac90xk37kmsy8" - -["github.com/influxdata/promql/v2"] - sumVersion = "v2.12.0" - ["github.com/influxdata/promql/v2".fetch] - type = "git" - url = "https://github.com/influxdata/promql" - rev = "f6d0601df64bfbdeb85291c672cec96844027680" - sha256 = "0hpq5wkg8vsj8hfj057hcpbakn7rnx6d9mlc80v0nbr8qblxdhgp" - -["github.com/influxdata/roaring"] - sumVersion = "v0.4.13-0.20180809181101-fc520f41fab6" - ["github.com/influxdata/roaring".fetch] - type = "git" - url = "https://github.com/influxdata/roaring" - rev = "fc520f41fab6dcece280e8d4853d87a09a67f9e0" - sha256 = "0jr9r5q4s5bz4kbqndrlm5aikls4kqbl955qbsh6bpbmxdsamcsr" - -["github.com/influxdata/tdigest"] - sumVersion = "v0.0.0-20181121200506-bf2b5ad3c0a9" - ["github.com/influxdata/tdigest".fetch] - type = "git" - url = "https://github.com/influxdata/tdigest" - rev = "bf2b5ad3c0a925c44a0d2842c5d8182113cd248e" - sha256 = "0cf0hcm4g052qzq4n67vxl5qh7lvp13x23hndzwmazxzdaar8gh1" - -["github.com/influxdata/usage-client"] - sumVersion = "v0.0.0-20160829180054-6d3895376368" - ["github.com/influxdata/usage-client".fetch] - type = "git" - url = "https://github.com/influxdata/usage-client" - rev = "6d3895376368aa52a3a81d2a16e90f0f52371967" - sha256 = "0a5adnid42f9vpckgcpkj7v60fh147j7zlg1rhxcpq5vkw698ifl" - -["github.com/jackpal/go-nat-pmp"] - sumVersion = "v1.0.2-0.20160603034137-1fa385a6f458" - ["github.com/jackpal/go-nat-pmp".fetch] - type = "git" - url = "https://github.com/jackpal/go-nat-pmp" - rev = "1fa385a6f45828c83361136b45b1a21a12139493" - sha256 = "1n5h3qrd613cfw95vyqpy9vh3xv0zgbk3j5q8zad25q10wvp6ymn" - -["github.com/jedisct1/go-minisign"] - sumVersion = "v0.0.0-20190909160543-45766022959e" - ["github.com/jedisct1/go-minisign".fetch] - type = "git" - url = "https://github.com/jedisct1/go-minisign" - rev = "45766022959ee057eee31300cdc5f45a8c51ea7f" - sha256 = "02rc52v29wyzias9aw4a7kxsfspf27an3kf0pb9pn4kp0br5dn6v" - -["github.com/jessevdk/go-flags"] - sumVersion = "v1.4.0" - ["github.com/jessevdk/go-flags".fetch] - type = "git" - url = "https://github.com/jessevdk/go-flags" - rev = "c6ca198ec95c841fdb89fc0de7496fed11ab854e" - sha256 = "0algnnigph27spgn655zm4723yfjxjjvlf4k14z9drj3682df25a" - -["github.com/jhump/protoreflect"] - sumVersion = "v1.9.0" - ["github.com/jhump/protoreflect".fetch] - type = "git" - url = "https://github.com/jhump/protoreflect" - rev = "d3608faa83b85e64a0e2880cba9be9c951460727" - sha256 = "0pbyvisfjmhx1g5l6m0dqv730hid1jr8h8746yx3d567ms2hgj8f" - -["github.com/jmespath/go-jmespath"] - sumVersion = "v0.4.0" - ["github.com/jmespath/go-jmespath".fetch] - type = "git" - url = "https://github.com/jmespath/go-jmespath" - rev = "3d4fd11601ddca248480565884e34e393313cd62" - sha256 = "18zyr9nlywmwp3wpzcjxrgq9s9d2mmc6zg6xhsna00m663nkyc3n" - -["github.com/jmespath/go-jmespath/internal/testify"] - sumVersion = "v1.5.1" - relPath = "internal/testify" - ["github.com/jmespath/go-jmespath/internal/testify".fetch] - type = "git" - url = "https://github.com/jmespath/go-jmespath" - rev = "ff168ca20786696708c0f3eb2cc29d7912467599" - sha256 = "0swpmim4gn023pkzxfg8adqilz7mfka8axlsjqsxk0d2r372z75m" - -["github.com/jmhodges/levigo"] - sumVersion = "v1.0.0" - ["github.com/jmhodges/levigo".fetch] - type = "git" - url = "https://github.com/jmhodges/levigo" - rev = "853d788c5c416eaaee5b044570784a96c7a26975" - sha256 = "1lhh413mmclnkwn2lk1crwzargam2cx5w7k6zj8pgasy62c78iy4" - -["github.com/jonboulle/clockwork"] - sumVersion = "v0.1.0" - ["github.com/jonboulle/clockwork".fetch] - type = "git" - url = "https://github.com/jonboulle/clockwork" - rev = "2eee05ed794112d45db504eb05aa693efd2b8b09" - sha256 = "1pqxhsdavbp1n5grgyx2j6ylvql2fzn2cvpsgkc8li69dil7sibl" - -["github.com/jpillora/backoff"] - sumVersion = "v1.0.0" - ["github.com/jpillora/backoff".fetch] - type = "git" - url = "https://github.com/jpillora/backoff" - rev = "d80867952dff4e2fbfb4280ded4ff94d67790457" - sha256 = "0x90fif28fjyl07lmj2cnxzlgdm632v7rkra7kq1mwjdqgmy04dv" - -["github.com/jrick/logrotate"] - sumVersion = "v1.0.0" - ["github.com/jrick/logrotate".fetch] - type = "git" - url = "https://github.com/jrick/logrotate" - rev = "a93b200c26cbae3bb09dd0dc2c7c7fe1468a034a" - sha256 = "0srl6figwjqpi3nbp7br8sxpmvh4v8lzbny1b4lar4ny0156p5nl" - -["github.com/json-iterator/go"] - sumVersion = "v1.1.11" - ["github.com/json-iterator/go".fetch] - type = "git" - url = "https://github.com/json-iterator/go" - rev = "e6b9536d3649bda3e8842bb7e4fab489d79a97ea" - sha256 = "086la0acyi7ryf0yzhsxm7vg9qqlg2333syf4kpr1cmac7v05vmb" - -["github.com/jstemmer/go-junit-report"] - sumVersion = "v0.9.1" - ["github.com/jstemmer/go-junit-report".fetch] - type = "git" - url = "https://github.com/jstemmer/go-junit-report" - rev = "cc1f095d5cc5eca2844f5c5ea7bb37f6b9bf6cac" - sha256 = "1knip80yir1cdsjlb3rzy0a4w3kl4ljpiciaz6hjzwqlfhnv7bkw" - -["github.com/jsternberg/zap-logfmt"] - sumVersion = "v1.0.0" - ["github.com/jsternberg/zap-logfmt".fetch] - type = "git" - url = "https://github.com/jsternberg/zap-logfmt" - rev = "ac4bd917e18a4548ce6e0e765b29a4e7f397b0b6" - sha256 = "0pqp2nsqvsq8kqc7l14340lrvl03715s12bag63kdbi25s8fcdkx" - -["github.com/jtolds/gls"] - sumVersion = "v4.20.0+incompatible" - ["github.com/jtolds/gls".fetch] - type = "git" - url = "https://github.com/jtolds/gls" - rev = "b4936e06046bbecbb94cae9c18127ebe510a2cb9" - sha256 = "1k7xd2q2ysv2xsh373qs801v6f359240kx0vrl0ydh7731lngvk6" - -["github.com/julienschmidt/httprouter"] - sumVersion = "v1.3.0" - ["github.com/julienschmidt/httprouter".fetch] - type = "git" - url = "https://github.com/julienschmidt/httprouter" - rev = "4eec211fa4e8df74ed978dc5681612131854144f" - sha256 = "1a6sy0ysqknsjssjh7qg1dqn21xmj9a36c57nrk7srfmab4ffmk1" - -["github.com/jung-kurt/gofpdf"] - sumVersion = "v1.0.3-0.20190309125859-24315acbbda5" - ["github.com/jung-kurt/gofpdf".fetch] - type = "git" - url = "https://github.com/jung-kurt/gofpdf" - rev = "24315acbbda57c4f6b80c8441fd108087dd7e305" - sha256 = "1hyb2vbyz8xwzhinqwlan0fxbdsgfjj975i9ca4bhfzzqqwq9pmk" - -["github.com/jwilder/encoding"] - sumVersion = "v0.0.0-20170811194829-b4e1701a28ef" - ["github.com/jwilder/encoding".fetch] - type = "git" - url = "https://github.com/jwilder/encoding" - rev = "b4e1701a28efcc637d9afcca7d38e495fe909a09" - sha256 = "195js5njz86k096p3ggglgpc7rw3801mpqzdfwfr3miflhnp7nwg" - -["github.com/karalabe/usb"] - sumVersion = "v0.0.0-20211005121534-4c5740d64559" - ["github.com/karalabe/usb".fetch] - type = "git" - url = "https://github.com/karalabe/usb" - rev = "4c5740d64559c5fe8ad36835d42c7f44ff4d1db9" - sha256 = "1zv34556abrqdygmv03z47vx5xdxnfdgbhy37mdy190dvzc1r0hv" - -["github.com/keybase/go-keychain"] - sumVersion = "v0.0.0-20190712205309-48d3d31d256d" - ["github.com/keybase/go-keychain".fetch] - type = "git" - url = "https://github.com/keybase/go-keychain" - rev = "48d3d31d256d9922a90b14c518c4b685f321fab2" - sha256 = "1vb4irkbj5s4v8n8dqngmg2w2fbnaz568z731yqryspvvmrki2a1" - -["github.com/kisielk/errcheck"] - sumVersion = "v1.5.0" - ["github.com/kisielk/errcheck".fetch] - type = "git" - url = "https://github.com/kisielk/errcheck" - rev = "ee08a456fc430219ad80ce5af98415bcc027a219" - sha256 = "0ci3jz2px74pfmr42jv7dpx7fdzx08vai4czp9fkiyb0gcaiqsk6" - -["github.com/kisielk/gotool"] - sumVersion = "v1.0.0" - ["github.com/kisielk/gotool".fetch] - type = "git" - url = "https://github.com/kisielk/gotool" - rev = "80517062f582ea3340cd4baf70e86d539ae7d84d" - sha256 = "14af2pa0ssyp8bp2mvdw184s5wcysk6akil3wzxmr05wwy951iwn" - -["github.com/kkdai/bstream"] - sumVersion = "v1.0.0" - ["github.com/kkdai/bstream".fetch] - type = "git" - url = "https://github.com/kkdai/bstream" - rev = "a8d27c5aa8eedad6b6683069d64b96ece63696db" - sha256 = "02brc58hhkkfhgb4yxjv3wshq355w533q7d49qrlfkhk265qph7w" - -["github.com/klauspost/compress"] - sumVersion = "v1.11.9" - ["github.com/klauspost/compress".fetch] - type = "git" - url = "https://github.com/klauspost/compress" - rev = "a576225a10eb8feafd84f269df11f0c26b7139e0" - sha256 = "1bnxpv11zxg23h6qnm6wvf1qvbz2k2n3l1xy02wwfa139kpwc4ag" - -["github.com/klauspost/cpuid"] - sumVersion = "v0.0.0-20170728055534-ae7887de9fa5" - ["github.com/klauspost/cpuid".fetch] - type = "git" - url = "https://github.com/klauspost/cpuid" - rev = "ae7887de9fa5d2db4eaa8174a7eff2c1ac00f2da" - sha256 = "178apw89g8nsd7w6mbdylxn956h3iig6rbw3bkivp6lplhb5dvq4" - -["github.com/klauspost/crc32"] - sumVersion = "v0.0.0-20161016154125-cb6bfca970f6" - ["github.com/klauspost/crc32".fetch] - type = "git" - url = "https://github.com/klauspost/crc32" - rev = "cb6bfca970f6908083f26f39a79009d608efd5cd" - sha256 = "0q4yr4isgmph1yf1vq527lpmid7vqv56q7vxh3gkp5679fb90q6n" - -["github.com/klauspost/pgzip"] - sumVersion = "v1.0.2-0.20170402124221-0bf5dcad4ada" - ["github.com/klauspost/pgzip".fetch] - type = "git" - url = "https://github.com/klauspost/pgzip" - rev = "0bf5dcad4ada2814c3c00f996a982270bb81a506" - sha256 = "0dgp2iljvhibzxia1g3lsfg4bjmfh4kf0bfrmfi7sd49hwhrvk7s" - -["github.com/konsorten/go-windows-terminal-sequences"] - sumVersion = "v1.0.3" - ["github.com/konsorten/go-windows-terminal-sequences".fetch] - type = "git" - url = "https://github.com/konsorten/go-windows-terminal-sequences" - rev = "edb144dfd453055e1e49a3d8b410a660b5a87613" - sha256 = "1yrsd4s8vhjnxhwbigirymz89dn6qfjnhn28i33vvvdgf96j6ypl" - -["github.com/kr/fs"] - sumVersion = "v0.1.0" - ["github.com/kr/fs".fetch] - type = "git" - url = "https://github.com/kr/fs" - rev = "1455def202f6e05b95cc7bfc7e8ae67ae5141eba" - sha256 = "11zg176x9hr9q7fsk95r6q0wf214gg4czy02slax4x56n79g6a7q" - -["github.com/kr/logfmt"] - sumVersion = "v0.0.0-20140226030751-b84e30acd515" - ["github.com/kr/logfmt".fetch] - type = "git" - url = "https://github.com/kr/logfmt" - rev = "b84e30acd515aadc4b783ad4ff83aff3299bdfe0" - sha256 = "02ldzxgznrfdzvghfraslhgp19la1fczcbzh7wm2zdc6lmpd1qq9" - -["github.com/kr/pretty"] - sumVersion = "v0.2.1" - ["github.com/kr/pretty".fetch] - type = "git" - url = "https://github.com/kr/pretty" - rev = "ead452280cd055b2ae8a7f0db5eb37a878d902f7" - sha256 = "0vzfz06y9q8gs2nxx0kys0591vzp78k0fvpb8digi5n15h3b25hy" - -["github.com/kr/pty"] - sumVersion = "v1.1.1" - ["github.com/kr/pty".fetch] - type = "git" - url = "https://github.com/kr/pty" - rev = "282ce0e5322c82529687d609ee670fac7c7d917c" - sha256 = "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6" - -["github.com/kr/text"] - sumVersion = "v0.2.0" - ["github.com/kr/text".fetch] - type = "git" - url = "https://github.com/kr/text" - rev = "702c74938df48b97370179f33ce2107bd7ff3b3e" - sha256 = "0hf58ypz6rxsw6nx3i856whir9lvy4sdx946wbw1nfaf2rdmr9vx" - -["github.com/kylelemons/godebug"] - sumVersion = "v1.1.0" - ["github.com/kylelemons/godebug".fetch] - type = "git" - url = "https://github.com/kylelemons/godebug" - rev = "9ff306d4fbead574800b66369df5b6144732d58e" - sha256 = "0dkk3friykg8p6wgqryx6745ahhb9z1j740k7px9dac6v5xjp78c" - -["github.com/labstack/echo/v4"] - sumVersion = "v4.2.1" - ["github.com/labstack/echo/v4".fetch] - type = "git" - url = "https://github.com/labstack/echo" - rev = "a97052edaf781a731903d816c9b271028d709131" - sha256 = "0kmaxpz56v8qj1p2zql9s9mxani4y3lsmlykqd4jbi1j1zcnr034" - -["github.com/labstack/gommon"] - sumVersion = "v0.3.0" - ["github.com/labstack/gommon".fetch] - type = "git" - url = "https://github.com/labstack/gommon" - rev = "4919956f6fb227b548f004da27c7c6b20fba499f" - sha256 = "18z7akyzm75p6anm4b8qkqgm4iivx50z07hi5wf50w1pbsvbcdi0" - -["github.com/leanovate/gopter"] - sumVersion = "v0.2.9" - ["github.com/leanovate/gopter".fetch] - type = "git" - url = "https://github.com/leanovate/gopter" - rev = "46d01ab79c55eb28e34ffad30fe65e5591a1adf8" - sha256 = "1xyj9djc8nkq0wiz0689fwhh84hykmnlr2cjzk9xcghkvzbddlhr" - -["github.com/leodido/go-urn"] - sumVersion = "v1.2.0" - ["github.com/leodido/go-urn".fetch] - type = "git" - url = "https://github.com/leodido/go-urn" - rev = "a0f5013415294bb94553821ace21a1a74c0298cc" - sha256 = "1d4g1vkhc1180l1n7q48vl84b27c7cziywml78cyijbcdz2f8vim" - -["github.com/lib/pq"] - sumVersion = "v1.10.2" - ["github.com/lib/pq".fetch] - type = "git" - url = "https://github.com/lib/pq" - rev = "2da6713d67f03911a05b1b6559adc85927fe076e" - sha256 = "0drlr4dx3dzlafx5m9ys9q69hx518pdl279s736k0m3lr9iq9c7r" - -["github.com/libp2p/go-buffer-pool"] - sumVersion = "v0.0.2" - ["github.com/libp2p/go-buffer-pool".fetch] - type = "git" - url = "https://github.com/libp2p/go-buffer-pool" - rev = "c4a5988a1e475884367015e1a2d0bd5fa4c491f4" - sha256 = "01iwby4xq9znlfhcxxvqv03smllsv42j1w3vpqg9n307s3i0pj3m" - -["github.com/lightstep/lightstep-tracer-common/golang/gogo"] - sumVersion = "v0.0.0-20190605223551-bc2310a04743" - relPath = "golang/gogo" - ["github.com/lightstep/lightstep-tracer-common/golang/gogo".fetch] - type = "git" - url = "https://github.com/lightstep/lightstep-tracer-common" - rev = "bc2310a0474352fa2616bdc0a27457b146b136b4" - sha256 = "0j7qycrva0ngf38br0jy9blzjb98ksdfi87b0sb2gnpmsp6sz4l8" - -["github.com/lightstep/lightstep-tracer-go"] - sumVersion = "v0.18.1" - ["github.com/lightstep/lightstep-tracer-go".fetch] - type = "git" - url = "https://github.com/lightstep/lightstep-tracer-go" - rev = "95891af43e111d60f0ae6adaa39c2abe8caad401" - sha256 = "0jfnsv7y11d247xysc61wp8xmgn33fdl17v6g0lxxnklbw41k91y" - -["github.com/lucasjones/reggen"] - sumVersion = "v0.0.0-20180717132126-cdb49ff09d77" - ["github.com/lucasjones/reggen".fetch] - type = "git" - url = "https://github.com/lucasjones/reggen" - rev = "cdb49ff09d77331d3fdd51e862b4023d2257954c" - sha256 = "1cby9n647v4gh11mpz1dfscks8n0cw0rj8d2hjh4q9mky4m7jzl1" - -["github.com/magiconair/properties"] - sumVersion = "v1.8.5" - ["github.com/magiconair/properties".fetch] - type = "git" - url = "https://github.com/magiconair/properties" - rev = "291b8266af1000c77a12ae6d4dde1145a028012f" - sha256 = "0v4agnkhc30fblbmhs0gq2bikhdnnmqmpp4phrnza68m04j5hxbn" - -["github.com/mailru/easyjson"] - sumVersion = "v0.0.0-20190626092158-b2ccc519800e" - ["github.com/mailru/easyjson".fetch] - type = "git" - url = "https://github.com/mailru/easyjson" - rev = "b2ccc519800e761ac8000b95e5d57c80a897ff9e" - sha256 = "0q85h383mhbkcjm2vqm72bi8n2252fv3c56q3lclzb8n2crnjcdk" - -["github.com/matryer/moq"] - sumVersion = "v0.0.0-20190312154309-6cfb0558e1bd" - ["github.com/matryer/moq".fetch] - type = "git" - url = "https://github.com/matryer/moq" - rev = "6cfb0558e1bd81d19c9909483c39e199634fed29" - sha256 = "0x7ss68cvq2aljyw4765iy7divmp8rghpyzlas3nb95qzsfmmpzl" - -["github.com/mattn/go-colorable"] - sumVersion = "v0.1.8" - ["github.com/mattn/go-colorable".fetch] - type = "git" - url = "https://github.com/mattn/go-colorable" - rev = "2e1b0c1546e0173c0907cf05c67b8ba29ed8b4d1" - sha256 = "0q34zqwbnls72md8q8mhj368s7p3i4xspvs3rk8fs76s0pn7dr2l" - -["github.com/mattn/go-ieproxy"] - sumVersion = "v0.0.0-20190702010315-6dee0af9227d" - ["github.com/mattn/go-ieproxy".fetch] - type = "git" - url = "https://github.com/mattn/go-ieproxy" - rev = "6dee0af9227d0863f1508ce7937af3396d6605c1" - sha256 = "0kxxxi68wch3rf3iqggiv72fbf0g7s6g8wy7r34ir040j8b7k0ri" - -["github.com/mattn/go-isatty"] - sumVersion = "v0.0.14" - ["github.com/mattn/go-isatty".fetch] - type = "git" - url = "https://github.com/mattn/go-isatty" - rev = "504425e14f742f1f517c4586048b49b37f829c8e" - sha256 = "015zc3j60vb85d7f2al15la24wn45piazxlagqhzrbgfdyqci60z" - -["github.com/mattn/go-runewidth"] - sumVersion = "v0.0.9" - ["github.com/mattn/go-runewidth".fetch] - type = "git" - url = "https://github.com/mattn/go-runewidth" - rev = "14e809f6d78fcf9f48ff9b70981472b64c05f754" - sha256 = "1mvlxcdwr0vwp8b2wqs6y7hk72y28sqh03dz5x0xkg48d4y9cplj" - -["github.com/mattn/go-sqlite3"] - sumVersion = "v1.11.0" - ["github.com/mattn/go-sqlite3".fetch] - type = "git" - url = "https://github.com/mattn/go-sqlite3" - rev = "b612a2feea6aa87c6d052d9086572551df06497e" - sha256 = "1lnrcvaij1v0fpz53j1l91c77x8gmrfnipnmw8ifd7pvhr1iskl3" - -["github.com/mattn/go-tty"] - sumVersion = "v0.0.0-20180907095812-13ff1204f104" - ["github.com/mattn/go-tty".fetch] - type = "git" - url = "https://github.com/mattn/go-tty" - rev = "13ff1204f104d52c3f7645ec027ecbcf9026429e" - sha256 = "1c9vzrq7r5skq0cz9alkix9n1cp6h7wybdwrg0f1vzvxj26qr7yq" - -["github.com/matttproud/golang_protobuf_extensions"] - sumVersion = "v1.0.1" - ["github.com/matttproud/golang_protobuf_extensions".fetch] - type = "git" - url = "https://github.com/matttproud/golang_protobuf_extensions" - rev = "c12348ce28de40eed0136aa2b644d0ee0650e56c" - sha256 = "1d0c1isd2lk9pnfq2nk0aih356j30k3h1gi2w0ixsivi5csl7jya" - -["github.com/miekg/dns"] - sumVersion = "v1.1.26" - ["github.com/miekg/dns".fetch] - type = "git" - url = "https://github.com/miekg/dns" - rev = "eda228adcff6f7a80ddaf1d265209a10a4f51ca9" - sha256 = "0kjld1c89y14qbd7s8jjka89c42jqb34fil4zl481dcxp9ai55bs" - -["github.com/miguelmota/go-ethereum-hdwallet"] - sumVersion = "v0.1.1" - ["github.com/miguelmota/go-ethereum-hdwallet".fetch] - type = "git" - url = "https://github.com/miguelmota/go-ethereum-hdwallet" - rev = "ca8871b71a79c01875d53a75b2a8790d2575763a" - sha256 = "0r68hjyrh83knwavap7s5gbh03izzgly4k7yz9yzzvx1cji6vi7a" - -["github.com/mimoo/StrobeGo"] - sumVersion = "v0.0.0-20181016162300-f8f6d4d2b643" - ["github.com/mimoo/StrobeGo".fetch] - type = "git" - url = "https://github.com/mimoo/StrobeGo" - rev = "f8f6d4d2b6435f46148e8a6dc2248939893f3ece" - sha256 = "1lgxh3p6aqfc049wn3kz1mj9prm4mqpa9m01p27ph8iw5ry5c7la" - -["github.com/minio/highwayhash"] - sumVersion = "v1.0.1" - ["github.com/minio/highwayhash".fetch] - type = "git" - url = "https://github.com/minio/highwayhash" - rev = "86a2a969d04373bf05ca722517d30fb1c9a3e4f9" - sha256 = "0kj2hs82sphag0h25xvprvf2fz3zlinmlif89sk9jp8h518aiahf" - -["github.com/mitchellh/cli"] - sumVersion = "v1.1.0" - ["github.com/mitchellh/cli".fetch] - type = "git" - url = "https://github.com/mitchellh/cli" - rev = "902dcca838c81f360568876054b74ffcc419e421" - sha256 = "1x1jq0amsa0jpd4w19saz1wahmd8fb9mzs2ii4wk0mckr30n8nki" - -["github.com/mitchellh/go-homedir"] - sumVersion = "v1.1.0" - ["github.com/mitchellh/go-homedir".fetch] - type = "git" - url = "https://github.com/mitchellh/go-homedir" - rev = "af06845cf3004701891bf4fdb884bfe4920b3727" - sha256 = "0ydzkipf28hwj2bfxqmwlww47khyk6d152xax4bnyh60f4lq3nx1" - -["github.com/mitchellh/go-testing-interface"] - sumVersion = "v1.0.0" - ["github.com/mitchellh/go-testing-interface".fetch] - type = "git" - url = "https://github.com/mitchellh/go-testing-interface" - rev = "6d0b8010fcc857872e42fc6c931227569016843c" - sha256 = "1dl2js8di858bawg7dadlf1qjpkl2g3apziihjyf5imri3znyfpw" - -["github.com/mitchellh/gox"] - sumVersion = "v0.4.0" - ["github.com/mitchellh/gox".fetch] - type = "git" - url = "https://github.com/mitchellh/gox" - rev = "c9740af9c6574448fd48eb30a71f964014c7a837" - sha256 = "1q4fdkw904mrmh1q5z8pfd3r0gcn5dm776kldqawddy93iiwnp8r" - -["github.com/mitchellh/iochan"] - sumVersion = "v1.0.0" - ["github.com/mitchellh/iochan".fetch] - type = "git" - url = "https://github.com/mitchellh/iochan" - rev = "b6e3aadd28864e14dae41ff5c7261455b1242d24" - sha256 = "058n9bbf536f2nw3pbs7pysrg9cqvgkb28z2zf5wjyrzrknyk53g" - -["github.com/mitchellh/mapstructure"] - sumVersion = "v1.4.2" - ["github.com/mitchellh/mapstructure".fetch] - type = "git" - url = "https://github.com/mitchellh/mapstructure" - rev = "5ac1f6aa4011ece0c4df24a4fe8020a9cc21e393" - sha256 = "0akjnwsng42vak978pny84d946fbaj2kgp7fzvx30zpc6fzrmli7" - -["github.com/mitchellh/pointerstructure"] - sumVersion = "v1.2.0" - ["github.com/mitchellh/pointerstructure".fetch] - type = "git" - url = "https://github.com/mitchellh/pointerstructure" - rev = "09edf7f47224892e450d1c704156ce2f245efaab" - sha256 = "1p6rmkwixnyf291v5jc0g72b3krp3awyakfamkq5485gvm8vk0mm" - -["github.com/moby/sys/mountinfo"] - sumVersion = "v0.4.1" - relPath = "mountinfo" - ["github.com/moby/sys/mountinfo".fetch] - type = "git" - url = "https://github.com/moby/sys" - rev = "b0f1fd7235275d01bd35cc4421e884e522395f45" - sha256 = "1svicfa0gyq8fcbsl475gpr0y5rgv0389d9yq6hzwz2acrdxyxm2" - -["github.com/modern-go/concurrent"] - sumVersion = "v0.0.0-20180306012644-bacd9c7ef1dd" - ["github.com/modern-go/concurrent".fetch] - type = "git" - url = "https://github.com/modern-go/concurrent" - rev = "bacd9c7ef1dd9b15be4a9909b8ac7a4e313eec94" - sha256 = "0s0fxccsyb8icjmiym5k7prcqx36hvgdwl588y0491gi18k5i4zs" - -["github.com/modern-go/reflect2"] - sumVersion = "v1.0.1" - ["github.com/modern-go/reflect2".fetch] - type = "git" - url = "https://github.com/modern-go/reflect2" - rev = "94122c33edd36123c84d5368cfb2b69df93a0ec8" - sha256 = "06a3sablw53n1dqqbr2f53jyksbxdmmk8axaas4yvnhyfi55k4lf" - -["github.com/mrunalp/fileutils"] - sumVersion = "v0.5.0" - ["github.com/mrunalp/fileutils".fetch] - type = "git" - url = "https://github.com/mrunalp/fileutils" - rev = "d7fdd64cc1cabe10bc154ee7d2318b07b7f296ef" - sha256 = "1zrs959gf4zgi6ijwkdn4dcqk0svfblpaikkqy63q30rqz4swm0x" - -["github.com/mschoch/smat"] - sumVersion = "v0.0.0-20160514031455-90eadee771ae" - ["github.com/mschoch/smat".fetch] - type = "git" - url = "https://github.com/mschoch/smat" - rev = "90eadee771aeab36e8bf796039b8c261bebebe4f" - sha256 = "141saq6d4z3c7v3jw45zy4gn6wwjlyralqygjff1fzvz1gkvimk3" - -["github.com/mtibben/percent"] - sumVersion = "v0.2.1" - ["github.com/mtibben/percent".fetch] - type = "git" - url = "https://github.com/mtibben/percent" - rev = "07b18b68c1413ce9f8137a8cbd4509fac9e15f0c" - sha256 = "1iqivw8pigj259rj5yifibbvic70f9hb7k24a4sa967s4fj6agb6" - -["github.com/mwitkow/go-conntrack"] - sumVersion = "v0.0.0-20190716064945-2f068394615f" - ["github.com/mwitkow/go-conntrack".fetch] - type = "git" - url = "https://github.com/mwitkow/go-conntrack" - rev = "2f068394615f73e460c2f3d2c158b0ad9321cadb" - sha256 = "0ymjmy12ks7smgwmrwsa5kf07d9w5kpk1dn650azlzr61b561aw7" - -["github.com/mwitkow/grpc-proxy"] - sumVersion = "v0.0.0-20181017164139-0f1106ef9c76" - ["github.com/mwitkow/grpc-proxy".fetch] - type = "git" - url = "https://github.com/mwitkow/grpc-proxy" - rev = "0f1106ef9c766333b9acb4b81e705da4bade7215" - sha256 = "087kid1xiaxnhdhljcm1587cgiiwr0iznk931znkrz3f4gdjyqa2" - -["github.com/naoina/go-stringutil"] - sumVersion = "v0.1.0" - ["github.com/naoina/go-stringutil".fetch] - type = "git" - url = "https://github.com/naoina/go-stringutil" - rev = "6b638e95a32d0c1131db0e7fe83775cbea4a0d0b" - sha256 = "00831p1wn3rimybk1z8l30787kn1akv5jax5wx743nn76qcmkmc6" - -["github.com/naoina/toml"] - sumVersion = "v0.1.2-0.20170918210437-9fafd6967416" - ["github.com/naoina/toml".fetch] - type = "git" - url = "https://github.com/naoina/toml" - rev = "9fafd69674167c06933b1787ae235618431ce87f" - sha256 = "0mpvdnidgab48k7dfq1vaiz1wny8n29y7zxpipnp1zm8ibxpism0" - -["github.com/nats-io/jwt"] - sumVersion = "v0.3.2" - ["github.com/nats-io/jwt".fetch] - type = "git" - url = "https://github.com/nats-io/jwt" - rev = "0c3fc7aed8bb2534e7bfdf0968a75890402d48cd" - sha256 = "0n44ghpz6hnbd2i074ikrj72rd2vnxpg1g3nhv1ly1kr0832khx6" - -["github.com/nats-io/nats-server/v2"] - sumVersion = "v2.1.2" - ["github.com/nats-io/nats-server/v2".fetch] - type = "git" - url = "https://github.com/nats-io/nats-server" - rev = "679bedafd96f85ddfa56a4d5736517c18842047a" - sha256 = "1jxi6d0zbhisxprlynvqw3dl1lz4wwxiy9gnpaqrwx1yi3kvvg62" - -["github.com/nats-io/nats.go"] - sumVersion = "v1.9.1" - ["github.com/nats-io/nats.go".fetch] - type = "git" - url = "https://github.com/nats-io/nats.go" - rev = "6063d679d23ae5b3edb4030d5e89a6e30ea53bc6" - sha256 = "0mmbwri2k2c8q1w0fr0g5s81709lfr6wyarvaf3gibc7cig10pij" - -["github.com/nats-io/nkeys"] - sumVersion = "v0.1.3" - ["github.com/nats-io/nkeys".fetch] - type = "git" - url = "https://github.com/nats-io/nkeys" - rev = "f1930e19b436412202ab130a733187cc6f40ba7e" - sha256 = "1fip0bja471mavvp67bninpd24jviwpnh7w99kchyiy27lbxy4hp" - -["github.com/nats-io/nuid"] - sumVersion = "v1.0.1" - ["github.com/nats-io/nuid".fetch] - type = "git" - url = "https://github.com/nats-io/nuid" - rev = "4b96681fa6d28dd0ab5fe79bac63b3a493d9ee94" - sha256 = "11zbhg4kds5idsya04bwz4plj0mmiigypzppzih731ppbk2ms1zg" - -["github.com/neilotoole/errgroup"] - sumVersion = "v0.1.5" - ["github.com/neilotoole/errgroup".fetch] - type = "git" - url = "https://github.com/neilotoole/errgroup" - rev = "1b5ee5ba6837fe62f5c9f2275033db8ec84de004" - sha256 = "0jk0ws9cxdiicfd4w7mpvfgsx4fabgpjhyl8jwbqnzpq2w0pgk6p" - -["github.com/niemeyer/pretty"] - sumVersion = "v0.0.0-20200227124842-a10e7caefd8e" - ["github.com/niemeyer/pretty".fetch] - type = "git" - url = "https://github.com/niemeyer/pretty" - rev = "a10e7caefd8e0d600cea437f5c3613aeb1553d56" - sha256 = "1jmazh4xzaa3v6g46hz60q2z7nmqs9l9cxdzmmscn3kbcs2znq4v" - -["github.com/nishanths/predeclared"] - sumVersion = "v0.0.0-20200524104333-86fad755b4d3" - ["github.com/nishanths/predeclared".fetch] - type = "git" - url = "https://github.com/nishanths/predeclared" - rev = "86fad755b4d311159d91c13de0c9925a433fd6e5" - sha256 = "1prcndh4kds229xhhh4l7m25dn8w1wp7kj5gpcjs1z38w1jcpdh3" - -["github.com/nxadm/tail"] - sumVersion = "v1.4.8" - ["github.com/nxadm/tail".fetch] - type = "git" - url = "https://github.com/nxadm/tail" - rev = "abad231d8d07ef91e09cd4c4c457cac35ed3bbb9" - sha256 = "1j2gi485fhwdpmyzn42wk62103fclwbfywg42p275z1qv2bsz1rc" - -["github.com/oklog/oklog"] - sumVersion = "v0.3.2" - ["github.com/oklog/oklog".fetch] - type = "git" - url = "https://github.com/oklog/oklog" - rev = "e3ad1c411c27b4bc18c5facb9331820d141a5a54" - sha256 = "1xnjxhgi0zm51skl533la50h133a245i57wqa3h7fr2lv2jqpzny" - -["github.com/oklog/run"] - sumVersion = "v1.0.0" - ["github.com/oklog/run".fetch] - type = "git" - url = "https://github.com/oklog/run" - rev = "4dadeb3030eda0273a12382bb2348ffc7c9d1a39" - sha256 = "1pbjza4claaj95fpqvvfrysvs10y7dm0pl6qr5lzh6qy1vnhmcgw" - -["github.com/oklog/ulid"] - sumVersion = "v1.3.1" - ["github.com/oklog/ulid".fetch] - type = "git" - url = "https://github.com/oklog/ulid" - rev = "02a8604050d8466dd915307496174adb9be4593a" - sha256 = "0hybwyid820n80axrk863k2py93hbqlq6hxhf84ppmz0qd0ys0gq" - -["github.com/olekukonko/tablewriter"] - sumVersion = "v0.0.5" - ["github.com/olekukonko/tablewriter".fetch] - type = "git" - url = "https://github.com/olekukonko/tablewriter" - rev = "c7d2a8a09b076b70918308a3cd95464b2ae3b5d8" - sha256 = "0zhnrih2px6jm8nxzkz8s7va3lj03bzwxim8wjba9zh7i78bp67z" - -["github.com/onsi/ginkgo"] - sumVersion = "v1.16.5" - ["github.com/onsi/ginkgo".fetch] - type = "git" - url = "https://github.com/onsi/ginkgo" - rev = "d38b9d946d52cd175495d30143fbecc5aff98f13" - sha256 = "1hh6n7q92y0ai8k6rj2yzw6wwxikhyiyk4j92zgvf1zad0gmqqmz" - -["github.com/onsi/gomega"] - sumVersion = "v1.17.0" - ["github.com/onsi/gomega".fetch] - type = "git" - url = "https://github.com/onsi/gomega" - rev = "05f6097dd78c7c5fcdd4dd17896d96ab468fdd63" - sha256 = "01lxf1ai4grd7akdgrc50rb2g2c5drrc067acndccxzxidi43grh" - -["github.com/op/go-logging"] - sumVersion = "v0.0.0-20160315200505-970db520ece7" - ["github.com/op/go-logging".fetch] - type = "git" - url = "https://github.com/op/go-logging" - rev = "970db520ece77730c7e4724c61121037378659d9" - sha256 = "1cpna2x5l071z1vrnk7zipdkka8dzwsjyx7m79xk0lr08rip0kcj" - -["github.com/opencontainers/go-digest"] - sumVersion = "v1.0.0" - ["github.com/opencontainers/go-digest".fetch] - type = "git" - url = "https://github.com/opencontainers/go-digest" - rev = "ea51bea511f75cfa3ef6098cc253c5c3609b037a" - sha256 = "0i5acjajvr6hi9zb7gxwifd8w28y884cv7cx36adj8lngj647xbi" - -["github.com/opencontainers/image-spec"] - sumVersion = "v1.0.1" - ["github.com/opencontainers/image-spec".fetch] - type = "git" - url = "https://github.com/opencontainers/image-spec" - rev = "d60099175f88c47cd379c4738d158884749ed235" - sha256 = "03dvbj3dln8c55v9gp79mgmz2yi2ws3r08iyz2fk41y3i22iaw1q" - -["github.com/opencontainers/runc"] - sumVersion = "v1.0.2" - ["github.com/opencontainers/runc".fetch] - type = "git" - url = "https://github.com/opencontainers/runc" - rev = "52b36a2dd837e8462de8e01458bf02cf9eea47dd" - sha256 = "1bpckghjah0rczciw1a1ab8z718lb2d3k4mjm4zb45lpm3njmrcp" - -["github.com/opencontainers/runtime-spec"] - sumVersion = "v1.0.3-0.20210326190908-1c3f411f0417" - ["github.com/opencontainers/runtime-spec".fetch] - type = "git" - url = "https://github.com/opencontainers/runtime-spec" - rev = "1c3f411f041711bbeecf35ff7e93461ea6789220" - sha256 = "1azk8z41ga8af35c966f06vrq9y9hwz6mkm59r3py5qaamzim3qq" - -["github.com/opencontainers/selinux"] - sumVersion = "v1.8.2" - ["github.com/opencontainers/selinux".fetch] - type = "git" - url = "https://github.com/opencontainers/selinux" - rev = "76bc82e11d854d3e40c08889d13c98abcea72ea2" - sha256 = "1dl1h8nzpyhsfki1dcjphm5h4n52qwilahyl6qlnwgzcc76pwizq" - -["github.com/opentracing-contrib/go-observer"] - sumVersion = "v0.0.0-20170622124052-a52f23424492" - ["github.com/opentracing-contrib/go-observer".fetch] - type = "git" - url = "https://github.com/opentracing-contrib/go-observer" - rev = "a52f2342449246d5bcc273e65cbdcfa5f7d6c63c" - sha256 = "1q7z458m2vh3bzml4x9vm2paffqn1jcgiydbisl0zg2asfniq7k3" - -["github.com/opentracing/basictracer-go"] - sumVersion = "v1.0.0" - ["github.com/opentracing/basictracer-go".fetch] - type = "git" - url = "https://github.com/opentracing/basictracer-go" - rev = "1b32af207119a14b1b231d451df3ed04a72efebf" - sha256 = "0hs969asib4yqj5k755zr0byz2iqvjbs6z1szcnr50q6fihigca0" - -["github.com/opentracing/opentracing-go"] - sumVersion = "v1.1.0" - ["github.com/opentracing/opentracing-go".fetch] - type = "git" - url = "https://github.com/opentracing/opentracing-go" - rev = "659c90643e714681897ec2521c60567dd21da733" - sha256 = "0aj9cbm21zsg1i5l25hz8gn0yf99yxyxcp1gqh3yd5g4knj2cgzf" - -["github.com/openzipkin-contrib/zipkin-go-opentracing"] - sumVersion = "v0.4.5" - ["github.com/openzipkin-contrib/zipkin-go-opentracing".fetch] - type = "git" - url = "https://github.com/openzipkin-contrib/zipkin-go-opentracing" - rev = "223664cff43dfd9f54659ff15dc4bd6e023d0c14" - sha256 = "0mdvx50mw17c926rhhkjg8z54v8h0jvnqahdlpij2kbxi3ncgr7q" - -["github.com/openzipkin/zipkin-go"] - sumVersion = "v0.2.2" - ["github.com/openzipkin/zipkin-go".fetch] - type = "git" - url = "https://github.com/openzipkin/zipkin-go" - rev = "c29478e51bfb2e9c93e0e9f5e015e5993a490399" - sha256 = "18c884anq0pkahmjwyhrdg247wyq33ccxp5k7fcq5gzh8g6dj92s" - -["github.com/ory/dockertest"] - sumVersion = "v3.3.5+incompatible" - ["github.com/ory/dockertest".fetch] - type = "git" - url = "https://github.com/ory/dockertest" - rev = "2b0896a948c60f3207381d9fc259d0fc13227c30" - sha256 = "0fgj60l82sl6chd7i4s7lxqjr9hxkzmkaxnc8h6qbvn42246sy68" - -["github.com/otiai10/copy"] - sumVersion = "v1.6.0" - ["github.com/otiai10/copy".fetch] - type = "git" - url = "https://github.com/otiai10/copy" - rev = "edeb9f37d4d0c28725014fcab6635120197932a1" - sha256 = "1l84qx9n464nh1izgr1kx5xb1ab878b2x803fck0w9gy1bwch25h" - -["github.com/otiai10/curr"] - sumVersion = "v1.0.0" - ["github.com/otiai10/curr".fetch] - type = "git" - url = "https://github.com/otiai10/curr" - rev = "88e2f2cffa0b5f13e90ee963a321bd1b2f715561" - sha256 = "0fpw20adq2wff7l4c87zaavj9jra4d64a8bbjixiiv3bbarim987" - -["github.com/otiai10/mint"] - sumVersion = "v1.3.2" - ["github.com/otiai10/mint".fetch] - type = "git" - url = "https://github.com/otiai10/mint" - rev = "3588d691480a831b1e78b776d3bccd9d5ce6461c" - sha256 = "0448nkhmp1ny64g2d7m5x8inz118zj03j6q0b97q3dszzs7hhan4" - -["github.com/pact-foundation/pact-go"] - sumVersion = "v1.0.4" - ["github.com/pact-foundation/pact-go".fetch] - type = "git" - url = "https://github.com/pact-foundation/pact-go" - rev = "3ce08c8af46b7bc33a06efc9b8807c08806c8af2" - sha256 = "08mnyf1yb6zjqfzs1pdh44drv390lfilhh4vi4asnjk52gknqfn0" - -["github.com/pascaldekloe/goe"] - sumVersion = "v0.1.0" - ["github.com/pascaldekloe/goe".fetch] - type = "git" - url = "https://github.com/pascaldekloe/goe" - rev = "57f6aae5913c64c9bcae5dbdffd33365b5a7f138" - sha256 = "1dqd3mfb4z2vmv6pg6fhgvfc53vhndk24wcl9lj1rz02n6m279fq" - -["github.com/paulbellamy/ratecounter"] - sumVersion = "v0.2.0" - ["github.com/paulbellamy/ratecounter".fetch] - type = "git" - url = "https://github.com/paulbellamy/ratecounter" - rev = "524851a93235ac051e3540563ed7909357fe24ab" - sha256 = "0z4c61ac6v8mpnr9z37d91h1cf8v9psja5jfdxmsf69r1b7qr4f9" - -["github.com/pborman/uuid"] - sumVersion = "v1.2.0" - ["github.com/pborman/uuid".fetch] - type = "git" - url = "https://github.com/pborman/uuid" - rev = "8b1b92947f46224e3b97bb1a3a5b0382be00d31e" - sha256 = "0f146yjqwx2mr110kl8scjhqd08hys7vr5z0d0a3lskb6yy22gfg" - -["github.com/pelletier/go-toml"] - sumVersion = "v1.9.4" - ["github.com/pelletier/go-toml".fetch] - type = "git" - url = "https://github.com/pelletier/go-toml" - rev = "b8ba995eaaba4be30c8a8090bdfb4aa61af52054" - sha256 = "0f2d9m19dadl18i2baf57xygvn9vprm6wb8chvpx8kipx94nchyl" - -["github.com/performancecopilot/speed"] - sumVersion = "v3.0.0+incompatible" - ["github.com/performancecopilot/speed".fetch] - type = "git" - url = "https://github.com/performancecopilot/speed" - rev = "839069a3ed70162d3bcefb9891c8ca852d877c1c" - sha256 = "1r0l6i80xkx9dcysa7ajvs5ypqkw2k0422k0hbz28fizaq9d8y0m" - -["github.com/peterh/liner"] - sumVersion = "v1.1.1-0.20190123174540-a2c9a5303de7" - ["github.com/peterh/liner".fetch] - type = "git" - url = "https://github.com/peterh/liner" - rev = "a2c9a5303de792c7581a3b80a8f10258319bb20e" - sha256 = "1cxpr92adcyv4bimswkfg3cmpmk71zq9gpyckhc64j2p4r4mb8zr" - -["github.com/petermattis/goid"] - sumVersion = "v0.0.0-20180202154549-b0b1615b78e5" - ["github.com/petermattis/goid".fetch] - type = "git" - url = "https://github.com/petermattis/goid" - rev = "b0b1615b78e5ee59739545bb38426383b2cda4c9" - sha256 = "0ghfxn045r0bbn2vszw897lxzmhnm4k59aypjvpxl0pbzsw9ab2c" - -["github.com/philhofer/fwd"] - sumVersion = "v1.0.0" - ["github.com/philhofer/fwd".fetch] - type = "git" - url = "https://github.com/philhofer/fwd" - rev = "bb6d471dc95d4fe11e432687f8b70ff496cf3136" - sha256 = "1pg84khadh79v42y8sjsdgfb54vw2kzv7hpapxkifgj0yvcp30g2" - -["github.com/pierrec/lz4"] - sumVersion = "v2.0.5+incompatible" - ["github.com/pierrec/lz4".fetch] - type = "git" - url = "https://github.com/pierrec/lz4" - rev = "ea731401f5c95a8ba30f15787e5e0fb77c60c66b" - sha256 = "0y5rh7z01zycd59nnjpkqq0ydyjmcg9j1xw15q1i600l9j9g617p" - -["github.com/pkg/errors"] - sumVersion = "v0.9.1" - ["github.com/pkg/errors".fetch] - type = "git" - url = "https://github.com/pkg/errors" - rev = "614d223910a179a466c1767a985424175c39b465" - sha256 = "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq" - -["github.com/pkg/profile"] - sumVersion = "v1.2.1" - ["github.com/pkg/profile".fetch] - type = "git" - url = "https://github.com/pkg/profile" - rev = "5b67d428864e92711fcbd2f8629456121a56d91f" - sha256 = "0blqmvgqvdbqmh3fp9pfdxc9w1qfshrr0zy9whj0sn372bw64qnr" - -["github.com/pkg/sftp"] - sumVersion = "v1.10.1" - ["github.com/pkg/sftp".fetch] - type = "git" - url = "https://github.com/pkg/sftp" - rev = "3edd153f213d8d4191a0ee4577c61cca19436632" - sha256 = "0iw6lijdljwh5xw5hsy0b578cr52h6vvm7hbnzlrvciwhh4sfhhp" - -["github.com/pkg/term"] - sumVersion = "v0.0.0-20180730021639-bffc007b7fd5" - ["github.com/pkg/term".fetch] - type = "git" - url = "https://github.com/pkg/term" - rev = "bffc007b7fd5a70e20e28f5b7649bb84671ef436" - sha256 = "0c9xnx7dyw7j890nm9av5fjpqjb129z7vbg3lw554vwnckc84x54" - -["github.com/pmezard/go-difflib"] - sumVersion = "v1.0.0" - ["github.com/pmezard/go-difflib".fetch] - type = "git" - url = "https://github.com/pmezard/go-difflib" - rev = "792786c7400a136282c1664665ae0a8db921c6c2" - sha256 = "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw" - -["github.com/posener/complete"] - sumVersion = "v1.2.3" - ["github.com/posener/complete".fetch] - type = "git" - url = "https://github.com/posener/complete" - rev = "05b68ffc813dd10c420993cb1cf927b346c057b8" - sha256 = "0nri6hkfb0z3dkxf2fsfidr4bxbn91rjsqhg5s0c2jplf0aclppz" - -["github.com/prometheus/client_golang"] - sumVersion = "v1.11.0" - ["github.com/prometheus/client_golang".fetch] - type = "git" - url = "https://github.com/prometheus/client_golang" - rev = "8184d76b3b0bd3b01ed903690431ccb6826bf3e0" - sha256 = "1xdspykw6wgp0bv7s1r7gklvhr5jfmi59n8bg8zhy3vi0yi902y3" - -["github.com/prometheus/client_model"] - sumVersion = "v0.2.0" - ["github.com/prometheus/client_model".fetch] - type = "git" - url = "https://github.com/prometheus/client_model" - rev = "7bc5445566f0fe75b15de23e6b93886e982d7bf9" - sha256 = "0jffnz94d6ff39fr96b5w8i8yk26pwnrfggzz8jhi8k0yihg2c9d" - -["github.com/prometheus/common"] - sumVersion = "v0.29.0" - ["github.com/prometheus/common".fetch] - type = "git" - url = "https://github.com/prometheus/common" - rev = "8281fb2779ab057c7d90fec6b24ce8eb29edcc13" - sha256 = "09zavm3005skf5mgkr2xndpcga2m3zpm4iq2r7kwyqc5q0cpq02m" - -["github.com/prometheus/procfs"] - sumVersion = "v0.6.0" - ["github.com/prometheus/procfs".fetch] - type = "git" - url = "https://github.com/prometheus/procfs" - rev = "e971af51d579a49db14657a96eebec39cefb4755" - sha256 = "0czzw37dq0sfq7rivxmxxw5hy287grqnng6q6hfz6mkqmhqgm1m6" - -["github.com/prometheus/statsd_exporter"] - sumVersion = "v0.21.0" - ["github.com/prometheus/statsd_exporter".fetch] - type = "git" - url = "https://github.com/prometheus/statsd_exporter" - rev = "ef6627b9f05350d54cd3bfea5afe36617d7eb5a4" - sha256 = "014ph8w5q6avd3kk4mvma7i6lm16h8an6cvr15w909dn90knnnp3" - -["github.com/prometheus/tsdb"] - sumVersion = "v0.10.0" - ["github.com/prometheus/tsdb".fetch] - type = "git" - url = "https://github.com/prometheus/tsdb" - rev = "7762249358193da791ec62e72b080d908f96e776" - sha256 = "1wkx1nj2z9s3wxc5w4m9a319nnqr92bmflzwf7kppx0pivajy474" - -["github.com/rakyll/statik"] - sumVersion = "v0.1.7" - ["github.com/rakyll/statik".fetch] - type = "git" - url = "https://github.com/rakyll/statik" - rev = "46bd79c4540341fe472fe71dd2ce0ccd4e635450" - sha256 = "0y0kbzma55vmyqhyrw9ssgvxn6nw7d0zg72a7nz8vp1zly4hs6va" - -["github.com/rcrowley/go-metrics"] - sumVersion = "v0.0.0-20201227073835-cf1acfcdf475" - ["github.com/rcrowley/go-metrics".fetch] - type = "git" - url = "https://github.com/rcrowley/go-metrics" - rev = "cf1acfcdf4751e0554ffa765d03e479ec491cad6" - sha256 = "0s7zab04slz07c7l4h2cqz62qnqah69r6p157vvbd7725a7wzkr0" - -["github.com/regen-network/cosmos-proto"] - sumVersion = "v0.3.1" - ["github.com/regen-network/cosmos-proto".fetch] - type = "git" - url = "https://github.com/regen-network/cosmos-proto" - rev = "f793b6157c2cfb8c1c797100e1918b2d1eb40615" - sha256 = "05sk9jhk4qz5m4vkj0wr0swhvq9niz7v7bvpxh063vz0y6mmpj05" - -["github.com/retailnext/hllpp"] - sumVersion = "v1.0.1-0.20180308014038-101a6d2f8b52" - ["github.com/retailnext/hllpp".fetch] - type = "git" - url = "https://github.com/retailnext/hllpp" - rev = "101a6d2f8b52abfc409ac188958e7e7be0116331" - sha256 = "1dyyjyrscd3d22jhh2pbn67c6nzva0v069215sjjmj313k1xzmj3" - -["github.com/rjeczalik/notify"] - sumVersion = "v0.9.2" - ["github.com/rjeczalik/notify".fetch] - type = "git" - url = "https://github.com/rjeczalik/notify" - rev = "69d839f37b13a8cb7a78366f7633a4071cb43be7" - sha256 = "0pq191pvd4icp84sg0513pf5v7xm4nmldaagjd4p8ws75l656grw" - -["github.com/rogpeppe/fastuuid"] - sumVersion = "v1.2.0" - ["github.com/rogpeppe/fastuuid".fetch] - type = "git" - url = "https://github.com/rogpeppe/fastuuid" - rev = "10c3923834d38e951ae8f627bfec2dc632c5b6cb" - sha256 = "028acdg63zkxpjz3l639nlhki2l0canr2v5jglrmwa1wpjqcfff8" - -["github.com/rogpeppe/go-internal"] - sumVersion = "v1.3.0" - ["github.com/rogpeppe/go-internal".fetch] - type = "git" - url = "https://github.com/rogpeppe/go-internal" - rev = "438578804ca6f31be148c27683afc419ce47c06e" - sha256 = "0mcdh1licgnnahwml9y2iq6xy5x9xmjw5frcnds2s3wpjyqrl216" - -["github.com/rs/cors"] - sumVersion = "v1.8.0" - ["github.com/rs/cors".fetch] - type = "git" - url = "https://github.com/rs/cors" - rev = "64821dda5aedeb954fb2caf787f7a1030085ab34" - sha256 = "07nf0lai4m5m61j6kscynqcwpj28df13g79rrdmk0g3ba3cbf9gr" - -["github.com/rs/xhandler"] - sumVersion = "v0.0.0-20160618193221-ed27b6fd6521" - ["github.com/rs/xhandler".fetch] - type = "git" - url = "https://github.com/rs/xhandler" - rev = "ed27b6fd65218132ee50cd95f38474a3d8a2cd12" - sha256 = "1fpp4rh812nvr5m0s0d5dsa1ypr4333mcijng0dp5bcgg2bqkwdz" - -["github.com/rs/xid"] - sumVersion = "v1.3.0" - ["github.com/rs/xid".fetch] - type = "git" - url = "https://github.com/rs/xid" - rev = "efa678f304ab65d6d57eedcb086798381ae22206" - sha256 = "0w2hva6ymn16yn6zrwb6nx3kxaffva95w7gj2fwg0xx39fyfslbb" - -["github.com/rs/zerolog"] - sumVersion = "v1.26.0" - ["github.com/rs/zerolog".fetch] - type = "git" - url = "https://github.com/rs/zerolog" - rev = "6973188a7402be93e3b27e318eac70d67cbbf1bd" - sha256 = "072zx4pfv8142j8560avhscq9r0s4flg2vaq09dwdq61gz6vcnwm" - -["github.com/russross/blackfriday"] - sumVersion = "v1.5.2" - ["github.com/russross/blackfriday".fetch] - type = "git" - url = "https://github.com/russross/blackfriday" - rev = "05f3235734ad95d0016f6a23902f06461fcf567a" - sha256 = "0jzbfzcywqcrnym4gxlz6nphmm1grg6wsl4f0r9x384rn83wkj7c" - -["github.com/russross/blackfriday/v2"] - sumVersion = "v2.0.1" - ["github.com/russross/blackfriday/v2".fetch] - type = "git" - url = "https://github.com/russross/blackfriday" - rev = "d3b5b032dc8e8927d31a5071b56e14c89f045135" - sha256 = "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j" - -["github.com/ryanuber/columnize"] - sumVersion = "v0.0.0-20160712163229-9b3edd62028f" - ["github.com/ryanuber/columnize".fetch] - type = "git" - url = "https://github.com/ryanuber/columnize" - rev = "9b3edd62028f107d7cabb19353292afd29311a4e" - sha256 = "1ya1idkbb0a9fjlhkcnh5a9yvpwzwfmbyg7d56lpplwr9rqi1da4" - -["github.com/sagikazarmark/crypt"] - sumVersion = "v0.1.0" - ["github.com/sagikazarmark/crypt".fetch] - type = "git" - url = "https://github.com/sagikazarmark/crypt" - rev = "85fcc6e1590a7c442fe8de402fa70a85923d877b" - sha256 = "0qwwzyjjwd7z91nqf9706clvf05n3l9j28zmxrn47y126pq4kdph" - -["github.com/samuel/go-zookeeper"] - sumVersion = "v0.0.0-20190923202752-2cc03de413da" - ["github.com/samuel/go-zookeeper".fetch] - type = "git" - url = "https://github.com/samuel/go-zookeeper" - rev = "2cc03de413da42869e2db7ce7965d3e978d917eb" - sha256 = "11z2r73q6qk9xy3mzkhdxd7cbfqsdr0105d5m03q4r47fki46hgx" - -["github.com/sasha-s/go-deadlock"] - sumVersion = "v0.2.1-0.20190427202633-1595213edefa" - ["github.com/sasha-s/go-deadlock".fetch] - type = "git" - url = "https://github.com/sasha-s/go-deadlock" - rev = "1595213edefa28ca5047b00340c63557f9c051d0" - sha256 = "06h5g16zlfnw9wvgaqp7jfav3n3pvli6asfcx1hv44sl601wnwk0" - -["github.com/sean-/seed"] - sumVersion = "v0.0.0-20170313163322-e2103e2c3529" - ["github.com/sean-/seed".fetch] - type = "git" - url = "https://github.com/sean-/seed" - rev = "e2103e2c35297fb7e17febb81e49b312087a2372" - sha256 = "0glir8jxi1w7aga2jwdb63pp1h8q4whknili7xixsqzwyy716125" - -["github.com/seccomp/libseccomp-golang"] - sumVersion = "v0.9.1" - ["github.com/seccomp/libseccomp-golang".fetch] - type = "git" - url = "https://github.com/seccomp/libseccomp-golang" - rev = "689e3c1541a84461afc49c1c87352a6cedf72e9c" - sha256 = "022c8prvxz0shrifams7lq4xidvkcqg9xi87wjjcpmbikqi72cna" - -["github.com/segmentio/fasthash"] - sumVersion = "v1.0.3" - ["github.com/segmentio/fasthash".fetch] - type = "git" - url = "https://github.com/segmentio/fasthash" - rev = "9dc1b83dc0d8bf7d26ea69d6c6d7a11ebf6fbb89" - sha256 = "0wrlviycj5hz4w576f156h2cpnnmkflfx5jfj298qzn5lymnqv86" - -["github.com/segmentio/kafka-go"] - sumVersion = "v0.2.0" - ["github.com/segmentio/kafka-go".fetch] - type = "git" - url = "https://github.com/segmentio/kafka-go" - rev = "c6db9435477f3cb658e2dd0fa93e02118c870251" - sha256 = "17zdj0i429a0wmwj8rm4j0hmxsv8kbql67s5iv78hac6rcys7bj2" - -["github.com/sergi/go-diff"] - sumVersion = "v1.0.0" - ["github.com/sergi/go-diff".fetch] - type = "git" - url = "https://github.com/sergi/go-diff" - rev = "1744e2970ca51c86172c8190fadad617561ed6e7" - sha256 = "0swiazj8wphs2zmk1qgq75xza6m19snif94h2m6fi8dqkwqdl7c7" - -["github.com/shirou/gopsutil"] - sumVersion = "v3.21.4-0.20210419000835-c7a38de76ee5+incompatible" - ["github.com/shirou/gopsutil".fetch] - type = "git" - url = "https://github.com/shirou/gopsutil" - rev = "c7a38de76ee583adf3f4aa276d834e2e753be321" - sha256 = "0x9hwcjnp68idawy1w72cl37j2cdqg6pp058d6vbr57ygr689iq2" - -["github.com/shurcooL/sanitized_anchor_name"] - sumVersion = "v1.0.0" - ["github.com/shurcooL/sanitized_anchor_name".fetch] - type = "git" - url = "https://github.com/shurcooL/sanitized_anchor_name" - rev = "7bfe4c7ecddb3666a94b053b422cdd8f5aaa3615" - sha256 = "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f" - -["github.com/sirupsen/logrus"] - sumVersion = "v1.8.1" - ["github.com/sirupsen/logrus".fetch] - type = "git" - url = "https://github.com/sirupsen/logrus" - rev = "bdc0db8ead3853c56b7cd1ac2ba4e11b47d7da6b" - sha256 = "0rvqzic2zz7fpxyizmqxwmhv1m52ii9bgxnqa6km8wsa0l08wh42" - -["github.com/smartystreets/assertions"] - sumVersion = "v0.0.0-20180927180507-b2de0cb4f26d" - ["github.com/smartystreets/assertions".fetch] - type = "git" - url = "https://github.com/smartystreets/assertions" - rev = "b2de0cb4f26d0705483a2f495d89896d0b808573" - sha256 = "1i7ldgavgl35c7gk25p7bvdr282ckng090zr4ch9mk1705akx09y" - -["github.com/smartystreets/goconvey"] - sumVersion = "v1.6.4" - ["github.com/smartystreets/goconvey".fetch] - type = "git" - url = "https://github.com/smartystreets/goconvey" - rev = "505e419363375c0dc132d3ac02632a4ee32199ca" - sha256 = "07zjxwszayal88z1j2bwnqrsa32vg8l4nivks5yfr9j8xfsw7n6m" - -["github.com/snikch/goodman"] - sumVersion = "v0.0.0-20171125024755-10e37e294daa" - ["github.com/snikch/goodman".fetch] - type = "git" - url = "https://github.com/snikch/goodman" - rev = "10e37e294daa3c9a90abded60ff9924bafab3888" - sha256 = "0n6m17lmlfsynd7ja3s3w7pgpi7zdyakqbg4ahzdq9918fwddqmp" - -["github.com/soheilhy/cmux"] - sumVersion = "v0.1.4" - ["github.com/soheilhy/cmux".fetch] - type = "git" - url = "https://github.com/soheilhy/cmux" - rev = "e09e9389d85d8492d313d73d1469c029e710623f" - sha256 = "1f736g68d9vwlyfb6g0fxkr0r875369xafk30cz8kaq5niaqwv0h" - -["github.com/sony/gobreaker"] - sumVersion = "v0.4.1" - ["github.com/sony/gobreaker".fetch] - type = "git" - url = "https://github.com/sony/gobreaker" - rev = "21dbfda1fc5e89b91bd0c835a91c31fe4d461e88" - sha256 = "0iarblm3w2d0p997jsw9bkznfj0wa8d586nh37ii5gnqy41va700" - -["github.com/spaolacci/murmur3"] - sumVersion = "v1.1.0" - ["github.com/spaolacci/murmur3".fetch] - type = "git" - url = "https://github.com/spaolacci/murmur3" - rev = "f09979ecbc725b9e6d41a297405f65e7e8804acc" - sha256 = "1lv3zyz3jy2d76bhvvs8svygx66606iygdvwy5cwc0p5z8yghq25" - -["github.com/spf13/afero"] - sumVersion = "v1.6.0" - ["github.com/spf13/afero".fetch] - type = "git" - url = "https://github.com/spf13/afero" - rev = "bc94f58beda5dbff6f74599fcb1f1717c5b1c111" - sha256 = "0yi8p0yxiidpcg4cagxg2iyqcaapsng89rak4qyxmgails2fqg37" - -["github.com/spf13/cast"] - sumVersion = "v1.4.1" - ["github.com/spf13/cast".fetch] - type = "git" - url = "https://github.com/spf13/cast" - rev = "88075729b052bca4b8b6c31bf198db2fe6c9da93" - sha256 = "06qsfpvcbgkf2pvcvf9l46fj55kmbhp2yz382fkj5gll2bykx9ld" - -["github.com/spf13/cobra"] - sumVersion = "v1.2.1" - ["github.com/spf13/cobra".fetch] - type = "git" - url = "https://github.com/spf13/cobra" - rev = "de187e874d1ca382320088f8f6d76333408e5c2e" - sha256 = "091kz3xnlsgpqb90fc5nhjr4yfr8b8sjnyl0zd4wm1fgzkpw09jh" - -["github.com/spf13/jwalterweatherman"] - sumVersion = "v1.1.0" - ["github.com/spf13/jwalterweatherman".fetch] - type = "git" - url = "https://github.com/spf13/jwalterweatherman" - rev = "94f6ae3ed3bceceafa716478c5fbf8d29ca601a1" - sha256 = "1ywmkwci5zyd88ijym6f30fj5c0k2yayxarkmnazf5ybljv50q7b" - -["github.com/spf13/pflag"] - sumVersion = "v1.0.5" - ["github.com/spf13/pflag".fetch] - type = "git" - url = "https://github.com/spf13/pflag" - rev = "2e9d26c8c37aae03e3f9d4e90b7116f5accb7cab" - sha256 = "0gpmacngd0gpslnbkzi263f5ishigzgh6pbdv9hp092rnjl4nd31" - -["github.com/spf13/viper"] - sumVersion = "v1.9.0" - ["github.com/spf13/viper".fetch] - type = "git" - url = "https://github.com/spf13/viper" - rev = "b1fdc47b0d05b6af898a3d50aefd62c5825a17fe" - sha256 = "1bg01lr30mn57cy437xcmz7dr7clgwgiaabjzzd0zxn2v11rz0wc" - -["github.com/status-im/keycard-go"] - sumVersion = "v0.0.0-20200402102358-957c09536969" - ["github.com/status-im/keycard-go".fetch] - type = "git" - url = "https://github.com/status-im/keycard-go" - rev = "957c095369694cc23ce9f2bca4acd325764860eb" - sha256 = "0ybxxlc1j1fvkk8g4wnfmh29waavdp6ykjkg7d24365sxdg5gmy9" - -["github.com/steakknife/bloomfilter"] - sumVersion = "v0.0.0-20180922174646-6819c0d2a570" - ["github.com/steakknife/bloomfilter".fetch] - type = "git" - url = "https://github.com/steakknife/bloomfilter" - rev = "6819c0d2a57025e1700378ee59b7382d71987f14" - sha256 = "1dr4pb172rwi9cxvxl23j4j8q6ybqjfzll5dd14cd398f231nk81" - -["github.com/steakknife/hamming"] - sumVersion = "v0.0.0-20180906055917-c99c65617cd3" - ["github.com/steakknife/hamming".fetch] - type = "git" - url = "https://github.com/steakknife/hamming" - rev = "c99c65617cd3d686aea8365fe563d6542f01d940" - sha256 = "03scc8fkkwpbc7p9ymlrm6wg57mzr0d6s2k2dz2gp339pllxyxjr" - -["github.com/streadway/amqp"] - sumVersion = "v0.0.0-20190827072141-edfb9018d271" - ["github.com/streadway/amqp".fetch] - type = "git" - url = "https://github.com/streadway/amqp" - rev = "edfb9018d2714e4ec54dbaba37dbfef2bdadf0e4" - sha256 = "07icg7x7saawzqb9lm9avw6bizs387xdi27zry03m6z5i1a22zq2" - -["github.com/streadway/handy"] - sumVersion = "v0.0.0-20190108123426-d5acb3125c2a" - ["github.com/streadway/handy".fetch] - type = "git" - url = "https://github.com/streadway/handy" - rev = "d5acb3125c2a6654d2d691e6851674a645333da1" - sha256 = "02jwalahfj2lh1snklh6i5hysjl9npx59q31ihdfrva10dssg30r" - -["github.com/stretchr/objx"] - sumVersion = "v0.2.0" - ["github.com/stretchr/objx".fetch] - type = "git" - url = "https://github.com/stretchr/objx" - rev = "ea4fe68685ee0d3cee7032121851b57e7494e8ea" - sha256 = "0pcdvakxgddaiwcdj73ra4da05a3q4cgwbpm2w75ycq4kzv8ij8k" - -["github.com/stretchr/testify"] - sumVersion = "v1.7.0" - ["github.com/stretchr/testify".fetch] - type = "git" - url = "https://github.com/stretchr/testify" - rev = "acba37e5db06f0093b465a7d47822bf13644b66c" - sha256 = "0ixgjsvafr3513pz3r6pmgk074s2dxkll0dadvl25gkf30rkmh10" - -["github.com/subosito/gotenv"] - sumVersion = "v1.2.0" - ["github.com/subosito/gotenv".fetch] - type = "git" - url = "https://github.com/subosito/gotenv" - rev = "2ef7124db659d49edac6aa459693a15ae36c671a" - sha256 = "0mav91j7r4arjkpq5zcf9j74f6pww8ic53x43wy7kg3ibw31yjs5" - -["github.com/syndtr/gocapability"] - sumVersion = "v0.0.0-20200815063812-42c35b437635" - ["github.com/syndtr/gocapability".fetch] - type = "git" - url = "https://github.com/syndtr/gocapability" - rev = "42c35b4376354fd554efc7ad35e0b7f94e3a0ffb" - sha256 = "00zi0k190ydlm9drnafvj9p4cf6axm858wr71pbmq1p3r94iqws4" - -["github.com/syndtr/goleveldb"] - sumVersion = "v1.0.1-0.20210819022825-2ae1ddf74ef7" - ["github.com/syndtr/goleveldb".fetch] - type = "git" - url = "https://github.com/syndtr/goleveldb" - rev = "2ae1ddf74ef7020251ff1ff0fe8daac21a157761" - sha256 = "11b4vjldnp6ws52wlqrzsy6nnn5qa2m98wiqvd90nzsh0n3bi9nz" - -["github.com/tecbot/gorocksdb"] - sumVersion = "v0.0.0-20191217155057-f0fad39f321c" - ["github.com/tecbot/gorocksdb".fetch] - type = "git" - url = "https://github.com/tecbot/gorocksdb" - rev = "f0fad39f321c61bf05fcb4a01fe259606235e712" - sha256 = "0brf99da00jf91hf7w0qqk6yj61zcya9ci7pm8d60q6zl40i87c5" - -["github.com/tendermint/btcd"] - sumVersion = "v0.1.1" - ["github.com/tendermint/btcd".fetch] - type = "git" - url = "https://github.com/tendermint/btcd" - rev = "80daadac05d1cd29571fccf27002d79667a88b58" - sha256 = "16s909z5awvqi060rdj577wzbgziyk88s53x24kv9rzc71rm99x1" - -["github.com/tendermint/crypto"] - sumVersion = "v0.0.0-20191022145703-50d29ede1e15" - ["github.com/tendermint/crypto".fetch] - type = "git" - url = "https://github.com/tendermint/crypto" - rev = "50d29ede1e15ab205c8558ad67b85596ee19d3a0" - sha256 = "0vhyxsypb2q1zpcl464hlsdpap7kc3nj6gdff53xwrln2bg1jjin" - -["github.com/tendermint/go-amino"] - sumVersion = "v0.16.0" - ["github.com/tendermint/go-amino".fetch] - type = "git" - url = "https://github.com/tendermint/go-amino" - rev = "ccb15b138dfd74282be78f5e9059387768b12918" - sha256 = "1zcms3l5fihzg8nf4vhdk18qpn1jkbm3rpkjfpskfcrgzlxk6vi5" - -["github.com/tendermint/tendermint"] - sumVersion = "v0.34.14" - ["github.com/tendermint/tendermint".fetch] - type = "git" - url = "https://github.com/tendermint/tendermint" - rev = "85870def7b628effad73af942e638bbddf2ba8fd" - sha256 = "15rrh25qdc4dvq0f125a039n08wv82ijjd0zzrr3n9d6fv028mpw" - -["github.com/tendermint/tm-db"] - sumVersion = "v0.6.4" - ["github.com/tendermint/tm-db".fetch] - type = "git" - url = "https://github.com/tendermint/tm-db" - rev = "6f9a08cd4522fb13d8df69b1694587d5015114fc" - sha256 = "1sgjf2vaq554ybc0cwkzn17cz2ibzph2rq0dgaw21c2hym09437x" - -["github.com/tharsis/ethermint"] - sumVersion = "v0.9.0" - ["github.com/tharsis/ethermint".fetch] - type = "git" - url = "https://github.com/tharsis/ethermint" - rev = "0b63b9087bc0d22ea4c4185f6b48573e089a9639" - sha256 = "0swxjm2k326z7whd35y9fnbjbphnwig26ipsgbkm6g12ab78sv7f" - -["github.com/tidwall/gjson"] - sumVersion = "v1.6.7" - ["github.com/tidwall/gjson".fetch] - type = "git" - url = "https://github.com/tidwall/gjson" - rev = "97ec619cbe9546828dc45cb856a5938dcf3d74e1" - sha256 = "1gq689xp5bqxn17hcg8kwciakr05rz84dgd8qpiy7aqdv8iqrghq" - -["github.com/tidwall/match"] - sumVersion = "v1.0.3" - ["github.com/tidwall/match".fetch] - type = "git" - url = "https://github.com/tidwall/match" - rev = "c2f534168b739a7ec1821a33839fb2f029f26bbc" - sha256 = "1haa5p7hsjqx0ijxbypgc9c31v128mykm1g0lyymvkk3qdajvcyr" - -["github.com/tidwall/pretty"] - sumVersion = "v1.0.2" - ["github.com/tidwall/pretty".fetch] - type = "git" - url = "https://github.com/tidwall/pretty" - rev = "ef453c788d6a371829f4f9967b014b2b81856df5" - sha256 = "0bfp2nqwd7w3709lsyw2iw71hgbrnhcs1nr9n4vbari408qk2rv0" - -["github.com/tidwall/sjson"] - sumVersion = "v1.1.4" - ["github.com/tidwall/sjson".fetch] - type = "git" - url = "https://github.com/tidwall/sjson" - rev = "b547b7aea4b0c9a8ed8885f0790aea039483f337" - sha256 = "0nin7n4bfjxznkkrjb4g7clprnmkdx79hgx1rjakxqp821l6s85s" - -["github.com/tinylib/msgp"] - sumVersion = "v1.0.2" - ["github.com/tinylib/msgp".fetch] - type = "git" - url = "https://github.com/tinylib/msgp" - rev = "b2b6a672cf1e5b90748f79b8b81fc8c5cf0571a1" - sha256 = "0pypfknghg1hcjjrqz3f1riaylk6hcxn9h0qyzynb74rp0qmlxjc" - -["github.com/tklauser/go-sysconf"] - sumVersion = "v0.3.7" - ["github.com/tklauser/go-sysconf".fetch] - type = "git" - url = "https://github.com/tklauser/go-sysconf" - rev = "ee6b65a65cffa83a2b81381420632959d977e790" - sha256 = "0gwf4s2bvvmk5fm0521kaz93hwjrzg6nwcjlm0fc8zan7l94f1g9" - -["github.com/tklauser/numcpus"] - sumVersion = "v0.2.3" - ["github.com/tklauser/numcpus".fetch] - type = "git" - url = "https://github.com/tklauser/numcpus" - rev = "8d45637165b3f9e97e45a2827870f0ae292b033b" - sha256 = "1b4ag1f3narkq3bw17b2zfr27ws3bcadq6z3n8zz4f0i4afsp0jh" - -["github.com/tmc/grpc-websocket-proxy"] - sumVersion = "v0.0.0-20190109142713-0ad062ec5ee5" - ["github.com/tmc/grpc-websocket-proxy".fetch] - type = "git" - url = "https://github.com/tmc/grpc-websocket-proxy" - rev = "0ad062ec5ee553a48f6dbd280b7a1b5638e8a113" - sha256 = "1anw4v9wspnw9xf2z5r9w0sszwjklyanl0l85wgg6nxak9gnrqp4" - -["github.com/tv42/httpunix"] - sumVersion = "v0.0.0-20150427012821-b75d8614f926" - ["github.com/tv42/httpunix".fetch] - type = "git" - url = "https://github.com/tv42/httpunix" - rev = "b75d8614f926c077e48d85f1f8f7885b758c6225" - sha256 = "1sd9nnyyjm7n96fa18l0shlnapld4m0yj5ij2ba0l9yaaa2byqm9" - -["github.com/tyler-smith/go-bip39"] - sumVersion = "v1.1.0" - ["github.com/tyler-smith/go-bip39".fetch] - type = "git" - url = "https://github.com/tyler-smith/go-bip39" - rev = "b3fac8469133a90ca6d313463f8a909132e06ff9" - sha256 = "0daadv14696l9zq5nny1wbg4c5m6lsmw5kdvkfqb2i5hsh35d26x" - -["github.com/ugorji/go"] - sumVersion = "v1.1.7" - ["github.com/ugorji/go".fetch] - type = "git" - url = "https://github.com/ugorji/go" - rev = "23ab95ef5dc3b70286760af84ce2327a2b64ed62" - sha256 = "068gja55kbh2iivp03x4n9dcml0rxv0k64ivkmq06si2ar1835rm" - -["github.com/ugorji/go/codec"] - sumVersion = "v1.1.7" - relPath = "codec" - ["github.com/ugorji/go/codec".fetch] - type = "git" - url = "https://github.com/ugorji/go" - rev = "23ab95ef5dc3b70286760af84ce2327a2b64ed62" - sha256 = "068gja55kbh2iivp03x4n9dcml0rxv0k64ivkmq06si2ar1835rm" - -["github.com/urfave/cli"] - sumVersion = "v1.22.1" - ["github.com/urfave/cli".fetch] - type = "git" - url = "https://github.com/urfave/cli" - rev = "c71fbcefd21552b70cd625b2c54466006e258ad7" - sha256 = "04ymak18flqlfcn8lycmg8r3931al8dvr8f1cg9n4yjaskmg72v8" - -["github.com/urfave/cli/v2"] - sumVersion = "v2.3.0" - ["github.com/urfave/cli/v2".fetch] - type = "git" - url = "https://github.com/urfave/cli" - rev = "09ac54c2f97f4249282baf266c54a09fab1bef58" - sha256 = "08pvn7gyfznni72xrxfh2x6xxa8ykr7l1ka278js8g8qkh71bj8l" - -["github.com/valyala/bytebufferpool"] - sumVersion = "v1.0.0" - ["github.com/valyala/bytebufferpool".fetch] - type = "git" - url = "https://github.com/valyala/bytebufferpool" - rev = "e746df99fe4a3986f4d4f79e13c1e0117ce9c2f7" - sha256 = "01lqzjddq6kz9v41nkky7wbgk7f1cw036sa7ldz10d82g5klzl93" - -["github.com/valyala/fasttemplate"] - sumVersion = "v1.2.1" - ["github.com/valyala/fasttemplate".fetch] - type = "git" - url = "https://github.com/valyala/fasttemplate" - rev = "2275c48ed3e40f01fa347e220be31070a89b6ad4" - sha256 = "0bd1hxxg1bzx307adpd1s4yjaa6q51cqk4qvqskfflxvgll79vdn" - -["github.com/vishvananda/netlink"] - sumVersion = "v1.1.0" - ["github.com/vishvananda/netlink".fetch] - type = "git" - url = "https://github.com/vishvananda/netlink" - rev = "f049be6f391489d3f374498fe0c8df8449258372" - sha256 = "1vhl30p1gx636a088ls4h6a0l8jjyfvz79fr5w0qzdrg4qg9h08h" - -["github.com/vishvananda/netns"] - sumVersion = "v0.0.0-20191106174202-0a2b9b5464df" - ["github.com/vishvananda/netns".fetch] - type = "git" - url = "https://github.com/vishvananda/netns" - rev = "0a2b9b5464df8343199164a0321edf3313202f7e" - sha256 = "1k1zb7pzc4r4wicq7ncspf6zsvq298lvpsq963ibj813shg657xw" - -["github.com/vmihailenco/msgpack/v5"] - sumVersion = "v5.1.4" - ["github.com/vmihailenco/msgpack/v5".fetch] - type = "git" - url = "https://github.com/vmihailenco/msgpack" - rev = "77a6f797778061f2c9c30b13418c3a2f5cb98070" - sha256 = "109nansr75fidx3r00nb4jkc14davfzb88kdf75h6jyk06b50iaa" - -["github.com/vmihailenco/tagparser"] - sumVersion = "v0.1.2" - ["github.com/vmihailenco/tagparser".fetch] - type = "git" - url = "https://github.com/vmihailenco/tagparser" - rev = "be04d19a03d0f4739671a500012335e98ebfeb9f" - sha256 = "0418gkcds57c6g6slf8kl3ya7xp14p5y42w1gqkiqp6p98nhblqh" - -["github.com/willf/bitset"] - sumVersion = "v1.1.3" - ["github.com/willf/bitset".fetch] - type = "git" - url = "https://github.com/willf/bitset" - rev = "d860f346b89450988a379d7d705e83c58d1ea227" - sha256 = "18419ip5mnblnyx2rjixad90dhjb1x2kaiidr7zk9b3qci799rh0" - -["github.com/wsddn/go-ecdh"] - sumVersion = "v0.0.0-20161211032359-48726bab9208" - ["github.com/wsddn/go-ecdh".fetch] - type = "git" - url = "https://github.com/wsddn/go-ecdh" - rev = "48726bab92085232373de4ec5c51ce7b441c63a0" - sha256 = "1rszp777snp9qvnh2giim7d42cvca5l180gq4j7clbmshnzg6c6m" - -["github.com/xiang90/probing"] - sumVersion = "v0.0.0-20190116061207-43a291ad63a2" - ["github.com/xiang90/probing".fetch] - type = "git" - url = "https://github.com/xiang90/probing" - rev = "43a291ad63a214a207fefbf03c7d9d78b703162b" - sha256 = "1z22ms16j5j42775mf31isanwx2pwr1d8wqw8006dczjv36qnz5i" - -["github.com/xlab/treeprint"] - sumVersion = "v0.0.0-20180616005107-d6fb6747feb6" - ["github.com/xlab/treeprint".fetch] - type = "git" - url = "https://github.com/xlab/treeprint" - rev = "d6fb6747feb6e7cfdc44682a024bddf87ef07ec2" - sha256 = "1ln6p8va53sxrhyy0gfanskzzc30c55l6nk1f0bin91jlr2mxn4n" - -["github.com/xordataexchange/crypt"] - sumVersion = "v0.0.3-0.20170626215501-b2862e3d0a77" - ["github.com/xordataexchange/crypt".fetch] - type = "git" - url = "https://github.com/xordataexchange/crypt" - rev = "b2862e3d0a775f18c7cfe02273500ae307b61218" - sha256 = "04q3856anpzl4gdfgmg7pbp9cx231nkz3ymq2xp27rnmmwhfxr8y" - -["github.com/ybbus/jsonrpc"] - sumVersion = "v2.1.2+incompatible" - ["github.com/ybbus/jsonrpc".fetch] - type = "git" - url = "https://github.com/ybbus/jsonrpc" - rev = "dd866631e904a5df2067d934985c5def68f391ac" - sha256 = "1k2i4q4bliqfkam4gd00729plgi6f7wa60npqpgagrlfnd4w9k4m" - -["github.com/yuin/goldmark"] - sumVersion = "v1.4.0" - ["github.com/yuin/goldmark".fetch] - type = "git" - url = "https://github.com/yuin/goldmark" - rev = "5588d92a56fe1642791cf4aa8e9eae8227cfeecd" - sha256 = "0n3xhna2rnxixjy5d7gfvgjkhddppa8hpzd8i8b68yb2l016g3qk" - -["github.com/zondax/hid"] - sumVersion = "v0.9.0" - ["github.com/zondax/hid".fetch] - type = "git" - url = "https://github.com/zondax/hid" - rev = "302fd402163c34626286195dfa9adac758334acc" - sha256 = "1wnpfn4bd86nz2v9dgb40xpz1ya66vahdkrhb1gj4jyyxdnnhqkh" - -["go.etcd.io/bbolt"] - sumVersion = "v1.3.6" - ["go.etcd.io/bbolt".fetch] - type = "git" - url = "https://github.com/etcd-io/bbolt" - rev = "685b13a4ef0053a4a38623bcebda621db6f7eaf7" - sha256 = "0pj5245d417za41j6p09fmkbv05797vykr1bi9a6rnwddh1dbs8d" - -["go.etcd.io/etcd"] - sumVersion = "v0.0.0-20191023171146-3cf2f69b5738" - ["go.etcd.io/etcd".fetch] - type = "git" - url = "https://github.com/etcd-io/etcd" - rev = "3cf2f69b5738fb702ba1a935590f36b52b18979b" - sha256 = "1w5jr8shn6whccksmpbcllcr1f8gjgh1dnix5rmnv3wwr5in5cgq" - -["go.etcd.io/etcd/api/v3"] - sumVersion = "v3.5.0" - relPath = "api" - ["go.etcd.io/etcd/api/v3".fetch] - type = "git" - url = "https://github.com/etcd-io/etcd" - rev = "946a5a6f25c3b6b89408ab447852731bde6e6289" - sha256 = "1dinf1668bkpq5lff8sr4fjd7dkxw9smm1f9zcadpdz3ci3knpzg" - -["go.etcd.io/etcd/client/pkg/v3"] - sumVersion = "v3.5.0" - relPath = "client/pkg" - ["go.etcd.io/etcd/client/pkg/v3".fetch] - type = "git" - url = "https://github.com/etcd-io/etcd" - rev = "946a5a6f25c3b6b89408ab447852731bde6e6289" - sha256 = "1dinf1668bkpq5lff8sr4fjd7dkxw9smm1f9zcadpdz3ci3knpzg" - -["go.etcd.io/etcd/client/v2"] - sumVersion = "v2.305.0" - relPath = "client" - ["go.etcd.io/etcd/client/v2".fetch] - type = "git" - url = "https://github.com/etcd-io/etcd" - rev = "946a5a6f25c3b6b89408ab447852731bde6e6289" - sha256 = "1dinf1668bkpq5lff8sr4fjd7dkxw9smm1f9zcadpdz3ci3knpzg" - -["go.opencensus.io"] - sumVersion = "v0.23.0" - ["go.opencensus.io".fetch] - type = "git" - url = "https://github.com/census-instrumentation/opencensus-go" - rev = "49838f207d61097fc0ebb8aeef306913388376ca" - sha256 = "0gw4f7inf8y2ik00yfb36xganiq9rl4w2d1a41bsjqsh83ajz2km" - -["go.uber.org/atomic"] - sumVersion = "v1.7.0" - ["go.uber.org/atomic".fetch] - type = "git" - url = "https://github.com/uber-go/atomic" - rev = "12f27ba2637fa0e13772a4f05fa46a5d18d53182" - sha256 = "0yxvb5sixh76cl9j8dpa97gznj0p8pmg2cdw0ypfwhd3ipx9wph1" - -["go.uber.org/multierr"] - sumVersion = "v1.6.0" - ["go.uber.org/multierr".fetch] - type = "git" - url = "https://github.com/uber-go/multierr" - rev = "3114a8b704d2d28dbacda34a872690aaef66aeed" - sha256 = "162941s8f6a9x2w04qm4qa3zz0zylwag9149hywrj9ibp2nzcsqz" - -["go.uber.org/tools"] - sumVersion = "v0.0.0-20190618225709-2cfd321de3ee" - ["go.uber.org/tools".fetch] - type = "git" - url = "https://github.com/uber-go/tools" - rev = "2cfd321de3ee5d5f8a5fda2521d1703478334d98" - sha256 = "0kcsg9pd3vyp5v9dz8xzd9lkpbqrlhr1rv6hg38afq6ifziw319i" - -["go.uber.org/zap"] - sumVersion = "v1.17.0" - ["go.uber.org/zap".fetch] - type = "git" - url = "https://github.com/uber-go/zap" - rev = "ebebbf3828cd267f08b11cc3f6f4a155c952b2ba" - sha256 = "14mr66h7vxirpvb12106372apw1w3ppymbf89lprxkkg03srkfy8" - -["golang.org/x/crypto"] - sumVersion = "v0.0.0-20211117183948-ae814b36b871" - ["golang.org/x/crypto".fetch] - type = "git" - url = "https://go.googlesource.com/crypto" - rev = "ae814b36b87190c757eede9bc2d32ed77df88551" - sha256 = "01d5llpsijgbgm8px6mhaknqwh8g707zc5i5744gcndr8w0649sk" - -["golang.org/x/exp"] - sumVersion = "v0.0.0-20200331195152-e8c3332aa8e5" - ["golang.org/x/exp".fetch] - type = "git" - url = "https://go.googlesource.com/exp" - rev = "e8c3332aa8e5b8e6acb4707c3a7e5979052b20aa" - sha256 = "085mbasmshl64f2d0awrf5k0iyh1aij888cp9aa12ldzp36404rw" - -["golang.org/x/image"] - sumVersion = "v0.0.0-20190802002840-cff245a6509b" - ["golang.org/x/image".fetch] - type = "git" - url = "https://go.googlesource.com/image" - rev = "cff245a6509b8c4de022d0d5b9037c503c5989d6" - sha256 = "0hiznlkiaay30acwvvyq8g6bm32r7bc6gv47pygrcxqpapasbz84" - -["golang.org/x/lint"] - sumVersion = "v0.0.0-20210508222113-6edffad5e616" - ["golang.org/x/lint".fetch] - type = "git" - url = "https://go.googlesource.com/lint" - rev = "6edffad5e6160f5949cdefc81710b2706fbcd4f6" - sha256 = "1n7lrr3282q3li4f06afms444qy13rfd316za0drqihakwyki2jk" - -["golang.org/x/mobile"] - sumVersion = "v0.0.0-20200801112145-973feb4309de" - ["golang.org/x/mobile".fetch] - type = "git" - url = "https://go.googlesource.com/mobile" - rev = "973feb4309de5c3aad0553fc987d76abf1fa58f7" - sha256 = "0jwz7jq1cqp9x6b9kpfrmw84sg7dg5v4xaa8zdbgq14gskmjx72d" - -["golang.org/x/mod"] - sumVersion = "v0.4.2" - ["golang.org/x/mod".fetch] - type = "git" - url = "https://go.googlesource.com/mod" - rev = "d6ab96f2441f9631f81862375ef66782fc4a9c12" - sha256 = "0z1p17i291z2k6va08i80ljyzyij2b6qsz78lnz0wi8zsnkfdz43" - -["golang.org/x/net"] - sumVersion = "v0.0.0-20211112202133-69e39bad7dc2" - ["golang.org/x/net".fetch] - type = "git" - url = "https://go.googlesource.com/net" - rev = "69e39bad7dc2bbb411fa35755c46020969029fa7" - sha256 = "0yvg72fb037yh4xvjyfgrr8nsbz7nfiiksvq0a5922z255anamy6" - -["golang.org/x/oauth2"] - sumVersion = "v0.0.0-20210819190943-2bc19b11175f" - ["golang.org/x/oauth2".fetch] - type = "git" - url = "https://go.googlesource.com/oauth2" - rev = "2bc19b11175fd0ae72c59c53fa45eff3f93d6a46" - sha256 = "03gam1wg1zrx0fda54vy43f93k3s75axrb5nc5zs3il0q3i13686" - -["golang.org/x/sync"] - sumVersion = "v0.0.0-20210220032951-036812b2e83c" - ["golang.org/x/sync".fetch] - type = "git" - url = "https://go.googlesource.com/sync" - rev = "036812b2e83c0ddf193dd5a34e034151da389d09" - sha256 = "1gl202py3s4gl6arkaxlf8qa6f0jyyg2f95m6f89qnfmr416h85b" - -["golang.org/x/sys"] - sumVersion = "v0.0.0-20211111213525-f221eed1c01e" - ["golang.org/x/sys".fetch] - type = "git" - url = "https://go.googlesource.com/sys" - rev = "f221eed1c01e0ccb9f05b340c5f19c8fffd228ee" - sha256 = "1dv8mwx6dsb8lbg6qgg3pw2gb001qbm8f2diyqhkhchlinh7w0z5" - -["golang.org/x/term"] - sumVersion = "v0.0.0-20201126162022-7de9c90e9dd1" - ["golang.org/x/term".fetch] - type = "git" - url = "https://go.googlesource.com/term" - rev = "7de9c90e9dd184706b838f536a1cbf40a296ddb7" - sha256 = "1ba252xmv6qsvf1w1gcy98mngrj0vd4inbjw0lsklqvva65nljna" - -["golang.org/x/text"] - sumVersion = "v0.3.7" - ["golang.org/x/text".fetch] - type = "git" - url = "https://go.googlesource.com/text" - rev = "383b2e75a7a4198c42f8f87833eefb772868a56f" - sha256 = "0xkw0qvfjyifdqd25y7nxdqkdh92inymw3q7841nricc9s01p4jy" - -["golang.org/x/time"] - sumVersion = "v0.0.0-20210220033141-f8bda1e9f3ba" - ["golang.org/x/time".fetch] - type = "git" - url = "https://go.googlesource.com/time" - rev = "f8bda1e9f3badef837c98cbaf4f7c335de90f266" - sha256 = "0d3ba0p47j9v5f7wwg29whyfwz9rv94ada5nv8f8hn7v87820xqi" - -["golang.org/x/tools"] - sumVersion = "v0.1.7" - ["golang.org/x/tools".fetch] - type = "git" - url = "https://go.googlesource.com/tools" - rev = "0df0ca0f43117120bd7cc900ebf765f9b799438a" - sha256 = "0nn8m2j5vz6p6azq2m5yn20qi0m8n5m439ihk7aabf6lc4lpx4g9" - -["golang.org/x/xerrors"] - sumVersion = "v0.0.0-20200804184101-5ec99f83aff1" - ["golang.org/x/xerrors".fetch] - type = "git" - url = "https://go.googlesource.com/xerrors" - rev = "5ec99f83aff198f5fbd629d6c8d8eb38a04218ca" - sha256 = "1dbzc3gmf2haazpv7cgmv97rq40g2xzwbglc17vas8dwhgwgwrzb" - -["gonum.org/v1/gonum"] - sumVersion = "v0.6.0" - ["gonum.org/v1/gonum".fetch] - type = "git" - url = "https://github.com/gonum/gonum" - rev = "b72f7aa23a47a7d95df7d3d5248af26c33327925" - sha256 = "1cvk8j4fk9w5visjr8mx3n3vr2z2b3m6gir7vx6sr2mfn24ndfcl" - -["gonum.org/v1/netlib"] - sumVersion = "v0.0.0-20190313105609-8cb42192e0e0" - ["gonum.org/v1/netlib".fetch] - type = "git" - url = "https://github.com/gonum/netlib" - rev = "8cb42192e0e0b08ed60c6c306a63d0b2ea460e51" - sha256 = "0p4kgkrjhjzy98qy2a64qr9s5vi4vs7mmvfq4iaqg1iccp47blmx" - -["gonum.org/v1/plot"] - sumVersion = "v0.0.0-20190515093506-e2840ee46a6b" - ["gonum.org/v1/plot".fetch] - type = "git" - url = "https://github.com/gonum/plot" - rev = "e2840ee46a6b612972d746f9fea9920d329a0605" - sha256 = "0373vn32i6cjch0kw7sncskyj9ngqj2qk5jn9529zblknz0yss50" - -["google.golang.org/api"] - sumVersion = "v0.56.0" - ["google.golang.org/api".fetch] - type = "git" - url = "https://github.com/googleapis/google-api-go-client" - rev = "4a93e84ab2255960edd90ee46e558e2f40a8be07" - sha256 = "1yphvb20c7zlcs0ijl4k4bjy70pmdsm6gv22q3n3j7dwbzyghz4g" - -["google.golang.org/appengine"] - sumVersion = "v1.6.7" - ["google.golang.org/appengine".fetch] - type = "git" - url = "https://github.com/golang/appengine" - rev = "5d1c1d03f8703c2e81478d9a30e9afa2d3e4bd8a" - sha256 = "1wkipg7xxc0ha5p6c3bj0vpgq38l18441n5l6zxdhx0gzvz5z1hs" - -["google.golang.org/genproto"] - sumVersion = "v0.0.0-20211117155847-120650a500bb" - ["google.golang.org/genproto".fetch] - type = "git" - url = "https://github.com/googleapis/go-genproto" - rev = "120650a500bb566717270935efe7766190d1276c" - sha256 = "1kc9ghyi7a7wa2cnb8jvmg2wk753w6akn06hgh901apzs2qv36l7" - -["google.golang.org/grpc"] - sumVersion = "v1.33.2" - ["google.golang.org/grpc".fetch] - type = "git" - url = "https://github.com/grpc/grpc-go" - rev = "56d63285d528c0d33f9bf8c355139d91edc047de" - sha256 = "03yz4nlf4kqbnpw48f0mvcb2f5zzy0vjd5i2iw0hrjspd0238fzk" - -["google.golang.org/grpc/cmd/protoc-gen-go-grpc"] - sumVersion = "v1.1.0" - relPath = "cmd/protoc-gen-go-grpc" - ["google.golang.org/grpc/cmd/protoc-gen-go-grpc".fetch] - type = "git" - url = "https://github.com/grpc/grpc-go" - rev = "938f6e2f7550e542bd78f3b9e8812665db109e02" - sha256 = "14rjb8j6fm07rnns3dpwgkzf3y6rmia6i9n7ns6cldc5mbf7nwi3" - -["google.golang.org/protobuf"] - sumVersion = "v1.27.1" - ["google.golang.org/protobuf".fetch] - type = "git" - url = "https://go.googlesource.com/protobuf" - rev = "b92717ecb630d4a4824b372bf98c729d87311a4d" - sha256 = "0aszb7cv8fq1m8akgd4kjyg5q7g5z9fdqnry6057ygq9r8r2yif2" - -["gopkg.in/alecthomas/kingpin.v2"] - sumVersion = "v2.2.6" - ["gopkg.in/alecthomas/kingpin.v2".fetch] - type = "git" - url = "https://gopkg.in/alecthomas/kingpin.v2" - rev = "947dcec5ba9c011838740e680966fd7087a71d0d" - sha256 = "0mndnv3hdngr3bxp7yxfd47cas4prv98sqw534mx7vp38gd88n5r" - -["gopkg.in/check.v1"] - sumVersion = "v1.0.0-20201130134442-10cb98267c6c" - ["gopkg.in/check.v1".fetch] - type = "git" - url = "https://gopkg.in/check.v1" - rev = "10cb98267c6cb43ea9cd6793f29ff4089c306974" - sha256 = "1jwxndf8rsyx0fgrp47d99rp55yzssmryb92jfj3yf7zd8rjjljn" - -["gopkg.in/cheggaaa/pb.v1"] - sumVersion = "v1.0.25" - ["gopkg.in/cheggaaa/pb.v1".fetch] - type = "git" - url = "https://gopkg.in/cheggaaa/pb.v1" - rev = "2af8bbdea9e99e83b3ac400d8f6b6d1b8cbbf338" - sha256 = "0vxqiw6f3xyv0zy3g4lksf8za0z8i0hvfpw92hqimsy84f79j3dp" - -["gopkg.in/errgo.v2"] - sumVersion = "v2.1.0" - ["gopkg.in/errgo.v2".fetch] - type = "git" - url = "https://gopkg.in/errgo.v2" - rev = "f768c5ab0476c50e978b039312180859c10fe8c0" - sha256 = "065mbihiy7q67wnql0bzl9y1kkvck5ivra68254zbih52jxwrgr2" - -["gopkg.in/fsnotify.v1"] - sumVersion = "v1.4.7" - ["gopkg.in/fsnotify.v1".fetch] - type = "git" - url = "https://gopkg.in/fsnotify.v1" - rev = "c2828203cd70a50dcccfb2761f8b1f8ceef9a8e9" - sha256 = "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g" - -["gopkg.in/gcfg.v1"] - sumVersion = "v1.2.3" - ["gopkg.in/gcfg.v1".fetch] - type = "git" - url = "https://gopkg.in/gcfg.v1" - rev = "61b2c08bc8f6068f7c5ca684372f9a6cb1c45ebe" - sha256 = "165f9wincwnkblp8x6m1f4ch4m8k4gvy5v4x4gqdpmf59kqv5y7s" - -["gopkg.in/go-playground/assert.v1"] - sumVersion = "v1.2.1" - ["gopkg.in/go-playground/assert.v1".fetch] - type = "git" - url = "https://gopkg.in/go-playground/assert.v1" - rev = "4f4dfbc7d1c48336cf93399deae81aa9067e88af" - sha256 = "1h4amgykpa0djwi619llr3g55p75ia0mi184h9s5zdl8l4rhn9pm" - -["gopkg.in/go-playground/validator.v9"] - sumVersion = "v9.29.1" - ["gopkg.in/go-playground/validator.v9".fetch] - type = "git" - url = "https://gopkg.in/go-playground/validator.v9" - rev = "556b9da3c05f2a935bc086fb5a0bb55dd8112d2d" - sha256 = "1nhh4v5ja23wgpfyqlfbly5jzpag478wxw0p1bjawp4vr9bc7gdb" - -["gopkg.in/ini.v1"] - sumVersion = "v1.63.2" - ["gopkg.in/ini.v1".fetch] - type = "git" - url = "https://gopkg.in/ini.v1" - rev = "14e9811b1643cf01ea36277e44dffef4f119fa31" - sha256 = "0s35274ibybg1nidwb65jyc3gkkbs91s7rv5jdg73x6sbd73q6wr" - -["gopkg.in/natefinch/npipe.v2"] - sumVersion = "v2.0.0-20160621034901-c1b8fa8bdcce" - ["gopkg.in/natefinch/npipe.v2".fetch] - type = "git" - url = "https://gopkg.in/natefinch/npipe.v2" - rev = "c1b8fa8bdccecb0b8db834ee0b92fdbcfa606dd6" - sha256 = "1qplrvhks05pay169d9lph3hl7apdam4vj1kx3yzik7cphx6b24f" - -["gopkg.in/olebedev/go-duktape.v3"] - sumVersion = "v3.0.0-20200619000410-60c24ae608a6" - ["gopkg.in/olebedev/go-duktape.v3".fetch] - type = "git" - url = "https://gopkg.in/olebedev/go-duktape.v3" - rev = "60c24ae608a642bf894bed9eb53627d2384bedca" - sha256 = "13qirm5nqk6isv9n0wdi18k9wc8h1d7n6zwflhziwix7ghnr7a1q" - -["gopkg.in/resty.v1"] - sumVersion = "v1.12.0" - ["gopkg.in/resty.v1".fetch] - type = "git" - url = "https://gopkg.in/resty.v1" - rev = "fa5875c0caa5c260ab78acec5a244215a730247f" - sha256 = "062mn735rqzhha5ag07z4gz08hxzrfm2yx067jfmaaxmb6797lmp" - -["gopkg.in/tomb.v1"] - sumVersion = "v1.0.0-20141024135613-dd632973f1e7" - ["gopkg.in/tomb.v1".fetch] - type = "git" - url = "https://gopkg.in/tomb.v1" - rev = "dd632973f1e7218eb1089048e0798ec9ae7dceb8" - sha256 = "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv" - -["gopkg.in/urfave/cli.v1"] - sumVersion = "v1.20.0" - ["gopkg.in/urfave/cli.v1".fetch] - type = "git" - url = "https://gopkg.in/urfave/cli.v1" - rev = "cfb38830724cc34fedffe9a2a29fb54fa9169cd1" - sha256 = "0y6f4sbzkiiwrxbl15biivj8c7qwxnvm3zl2dd3mw4wzg4x10ygj" - -["gopkg.in/warnings.v0"] - sumVersion = "v0.1.2" - ["gopkg.in/warnings.v0".fetch] - type = "git" - url = "https://gopkg.in/warnings.v0" - rev = "ec4a0fea49c7b46c2aeb0b51aac55779c607e52b" - sha256 = "1kzj50jn708cingn7a13c2wdlzs6qv89dr2h4zj8d09647vlnd81" - -["gopkg.in/yaml.v2"] - sumVersion = "v2.4.0" - ["gopkg.in/yaml.v2".fetch] - type = "git" - url = "https://gopkg.in/yaml.v2" - rev = "7649d4548cb53a614db133b2a8ac1f31859dda8c" - sha256 = "1pbmrpj7gcws34g8vwna4i2nhm9p6235piww36436xhyaa10cldr" - -["gopkg.in/yaml.v3"] - sumVersion = "v3.0.0-20210107192922-496545a6307b" - ["gopkg.in/yaml.v3".fetch] - type = "git" - url = "https://gopkg.in/yaml.v3" - rev = "496545a6307b2a7d7a710fd516e5e16e8ab62dbc" - sha256 = "06f4lnrp494wqaygv09dggr2dwf3z2bawqhnlnnwiamg5y787k4g" - -["gotest.tools"] - sumVersion = "v2.2.0+incompatible" - ["gotest.tools".fetch] - type = "git" - url = "https://github.com/gotestyourself/gotest.tools" - rev = "7c797b5133e5460410dbb22ba779bf35e6975dea" - sha256 = "0yif3gdyckmf8i54jq0xn00kflla5rhib9sarw66ngnbl7bn9kyl" - -["honnef.co/go/tools"] - sumVersion = "v0.1.3" - ["honnef.co/go/tools".fetch] - type = "git" - url = "https://github.com/dominikh/go-tools" - rev = "5a1275af4f46a845a0ec1e8b2b6539bdb991f63a" - sha256 = "17li8jbw3cpn59kpcl3j3r2an4wkx3fc81xn0j4xgbjpkxh9493n" - -["nhooyr.io/websocket"] - sumVersion = "v1.8.7" - ["nhooyr.io/websocket".fetch] - type = "git" - url = "https://github.com/nhooyr/websocket" - rev = "3604edcb857415cb2c1213d63328cdcd738f2328" - sha256 = "11bz96vh0nkw6f8kczzcs07ixdhjy8s7bl398j0cf1hh40zxvass" - -["rsc.io/binaryregexp"] - sumVersion = "v0.2.0" - ["rsc.io/binaryregexp".fetch] - type = "git" - url = "https://github.com/rsc/binaryregexp" - rev = "857b9542aaa89cfa42a1477b43fa1f24192fe921" - sha256 = "1kar0myy85waw418zslviwx8846zj0m9cmqkxjx0fvgjdi70nc4b" - -["rsc.io/pdf"] - sumVersion = "v0.1.1" - ["rsc.io/pdf".fetch] - type = "git" - url = "https://github.com/rsc/pdf" - rev = "48d040297cebccc9e8dc43927e1b8036ecd33bfe" - sha256 = "01qjjwa8nn5a2jzd360xqg5zc8s0i2fpwcn2w2g6y2jgn9wl8x84" - -["rsc.io/quote/v3"] - sumVersion = "v3.1.0" - relPath = "v3" - ["rsc.io/quote/v3".fetch] - type = "git" - url = "https://github.com/rsc/quote" - rev = "0406d7298882187f4c75f75fa85cc808a64bcef1" - sha256 = "0nvv97hwwrl1mx5gzsbdm1ndnwpg3m7i2jb10ig9wily7zmvki0i" - -["rsc.io/sampler"] - sumVersion = "v1.3.0" - ["rsc.io/sampler".fetch] - type = "git" - url = "https://github.com/rsc/sampler" - rev = "0cc034b51e57ed7832d4c67d526f75a900996e5c" - sha256 = "0byxk2ynba50py805kcvbvjzh59l1r308i1xgyzpw6lff4xx9xjh" - -["sigs.k8s.io/yaml"] - sumVersion = "v1.1.0" - ["sigs.k8s.io/yaml".fetch] - type = "git" - url = "https://github.com/kubernetes-sigs/yaml" - rev = "fd68e9863619f6ec2fdd8625fe1f02e7c877e480" - sha256 = "1p7hvjdr5jsyk7nys1g1pmgnf3ys6n320i6hds85afppk81k01kb" - -["sourcegraph.com/sourcegraph/appdash"] - sumVersion = "v0.0.0-20190731080439-ebfcffb1b5c0" - ["sourcegraph.com/sourcegraph/appdash".fetch] - type = "git" - url = "https://github.com/sourcegraph/appdash" - rev = "ebfcffb1b5c00031ce797183546746715a3cfe87" - sha256 = "1xlff68pa7jchg1xr2nkrkk94mrd0ba2z38968j7swlfyf8rkk3d" diff --git a/resources/evmos/last-synced.narHash b/resources/evmos/last-synced.narHash deleted file mode 100644 index 83a2811d..00000000 --- a/resources/evmos/last-synced.narHash +++ /dev/null @@ -1 +0,0 @@ -sha256-Vh+E88PVQJQLj2elXnc7hfuOAgohot8w/yVgeH+MSbY= diff --git a/resources/gaia/default.nix b/resources/gaia/default.nix new file mode 100644 index 00000000..33fa8eb6 --- /dev/null +++ b/resources/gaia/default.nix @@ -0,0 +1,51 @@ +{ pkgs, gaia4-src, gaia5-src, gaia6-src }: +let + parser = import ../goModParser.nix; +in +builtins.mapAttrs + ( + _: { version, src, ledgerSupport, vendorSha256 }: + let + go-mod = parser (builtins.readFile "${src}/go.mod"); + tendermint-version = go-mod.require."github.com/tendermint/tendermint".version; + in + pkgs.buildGoModule { + inherit version src vendorSha256; + pname = "gaia"; + preCheck = '' + export HOME="$(mktemp -d)" + ''; + buildFlags = "-tags netgo" + pkgs.lib.optionalString ledgerSupport ",ledger"; + buildFlagsArray = '' + -ldflags= + -X github.com/cosmos/cosmos-sdk/version.Name=gaia + -X github.com/cosmos/cosmos-sdk/version.AppName=gaiad + -X github.com/cosmos/cosmos-sdk/version.Version=${version} + -X github.com/cosmos/cosmos-sdk/version.Commit=${src.rev} + -X github.com/tendermint/tendermint/version.TMCoreSemVer=${tendermint-version} + ''; + } + ) +{ + gaia4 = { + vendorSha256 = "sha256-e8/xrLwzZ4/B2Rr/+e8n6iAm6PQxcEynL9wLYD3jKY4="; + version = "v4.2.1"; + src = gaia4-src; + ledgerSupport = false; + }; + + gaia5 = { + vendorSha256 = "sha256-V0DMuwKeCYpVlzF9g3cQD6YViJZQZeoszxbUqrUyQn4="; + version = "v5.0.6"; + src = gaia5-src; + ledgerSupport = false; + }; + + gaia6 = { + vendorSha256 = "sha256-CNxWgIWf+8wB2CAUk+WadnIb3fi1UYftPea5sWtk/Rs="; + version = "v6.0.2"; + src = gaia6-src; + ledgerSupport = false; + }; +} + diff --git a/resources/gaia4/default.nix b/resources/gaia4/default.nix deleted file mode 100644 index 4e86eff0..00000000 --- a/resources/gaia4/default.nix +++ /dev/null @@ -1,24 +0,0 @@ -{ pkgs, gaia4-src, ledgerSupport ? false }: -let - pname = "gaia"; - version = "v4.2.1"; - tendermint-version = (fromTOML (builtins.readFile ./go-modules.toml))."github.com/tendermint/tendermint".sumVersion; -in -pkgs.buildGoApplication { - inherit pname version; - src = "${gaia4-src}"; - modules = ./go-modules.toml; - preCheck = '' - export HOME="$(mktemp -d)" - ''; - buildFlags = "-tags netgo" + pkgs.lib.optionalString ledgerSupport ",ledger"; - buildFlagsArray = '' - -ldflags= - -X github.com/cosmos/cosmos-sdk/version.Name=${pname} - -X github.com/cosmos/cosmos-sdk/version.AppName=gaiad - -X github.com/cosmos/cosmos-sdk/version.Version=${version} - -X github.com/cosmos/cosmos-sdk/version.Commit=${gaia4-src.rev} - -X github.com/tendermint/tendermint/version.TMCoreSemVer=${tendermint-version} - ''; -} - diff --git a/resources/gaia4/go-modules.toml b/resources/gaia4/go-modules.toml deleted file mode 100644 index 32948e93..00000000 --- a/resources/gaia4/go-modules.toml +++ /dev/null @@ -1,2630 +0,0 @@ -["cloud.google.com/go"] - sumVersion = "v0.46.3" - ["cloud.google.com/go".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "264def2dd949cdb8a803bb9f50fa29a67b798a6a" - sha256 = "102r2hhr93lcjn97svi382zmng8kp9vkl5kpw3xhd7zv17n42625" - -["cloud.google.com/go/bigquery"] - sumVersion = "v1.0.1" - relPath = "bigquery" - ["cloud.google.com/go/bigquery".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "63c28c0124777c34a3bca5876d3c0965ac730d3b" - sha256 = "1gnvs0q96l37z0ypw426b590jsihn459scdzb0g8vr2c8lwkcrmh" - -["cloud.google.com/go/datastore"] - sumVersion = "v1.0.0" - relPath = "datastore" - ["cloud.google.com/go/datastore".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "c5d562bdb35850f11d6a275d85ab8535265e9821" - sha256 = "0d7ikvbyasifhbxgc2gw97zqc27ihi9a22wdywh5gw2cwjwpw5gi" - -["cloud.google.com/go/firestore"] - sumVersion = "v1.1.0" - relPath = "firestore" - ["cloud.google.com/go/firestore".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "20091f47d3c522ea545f358dd9ac1cdb326bba6f" - sha256 = "0slvm0vx5f8l2vs4k9k8jv8qnz6z9dzq25xmrhza82cj9j51ghvb" - -["cloud.google.com/go/pubsub"] - sumVersion = "v1.0.1" - relPath = "pubsub" - ["cloud.google.com/go/pubsub".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "5e5fbac2c404f4b86d847ebbd8ba7ce457acbaaa" - sha256 = "0vgnys9rl0yicq4mjb1rg199zqfb3sax1ay6jbbyhnm7l36il3nv" - -["cloud.google.com/go/storage"] - sumVersion = "v1.0.0" - relPath = "storage" - ["cloud.google.com/go/storage".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "264def2dd949cdb8a803bb9f50fa29a67b798a6a" - sha256 = "102r2hhr93lcjn97svi382zmng8kp9vkl5kpw3xhd7zv17n42625" - -["dmitri.shuralyov.com/gpu/mtl"] - sumVersion = "v0.0.0-20190408044501-666a987793e9" - ["dmitri.shuralyov.com/gpu/mtl".fetch] - type = "git" - url = "https://dmitri.shuralyov.com/gpu/mtl" - rev = "666a987793e9432fbb48592aa2f3bf3463685dfa" - sha256 = "1isd03hgiwcf2ld1rlp0plrnfz7r4i7c5q4kb6hkcd22axnmrv0z" - -["github.com/99designs/keyring"] - sumVersion = "v1.1.6" - ["github.com/99designs/keyring".fetch] - type = "git" - url = "https://github.com/99designs/keyring" - rev = "68286ee5140ad1c5cce93fcc054e6cc90015b0ea" - sha256 = "08rcdqpxaa9n348q10fw40q4gxpjajkyrighykk71i7mxzwkcgwn" - -["github.com/BurntSushi/toml"] - sumVersion = "v0.3.1" - ["github.com/BurntSushi/toml".fetch] - type = "git" - url = "https://github.com/BurntSushi/toml" - rev = "3012a1dbe2e4bd1391d42b32f0577cb7bbc7f005" - sha256 = "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6" - -["github.com/BurntSushi/xgb"] - sumVersion = "v0.0.0-20160522181843-27f122750802" - ["github.com/BurntSushi/xgb".fetch] - type = "git" - url = "https://github.com/BurntSushi/xgb" - rev = "27f122750802c950b2c869a5b63dafcf590ced95" - sha256 = "18lp2x8f5bljvlz0r7xn744f0c9rywjsb9ifiszqqdcpwhsa0kvj" - -["github.com/ChainSafe/go-schnorrkel"] - sumVersion = "v0.0.0-20200405005733-88cbf1b4c40d" - ["github.com/ChainSafe/go-schnorrkel".fetch] - type = "git" - url = "https://github.com/ChainSafe/go-schnorrkel" - rev = "88cbf1b4c40de64a5ea4863476c6c8ae5433c594" - sha256 = "09ncxdzy4scwmgj96lq83a40bb29nkws1y9x0nim86l9x5jmgi4b" - -["github.com/DataDog/datadog-go"] - sumVersion = "v3.2.0+incompatible" - ["github.com/DataDog/datadog-go".fetch] - type = "git" - url = "https://github.com/DataDog/datadog-go" - rev = "8bfdc335936a79b55b3e2c1080930bc5a3eb57f2" - sha256 = "1m8anll166rwcprjyv3bb0l450p35m0gzn6fs7bcd3ck2s527k7x" - -["github.com/DataDog/zstd"] - sumVersion = "v1.4.5" - ["github.com/DataDog/zstd".fetch] - type = "git" - url = "https://github.com/DataDog/zstd" - rev = "0e71ac6221c995a831bb393da70730c3d3a07091" - sha256 = "0xhgh7nzxq3lzba7w7v3w5mb4nb799v5xh5ylml0hk21ricm7g9s" - -["github.com/Knetic/govaluate"] - sumVersion = "v3.0.1-0.20171022003610-9aa49832a739+incompatible" - ["github.com/Knetic/govaluate".fetch] - type = "git" - url = "https://github.com/Knetic/govaluate" - rev = "9aa49832a739dcd78a5542ff189fb82c3e423116" - sha256 = "12klijhq4fckzbhv0cwygbazj6lvhmdqksha9y6jgfmwzv51kwv5" - -["github.com/OneOfOne/xxhash"] - sumVersion = "v1.2.2" - ["github.com/OneOfOne/xxhash".fetch] - type = "git" - url = "https://github.com/OneOfOne/xxhash" - rev = "6def279d2ce6c81a79dd1c1be580f03bb216fb8a" - sha256 = "1mjfhrwhvxa48rycjnqpqzm521i38h1hdyz6pdwmhd7xb8j6gwi6" - -["github.com/Shopify/sarama"] - sumVersion = "v1.19.0" - ["github.com/Shopify/sarama".fetch] - type = "git" - url = "https://github.com/Shopify/sarama" - rev = "ec843464b50d4c8b56403ec9d589cf41ea30e722" - sha256 = "0q1z3pvcd011yprwzws2s293v4cjvsszhai6vnfrahjcbsz79q0z" - -["github.com/Shopify/toxiproxy"] - sumVersion = "v2.1.4+incompatible" - ["github.com/Shopify/toxiproxy".fetch] - type = "git" - url = "https://github.com/Shopify/toxiproxy" - rev = "49b4ea27da29ae83ad3bfe7f7f090d18cbee1dc3" - sha256 = "07yhsvscdv1qjfc2fyyh9qsrrdwrrw04wadk5gaq4qddcway7vig" - -["github.com/VividCortex/gohistogram"] - sumVersion = "v1.0.0" - ["github.com/VividCortex/gohistogram".fetch] - type = "git" - url = "https://github.com/VividCortex/gohistogram" - rev = "51564d9861991fb0ad0f531c99ef602d0f9866e6" - sha256 = "1ykpvrkri3mzc0z77kdva93ylh0bqg7jq3i024r3iv0i6bwx3rnf" - -["github.com/Workiva/go-datastructures"] - sumVersion = "v1.0.52" - ["github.com/Workiva/go-datastructures".fetch] - type = "git" - url = "https://github.com/Workiva/go-datastructures" - rev = "0819bcaf26091e7c33585441f8961854c2400faa" - sha256 = "0qsj9r3md4n9nxmlvg6cgysivm4ay905ivbk5vi5csnykwnamqmk" - -["github.com/aead/siphash"] - sumVersion = "v1.0.1" - ["github.com/aead/siphash".fetch] - type = "git" - url = "https://github.com/aead/siphash" - rev = "83563a290f60225eb120d724600b9690c3fb536f" - sha256 = "01kd1z82sc4nh3nj9c25aryyp396s7jrqc2kz9d7qq1vy2hdbznc" - -["github.com/afex/hystrix-go"] - sumVersion = "v0.0.0-20180502004556-fa1af6a1f4f5" - ["github.com/afex/hystrix-go".fetch] - type = "git" - url = "https://github.com/afex/hystrix-go" - rev = "fa1af6a1f4f56e0e50d427fe901cd604d8c6fb8a" - sha256 = "0zlj0330j816flvwvis4d4vv1gigpxlghph7awbc9jb7ggf2qssn" - -["github.com/alecthomas/template"] - sumVersion = "v0.0.0-20190718012654-fb15b899a751" - ["github.com/alecthomas/template".fetch] - type = "git" - url = "https://github.com/alecthomas/template" - rev = "fb15b899a75114aa79cc930e33c46b577cc664b1" - sha256 = "1vlasv4dgycydh5wx6jdcvz40zdv90zz1h7836z7lhsi2ymvii26" - -["github.com/alecthomas/units"] - sumVersion = "v0.0.0-20190924025748-f65c72e2690d" - ["github.com/alecthomas/units".fetch] - type = "git" - url = "https://github.com/alecthomas/units" - rev = "f65c72e2690dc4b403c8bd637baf4611cd4c069b" - sha256 = "04jyqm7m3m01ppfy1f9xk4qvrwvs78q9zml6llyf2b3v5k6b2bbc" - -["github.com/antihax/optional"] - sumVersion = "v1.0.0" - ["github.com/antihax/optional".fetch] - type = "git" - url = "https://github.com/antihax/optional" - rev = "c3f0ba9c1a592b971d66b2787679af55b5c58f21" - sha256 = "1ix08vl49qxr58rc6201cl97g1yznhhkwvqldslawind99js4rj0" - -["github.com/apache/thrift"] - sumVersion = "v0.13.0" - ["github.com/apache/thrift".fetch] - type = "git" - url = "https://github.com/apache/thrift" - rev = "cecee50308fc7e6f77f55b3fd906c1c6c471fa2f" - sha256 = "17ckl7p7s3ga33yrjisilsimp80ansqxl54wvpkv0j7vx2zvc13y" - -["github.com/armon/circbuf"] - sumVersion = "v0.0.0-20150827004946-bbbad097214e" - ["github.com/armon/circbuf".fetch] - type = "git" - url = "https://github.com/armon/circbuf" - rev = "bbbad097214e2918d8543d5201d12bfd7bca254d" - sha256 = "1idpr0lzb2px2p3wgfq2276yl7jpaz43df6n91kf790404s4zmk3" - -["github.com/armon/consul-api"] - sumVersion = "v0.0.0-20180202201655-eb2c6b5be1b6" - ["github.com/armon/consul-api".fetch] - type = "git" - url = "https://github.com/armon/consul-api" - rev = "eb2c6b5be1b66bab83016e0b05f01b8d5496ffbd" - sha256 = "1j6fdr1sg36qy4n4xjl7brq739fpm5npq98cmvklzjc9qrx98nk9" - -["github.com/armon/go-metrics"] - sumVersion = "v0.3.6" - ["github.com/armon/go-metrics".fetch] - type = "git" - url = "https://github.com/armon/go-metrics" - rev = "8ca742bd545671bedae063d0672cb3c8da7d4437" - sha256 = "06840krwz2qip0xplixza59s7a1ibvjy04iwcnk5mw2w1kmli9yn" - -["github.com/armon/go-radix"] - sumVersion = "v0.0.0-20180808171621-7fddfc383310" - ["github.com/armon/go-radix".fetch] - type = "git" - url = "https://github.com/armon/go-radix" - rev = "7fddfc383310abc091d79a27f116d30cf0424032" - sha256 = "0y8chspn14n9xpsfb9gxnnf819rfpriaz64v81p7873a42kkhxb4" - -["github.com/aryann/difflib"] - sumVersion = "v0.0.0-20170710044230-e206f873d14a" - ["github.com/aryann/difflib".fetch] - type = "git" - url = "https://github.com/aryann/difflib" - rev = "e206f873d14a916d3d26c40ab667bca123f365a3" - sha256 = "00zb9sx6l6b2zq614x45zlyshl20zjhwfj8r5krw4f9y0mx3n2dm" - -["github.com/aws/aws-lambda-go"] - sumVersion = "v1.13.3" - ["github.com/aws/aws-lambda-go".fetch] - type = "git" - url = "https://github.com/aws/aws-lambda-go" - rev = "b5b7267d297de263cc5b61f8c37543daa9c95ffd" - sha256 = "049zq6gr9xdjjsxd3yimawqlh2ibfkj2434cnjm4x93ph62hppm9" - -["github.com/aws/aws-sdk-go"] - sumVersion = "v1.27.0" - ["github.com/aws/aws-sdk-go".fetch] - type = "git" - url = "https://github.com/aws/aws-sdk-go" - rev = "a1e6946e8014a793d989e64ef5566315010ce898" - sha256 = "1b2lkbvlbgkas1l7cilnanr4mc0z2l28ii5bpsrcp3azn6wdjfpx" - -["github.com/aws/aws-sdk-go-v2"] - sumVersion = "v0.18.0" - ["github.com/aws/aws-sdk-go-v2".fetch] - type = "git" - url = "https://github.com/aws/aws-sdk-go-v2" - rev = "b0e297c21991cec8a5d645714ea400caa790cb43" - sha256 = "00nrd8bs80w5k0ms31gqjpnl2mf0jav4hr8m54w8a7l13w5szy7s" - -["github.com/beorn7/perks"] - sumVersion = "v1.0.1" - ["github.com/beorn7/perks".fetch] - type = "git" - url = "https://github.com/beorn7/perks" - rev = "37c8de3658fcb183f997c4e13e8337516ab753e6" - sha256 = "17n4yygjxa6p499dj3yaqzfww2g7528165cl13haj97hlx94dgl7" - -["github.com/bgentry/speakeasy"] - sumVersion = "v0.1.0" - ["github.com/bgentry/speakeasy".fetch] - type = "git" - url = "https://github.com/bgentry/speakeasy" - rev = "4aabc24848ce5fd31929f7d1e4ea74d3709c14cd" - sha256 = "02dfrj0wyphd3db9zn2mixqxwiz1ivnyc5xc7gkz58l5l27nzp8s" - -["github.com/bketelsen/crypt"] - sumVersion = "v0.0.3-0.20200106085610-5cbc8cc4026c" - ["github.com/bketelsen/crypt".fetch] - type = "git" - url = "https://github.com/bketelsen/crypt" - rev = "5cbc8cc4026c0c1d3bf9c5d4e5a30398f99c99a9" - sha256 = "006772d50c73llgz8chvynndk28qxcyr1fd18sm0b5w1g1rdw2wp" - -["github.com/btcsuite/btcd"] - sumVersion = "v0.21.0-beta" - ["github.com/btcsuite/btcd".fetch] - type = "git" - url = "https://github.com/btcsuite/btcd" - rev = "56cc42fe07c206e76812fc57a216b59c41189f04" - sha256 = "19n9qfbnqfzz6j0pi2yzgzm4yvvqdkj5d4jhfv7sznv9jzzxwk7k" - -["github.com/btcsuite/btclog"] - sumVersion = "v0.0.0-20170628155309-84c8d2346e9f" - ["github.com/btcsuite/btclog".fetch] - type = "git" - url = "https://github.com/btcsuite/btclog" - rev = "84c8d2346e9fc8c7b947e243b9c24e6df9fd206a" - sha256 = "02dl46wcnfpg9sqvg0ipipkpnd7lrf4fnvb9zy56jqa7mfcwc7wk" - -["github.com/btcsuite/btcutil"] - sumVersion = "v1.0.2" - ["github.com/btcsuite/btcutil".fetch] - type = "git" - url = "https://github.com/btcsuite/btcutil" - rev = "b2bf7f89d674a3702182b7e15f52807896051af3" - sha256 = "0wwykb4cbq8xj2mls2mxma5vaahdgdy3vqw1r2fi4wyj0yr4kyw9" - -["github.com/btcsuite/go-socks"] - sumVersion = "v0.0.0-20170105172521-4720035b7bfd" - ["github.com/btcsuite/go-socks".fetch] - type = "git" - url = "https://github.com/btcsuite/go-socks" - rev = "4720035b7bfd2a9bb130b1c184f8bbe41b6f0d0f" - sha256 = "18cv2icj059lq4s99p6yh91hlas5f2gi3f1p4c10sjgwrs933d7b" - -["github.com/btcsuite/goleveldb"] - sumVersion = "v1.0.0" - ["github.com/btcsuite/goleveldb".fetch] - type = "git" - url = "https://github.com/btcsuite/goleveldb" - rev = "3fd0373267b6461dbefe91cef614278064d05465" - sha256 = "0kwllw5yflpn362xbsqphbm10qcy08v3zqs15zbyp4mkjjk0bl9z" - -["github.com/btcsuite/snappy-go"] - sumVersion = "v1.0.0" - ["github.com/btcsuite/snappy-go".fetch] - type = "git" - url = "https://github.com/btcsuite/snappy-go" - rev = "b3db38edf0a9a11a115eb6b022d8c946024a9ac0" - sha256 = "0b2536a58l6advb0ag9ywz7i5cdzclvmm3x796jydv1yrbj5x2vk" - -["github.com/btcsuite/websocket"] - sumVersion = "v0.0.0-20150119174127-31079b680792" - ["github.com/btcsuite/websocket".fetch] - type = "git" - url = "https://github.com/btcsuite/websocket" - rev = "31079b6807923eb23992c421b114992b95131b55" - sha256 = "0xpkf257ml6fpfdgv7hxxc41n0d5yxxm3njm50qpzp7j71l9cjwa" - -["github.com/btcsuite/winsvc"] - sumVersion = "v1.0.0" - ["github.com/btcsuite/winsvc".fetch] - type = "git" - url = "https://github.com/btcsuite/winsvc" - rev = "f8fb11f83f7e860e3769a08e6811d1b399a43722" - sha256 = "0nsw8y86a5hzr2a3j6ch9myrpccj5bnsgaxpgajhzfk5d31xlw1z" - -["github.com/casbin/casbin/v2"] - sumVersion = "v2.1.2" - ["github.com/casbin/casbin/v2".fetch] - type = "git" - url = "https://github.com/casbin/casbin" - rev = "31a4cf3e119fdace8f02263315e83ca37a3fcc18" - sha256 = "175y7v4wlr26g23k551676zq3n3cxv8wjm3zsfhyxy3liikg7899" - -["github.com/cenkalti/backoff"] - sumVersion = "v2.2.1+incompatible" - ["github.com/cenkalti/backoff".fetch] - type = "git" - url = "https://github.com/cenkalti/backoff" - rev = "5267b6dd4d2666b980a911bf235efa276222cbe2" - sha256 = "1mf4lsl3rbb8kk42x0mrhzzy4ikqy0jf6nxpzhkr02rdgwh6rjk8" - -["github.com/census-instrumentation/opencensus-proto"] - sumVersion = "v0.2.1" - ["github.com/census-instrumentation/opencensus-proto".fetch] - type = "git" - url = "https://github.com/census-instrumentation/opencensus-proto" - rev = "d89fa54de508111353cb0b06403c00569be780d8" - sha256 = "19fcx3sc99i5dsklny6r073z5j20vlwn2xqm6di1q3b1xwchzqfj" - -["github.com/cespare/xxhash"] - sumVersion = "v1.1.0" - ["github.com/cespare/xxhash".fetch] - type = "git" - url = "https://github.com/cespare/xxhash" - rev = "569f7c8abf1f58d9043ab804d364483cb1c853b6" - sha256 = "1qyzlcdcayavfazvi03izx83fvip8h36kis44zr2sg7xf6sx6l4x" - -["github.com/cespare/xxhash/v2"] - sumVersion = "v2.1.1" - ["github.com/cespare/xxhash/v2".fetch] - type = "git" - url = "https://github.com/cespare/xxhash" - rev = "d7df74196a9e781ede915320c11c378c1b2f3a1f" - sha256 = "0rl5rs8546zj1vzggv38w93wx0b5dvav7yy5hzxa8kw7iikv1cgr" - -["github.com/circonus-labs/circonus-gometrics"] - sumVersion = "v2.3.1+incompatible" - ["github.com/circonus-labs/circonus-gometrics".fetch] - type = "git" - url = "https://github.com/circonus-labs/circonus-gometrics" - rev = "9eb673b3d5f6bf1c932ae7596831eefb0c0c3c2f" - sha256 = "0s2wir711h0k2h8xsypgpzshccnx8jkwjfni7n32l7wd8yng9ngs" - -["github.com/circonus-labs/circonusllhist"] - sumVersion = "v0.1.3" - ["github.com/circonus-labs/circonusllhist".fetch] - type = "git" - url = "https://github.com/circonus-labs/circonusllhist" - rev = "87d4d00b35adeefe4911ece727838749e0fab113" - sha256 = "127js92p5gx84vfj3vdmf7nn6dmqmkrxg927z0jh91fdkipmmv3i" - -["github.com/clbanning/x2j"] - sumVersion = "v0.0.0-20191024224557-825249438eec" - ["github.com/clbanning/x2j".fetch] - type = "git" - url = "https://github.com/clbanning/x2j" - rev = "825249438eec392bc87b980fb635b336e496a888" - sha256 = "1khqy1m22vnyw0x24i4bwd37zvgzj25q139mh79bddj1rw5hf7hy" - -["github.com/cncf/udpa/go"] - sumVersion = "v0.0.0-20191209042840-269d4d468f6f" - relPath = "go" - ["github.com/cncf/udpa/go".fetch] - type = "git" - url = "https://github.com/cncf/udpa" - rev = "269d4d468f6f798d803d140c3016ed6fc6b735c5" - sha256 = "0i1jiaw2k3hlwwmg4hap81vb4s1p25xp9kdfww37v0fbgjariccs" - -["github.com/cockroachdb/datadriven"] - sumVersion = "v0.0.0-20190809214429-80d97fb3cbaa" - ["github.com/cockroachdb/datadriven".fetch] - type = "git" - url = "https://github.com/cockroachdb/datadriven" - rev = "80d97fb3cbaa752564320702f409fdb2ef3da0ef" - sha256 = "0rvavka9zhri6r50n8fy98247fl5vycb1hffjrhshsicjv1frmlp" - -["github.com/codahale/hdrhistogram"] - sumVersion = "v0.0.0-20161010025455-3a0bb77429bd" - ["github.com/codahale/hdrhistogram".fetch] - type = "git" - url = "https://github.com/codahale/hdrhistogram" - rev = "3a0bb77429bd3a61596f5e8a3172445844342120" - sha256 = "1zampgfjbxy192cbwdi7g86l1idxaam96d834wncnpfdwgh5kl57" - -["github.com/confio/ics23/go"] - sumVersion = "v0.6.3" - relPath = "go" - ["github.com/confio/ics23/go".fetch] - type = "git" - url = "https://github.com/confio/ics23" - rev = "f173e6211efbf546bf9fcdc5cc29e5e055151666" - sha256 = "1zf30jzr9ill906pkp6kgnlh5hw3mk4m5vd1jpi7rinr5baaddnd" - -["github.com/coreos/bbolt"] - sumVersion = "v1.3.2" - ["github.com/coreos/bbolt".fetch] - type = "git" - url = "https://github.com/coreos/bbolt" - rev = "63597a96ec0ad9e6d43c3fc81e809909e0237461" - sha256 = "13d5l6p6c5wvkr6vn9hkhz9c593qifn7fgx0hg4d6jcvg1y0bnm2" - -["github.com/coreos/etcd"] - sumVersion = "v3.3.13+incompatible" - ["github.com/coreos/etcd".fetch] - type = "git" - url = "https://github.com/coreos/etcd" - rev = "98d308426819d892e149fe45f6fd542464cb1f9d" - sha256 = "1kac4qfr83f2hdz35403f1ald05wc85vvhw79vxb431n61jvyaqy" - -["github.com/coreos/go-etcd"] - sumVersion = "v2.0.0+incompatible" - ["github.com/coreos/go-etcd".fetch] - type = "git" - url = "https://github.com/coreos/go-etcd" - rev = "f02171fbd43c7b9b53ce8679b03235a1ef3c7b12" - sha256 = "1xb34hzaa1lkbq5vkzy9vcz6gqwj7hp6cdbvyack2bf28dwn33jj" - -["github.com/coreos/go-semver"] - sumVersion = "v0.3.0" - ["github.com/coreos/go-semver".fetch] - type = "git" - url = "https://github.com/coreos/go-semver" - rev = "e214231b295a8ea9479f11b70b35d5acf3556d9b" - sha256 = "0770h1mpig2j5sbiha3abnwaw8p6dg9i87r8pc7cf6m4kwml3sc9" - -["github.com/coreos/go-systemd"] - sumVersion = "v0.0.0-20190321100706-95778dfbb74e" - ["github.com/coreos/go-systemd".fetch] - type = "git" - url = "https://github.com/coreos/go-systemd" - rev = "95778dfbb74eb7e4dbaf43bf7d71809650ef8076" - sha256 = "1s3bg9p78wkixn2bqb2p23wbsqfg949ml6crw2b498s71mwh8rcf" - -["github.com/coreos/pkg"] - sumVersion = "v0.0.0-20180928190104-399ea9e2e55f" - ["github.com/coreos/pkg".fetch] - type = "git" - url = "https://github.com/coreos/pkg" - rev = "399ea9e2e55f791b6e3d920860dbecb99c3692f0" - sha256 = "0nxbn0m7lr4dg0yrwnvlkfiyg3ndv8vdpssjx7b714nivpc6ar0y" - -["github.com/cosmos/cosmos-sdk"] - sumVersion = "v0.42.4" - ["github.com/cosmos/cosmos-sdk".fetch] - type = "git" - url = "https://github.com/cosmos/cosmos-sdk" - rev = "c4864e9f85011b3e971885ea995a0021c01a885d" - sha256 = "130kqrg8iz3g3jxp179k5rshgxm966nfz272k4ac9jhgzdhyhy7w" - -["github.com/cosmos/go-bip39"] - sumVersion = "v1.0.0" - ["github.com/cosmos/go-bip39".fetch] - type = "git" - url = "https://github.com/cosmos/go-bip39" - rev = "3027fe585f89a39da9b7389bd4e3482e056f6d3f" - sha256 = "0q063bsalxffq41l3f6xlr50xa2985liw6y5niiwnjysdc5rlva2" - -["github.com/cosmos/iavl"] - sumVersion = "v0.15.3" - ["github.com/cosmos/iavl".fetch] - type = "git" - url = "https://github.com/cosmos/iavl" - rev = "257e8b9292e784aef5b755d9f8fd305eb1e29bb0" - sha256 = "0r4ysz3fm7y79zwmrvajkq5w1zzcd4b4fzd28wacahvfz1vqwy6s" - -["github.com/cosmos/ledger-cosmos-go"] - sumVersion = "v0.11.1" - ["github.com/cosmos/ledger-cosmos-go".fetch] - type = "git" - url = "https://github.com/cosmos/ledger-cosmos-go" - rev = "c03f491cbf1740e5ec7919683019c2c84d9fbc10" - sha256 = "0c584nig16mz1i5w1pp741q1ymb1ln70kvxkv3l62rkdymbbwn6a" - -["github.com/cosmos/ledger-go"] - sumVersion = "v0.9.2" - ["github.com/cosmos/ledger-go".fetch] - type = "git" - url = "https://github.com/cosmos/ledger-go" - rev = "1c99b41f1877b58e3517ef93012cc76fe5cd335b" - sha256 = "10vnj13c8diq3bxvf2m46s8ifj4fj1iwsw5hg7i1h55h1v83x0ni" - -["github.com/cpuguy83/go-md2man"] - sumVersion = "v1.0.10" - ["github.com/cpuguy83/go-md2man".fetch] - type = "git" - url = "https://github.com/cpuguy83/go-md2man" - rev = "7762f7e404f8416dfa1d9bb6a8c192aa9acb4d19" - sha256 = "1bqkf2bvy1dns9zd24k81mh2p1zxsx2nhq5cj8dz2vgkv1xkh60i" - -["github.com/cpuguy83/go-md2man/v2"] - sumVersion = "v2.0.0" - ["github.com/cpuguy83/go-md2man/v2".fetch] - type = "git" - url = "https://github.com/cpuguy83/go-md2man" - rev = "f79a8a8ca69da163eee19ab442bedad7a35bba5a" - sha256 = "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv" - -["github.com/creack/pty"] - sumVersion = "v1.1.7" - ["github.com/creack/pty".fetch] - type = "git" - url = "https://github.com/creack/pty" - rev = "2769f65a3a94eb8f876f44a0459d24ae7ad2e488" - sha256 = "1plwwlk1i9b80zv8zdplvv81shfyc9gf0flydnydsh5sr3ib5vrc" - -["github.com/danieljoos/wincred"] - sumVersion = "v1.0.2" - ["github.com/danieljoos/wincred".fetch] - type = "git" - url = "https://github.com/danieljoos/wincred" - rev = "b892d337201d1400370ebf4fa919941c9ea222ee" - sha256 = "1ym8mygjrf3rw1qka9irw76b2yisr2l5pq2w581s40yldnbfq4lc" - -["github.com/davecgh/go-spew"] - sumVersion = "v1.1.1" - ["github.com/davecgh/go-spew".fetch] - type = "git" - url = "https://github.com/davecgh/go-spew" - rev = "8991bc29aa16c548c550c7ff78260e27b9ab7c73" - sha256 = "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y" - -["github.com/decred/dcrd/lru"] - sumVersion = "v1.0.0" - relPath = "lru" - ["github.com/decred/dcrd/lru".fetch] - type = "git" - url = "https://github.com/decred/dcrd" - rev = "5c3e0d6454001c8d14fcf06be94381d93991aaea" - sha256 = "0m2mxrkbnr4dfan9ljxq9dd5hhqmpx5n9pd4hnwn5mlj4zgv018a" - -["github.com/dgraph-io/badger/v2"] - sumVersion = "v2.2007.2" - ["github.com/dgraph-io/badger/v2".fetch] - type = "git" - url = "https://github.com/dgraph-io/badger" - rev = "d5a25b83fbf4f3f61ff03a9202e36f5b75544426" - sha256 = "0cck8ap61bi56dv070cirkkl6fjavz05kwyxjv08lbfykhlpz3da" - -["github.com/dgraph-io/ristretto"] - sumVersion = "v0.0.3" - ["github.com/dgraph-io/ristretto".fetch] - type = "git" - url = "https://github.com/dgraph-io/ristretto" - rev = "bcb54d096f2303ce80960e125b5991ac4d6325c3" - sha256 = "1v29j6b0r87pf5dwsxi3rxa8yavkl3h79i63rbddfd42p2jyssyg" - -["github.com/dgrijalva/jwt-go"] - sumVersion = "v3.2.0+incompatible" - ["github.com/dgrijalva/jwt-go".fetch] - type = "git" - url = "https://github.com/dgrijalva/jwt-go" - rev = "06ea1031745cb8b3dab3f6a236daf2b0aa468b7e" - sha256 = "08m27vlms74pfy5z79w67f9lk9zkx6a9jd68k3c4msxy75ry36mp" - -["github.com/dgryski/go-farm"] - sumVersion = "v0.0.0-20200201041132-a6ae2369ad13" - ["github.com/dgryski/go-farm".fetch] - type = "git" - url = "https://github.com/dgryski/go-farm" - rev = "a6ae2369ad13dc757768086f0cb902728c7e03e5" - sha256 = "1qbz4a4fv3853ix974x02q1129kc4xxf0c92ib5sdpsq04zjbqv8" - -["github.com/dgryski/go-sip13"] - sumVersion = "v0.0.0-20181026042036-e10d5fee7954" - ["github.com/dgryski/go-sip13".fetch] - type = "git" - url = "https://github.com/dgryski/go-sip13" - rev = "e10d5fee79544bd84105c9329adcc7b745fd588c" - sha256 = "15fyibfas209ljz3f7g07kdmfbl3hhyd9n5n7aq5n5p9m5mn41d6" - -["github.com/dustin/go-humanize"] - sumVersion = "v1.0.0" - ["github.com/dustin/go-humanize".fetch] - type = "git" - url = "https://github.com/dustin/go-humanize" - rev = "9f541cc9db5d55bce703bd99987c9d5cb8eea45e" - sha256 = "1kqf1kavdyvjk7f8kx62pnm7fbypn9z1vbf8v2qdh3y7z7a0cbl3" - -["github.com/dvsekhvalnov/jose2go"] - sumVersion = "v0.0.0-20200901110807-248326c1351b" - ["github.com/dvsekhvalnov/jose2go".fetch] - type = "git" - url = "https://github.com/dvsekhvalnov/jose2go" - rev = "248326c1351b716b2820b01a49d53837bfd9ac59" - sha256 = "06zj4n96pa5lnx8pxjhn3vis01fjklhsdqbcbqdv9m4kc7qip27s" - -["github.com/eapache/go-resiliency"] - sumVersion = "v1.1.0" - ["github.com/eapache/go-resiliency".fetch] - type = "git" - url = "https://github.com/eapache/go-resiliency" - rev = "ea41b0fad31007accc7f806884dcdf3da98b79ce" - sha256 = "1zmgw3c4w5r6m2r340n4jc5l5ll3m3nbszqrmrgbqc2xixxyk2gx" - -["github.com/eapache/go-xerial-snappy"] - sumVersion = "v0.0.0-20180814174437-776d5712da21" - ["github.com/eapache/go-xerial-snappy".fetch] - type = "git" - url = "https://github.com/eapache/go-xerial-snappy" - rev = "776d5712da21bc4762676d614db1d8a64f4238b0" - sha256 = "0ncc41dv7xwb1znyzmzh7cvs6j5fzz0f1n8h1v3grl9ma6s1si9d" - -["github.com/eapache/queue"] - sumVersion = "v1.1.0" - ["github.com/eapache/queue".fetch] - type = "git" - url = "https://github.com/eapache/queue" - rev = "44cc805cf13205b55f69e14bcb69867d1ae92f98" - sha256 = "07dp54n94gn3gsvdcki56yqh7py7wqqigxbamhxwgbr05n61fqyg" - -["github.com/edsrzf/mmap-go"] - sumVersion = "v1.0.0" - ["github.com/edsrzf/mmap-go".fetch] - type = "git" - url = "https://github.com/edsrzf/mmap-go" - rev = "188cc3b666ba704534fa4f96e9e61f21f1e1ba7c" - sha256 = "0ajmkk5cj6xmbngx3nhar7672i2vrkwpnbv1f26i5p4f5aydhl4k" - -["github.com/enigmampc/btcutil"] - sumVersion = "v1.0.3-0.20200723161021-e2fb6adb2a25" - ["github.com/enigmampc/btcutil".fetch] - type = "git" - url = "https://github.com/enigmampc/btcutil" - rev = "e2fb6adb2a25f868283c4f243c873ad6b4894974" - sha256 = "0r2gf20acxnrcrch57hvgg8qp8ic96w6bx0j080cfya04xib3dxv" - -["github.com/envoyproxy/go-control-plane"] - sumVersion = "v0.9.4" - ["github.com/envoyproxy/go-control-plane".fetch] - type = "git" - url = "https://github.com/envoyproxy/go-control-plane" - rev = "ba8e577f987f6676343cac84525b92ed1b2d86fe" - sha256 = "0m0crzx70lp7vz13v20wxb1fcfdnzp7h3mkh3bn6a8mbfz6w5asj" - -["github.com/envoyproxy/protoc-gen-validate"] - sumVersion = "v0.1.0" - ["github.com/envoyproxy/protoc-gen-validate".fetch] - type = "git" - url = "https://github.com/envoyproxy/protoc-gen-validate" - rev = "9eff07ddfcb4001aa1aab280648153f46e1a8ddc" - sha256 = "0kxd3wwh3xwqk0r684hsy281xq4y71cd11d4q2hspcjbnlbwh7cy" - -["github.com/facebookgo/ensure"] - sumVersion = "v0.0.0-20160127193407-b4ab57deab51" - ["github.com/facebookgo/ensure".fetch] - type = "git" - url = "https://github.com/facebookgo/ensure" - rev = "b4ab57deab51ee655ae4bd85281f0715a068016d" - sha256 = "19icavc3sg0mdz8151q3vp2vn3ipq53mnb9h9n57w32amyyszl4d" - -["github.com/facebookgo/stack"] - sumVersion = "v0.0.0-20160209184415-751773369052" - ["github.com/facebookgo/stack".fetch] - type = "git" - url = "https://github.com/facebookgo/stack" - rev = "751773369052141c013c6e827a71e8f35c07879c" - sha256 = "07yr05mz7h007ldpij90zjflwgixp148sbyrdlh1fj5bikr4p8m3" - -["github.com/facebookgo/subset"] - sumVersion = "v0.0.0-20150612182917-8dac2c3c4870" - ["github.com/facebookgo/subset".fetch] - type = "git" - url = "https://github.com/facebookgo/subset" - rev = "8dac2c3c48703541e481feddf22975953d4ff842" - sha256 = "0kyc2m5wxjzj4fwspybgn1mgjzhbdfnadpwy9mrw1s05bh21rgai" - -["github.com/fatih/color"] - sumVersion = "v1.7.0" - ["github.com/fatih/color".fetch] - type = "git" - url = "https://github.com/fatih/color" - rev = "5b77d2a35fb0ede96d138fc9a99f5c9b6aef11b4" - sha256 = "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv" - -["github.com/felixge/httpsnoop"] - sumVersion = "v1.0.1" - ["github.com/felixge/httpsnoop".fetch] - type = "git" - url = "https://github.com/felixge/httpsnoop" - rev = "33ec42cfe005395fb4cc4b296781f65d7ffef2c3" - sha256 = "0ncd8lar5zxiwjhsp315s4hsl4bhnm271h49jhyxc66r5yffgmac" - -["github.com/fortytw2/leaktest"] - sumVersion = "v1.3.0" - ["github.com/fortytw2/leaktest".fetch] - type = "git" - url = "https://github.com/fortytw2/leaktest" - rev = "9a23578d06a26ec1b47bfc8965bf5e7011df8bd6" - sha256 = "0487zghyxqzk6zdbhd2j074pcc2l15l4sfg5clrjqwfbql7519wx" - -["github.com/franela/goblin"] - sumVersion = "v0.0.0-20200105215937-c9ffbefa60db" - ["github.com/franela/goblin".fetch] - type = "git" - url = "https://github.com/franela/goblin" - rev = "c9ffbefa60dbcc40777294734ec3664f35a8c838" - sha256 = "0qdhg6i4bcf6inmzq2dbdv0r0c7clw1vd3n2zs4896ig0aws6vff" - -["github.com/franela/goreq"] - sumVersion = "v0.0.0-20171204163338-bcd34c9993f8" - ["github.com/franela/goreq".fetch] - type = "git" - url = "https://github.com/franela/goreq" - rev = "bcd34c9993f899273c74baaa95e15386cd97b6e7" - sha256 = "055a20nc5f1blk2swiwpwqpxd3z495ms1qr6a7cbbss1w3a7a7sb" - -["github.com/fsnotify/fsnotify"] - sumVersion = "v1.4.9" - ["github.com/fsnotify/fsnotify".fetch] - type = "git" - url = "https://github.com/fsnotify/fsnotify" - rev = "45d7d09e39ef4ac08d493309fa031790c15bfe8a" - sha256 = "1i1r72knpbfwwql9frn9bqc3nhfc2ai5m6qllcyr6wban62lr40x" - -["github.com/ghodss/yaml"] - sumVersion = "v1.0.0" - ["github.com/ghodss/yaml".fetch] - type = "git" - url = "https://github.com/ghodss/yaml" - rev = "0ca9ea5df5451ffdf184b4428c902747c2c11cd7" - sha256 = "0skwmimpy7hlh7pva2slpcplnm912rp3igs98xnqmn859kwa5v8g" - -["github.com/go-gl/glfw"] - sumVersion = "v0.0.0-20190409004039-e6da0acd62b1" - ["github.com/go-gl/glfw".fetch] - type = "git" - url = "https://github.com/go-gl/glfw" - rev = "e6da0acd62b1b57ee2799d4d0a76a7d4514dc5bc" - sha256 = "0prvx5r7q8yrhqvnwibv4xz3dayjbq36yajzqvh0z4lqsh4hyhch" - -["github.com/go-gl/glfw/v3.3/glfw"] - sumVersion = "v0.0.0-20200222043503-6f7a984d4dc4" - relPath = "v3.3/glfw" - ["github.com/go-gl/glfw/v3.3/glfw".fetch] - type = "git" - url = "https://github.com/go-gl/glfw" - rev = "6f7a984d4dc470c3f197229ad1991ae9e211bba2" - sha256 = "1nyv7h08qf4dp8w9pmcnrc6vv9bkwj8fil6pz0mkbss5hf4i8xcq" - -["github.com/go-kit/kit"] - sumVersion = "v0.10.0" - ["github.com/go-kit/kit".fetch] - type = "git" - url = "https://github.com/go-kit/kit" - rev = "cc938d52e0cdf4c811ab203f428fcd06f9d9a148" - sha256 = "1cqlrjf90b5pg6sj4nh0qz5wplnsjmcdgrvs6wfdjy5p71f17msa" - -["github.com/go-logfmt/logfmt"] - sumVersion = "v0.5.0" - ["github.com/go-logfmt/logfmt".fetch] - type = "git" - url = "https://github.com/go-logfmt/logfmt" - rev = "3be5f6aae7db841d31dc5e1b3bb7b4cff19200b3" - sha256 = "0mcvgimnf6a15hhpmmv42kzbsn618f0zi2j3np49xkq1113d7yyj" - -["github.com/go-sql-driver/mysql"] - sumVersion = "v1.4.0" - ["github.com/go-sql-driver/mysql".fetch] - type = "git" - url = "https://github.com/go-sql-driver/mysql" - rev = "d523deb1b23d913de5bdada721a6071e71283618" - sha256 = "1jwz2j3vd5hlzmnkh20d4276yd8cxy7pac3x3dfi52jkm82ms99n" - -["github.com/go-stack/stack"] - sumVersion = "v1.8.0" - ["github.com/go-stack/stack".fetch] - type = "git" - url = "https://github.com/go-stack/stack" - rev = "2fee6af1a9795aafbe0253a0cfbdf668e1fb8a9a" - sha256 = "0wk25751ryyvxclyp8jdk5c3ar0cmfr8lrjb66qbg4808x66b96v" - -["github.com/godbus/dbus"] - sumVersion = "v0.0.0-20190726142602-4481cbc300e2" - ["github.com/godbus/dbus".fetch] - type = "git" - url = "https://github.com/godbus/dbus" - rev = "4481cbc300e2df0c0b3cecc18b6c16c6c0bb885d" - sha256 = "0h0cl1r136g0kxbw3i7ggb9mhavpi1yr7d7312iwhkxm93dxkphg" - -["github.com/gogo/gateway"] - sumVersion = "v1.1.0" - ["github.com/gogo/gateway".fetch] - type = "git" - url = "https://github.com/gogo/gateway" - rev = "817b4cf527e834d7d563b7329355c45801d5e02d" - sha256 = "1jj7vr3sdk7yz8jl1kzv8473pkhd388f95byc8pdwrh6y7fh0xrq" - -["github.com/gogo/protobuf"] - sumVersion = "v1.3.3-alpha.regen.1" - vendorPath = "github.com/regen-network/protobuf" - ["github.com/gogo/protobuf".fetch] - type = "git" - url = "https://github.com/regen-network/protobuf" - rev = "8a70ddfdaf94e68497f7b26a6896ad75e03b6616" - sha256 = "0jmhiv9gq0a6brs9p8dk9phafs62yggyhlav07cqwakcq70ss6r2" - -["github.com/golang/glog"] - sumVersion = "v0.0.0-20160126235308-23def4e6c14b" - ["github.com/golang/glog".fetch] - type = "git" - url = "https://github.com/golang/glog" - rev = "23def4e6c14b4da8ac2ed8007337bc5eb5007998" - sha256 = "0jb2834rw5sykfr937fxi8hxi2zy80sj2bdn9b3jb4b26ksqng30" - -["github.com/golang/groupcache"] - sumVersion = "v0.0.0-20190702054246-869f871628b6" - ["github.com/golang/groupcache".fetch] - type = "git" - url = "https://github.com/golang/groupcache" - rev = "869f871628b6baa9cfbc11732cdf6546b17c1298" - sha256 = "0r4nk8129bvx50qb4xzjaay39b2h6k7cbdqqzdlanmc82ygczsbw" - -["github.com/golang/mock"] - sumVersion = "v1.4.4" - ["github.com/golang/mock".fetch] - type = "git" - url = "https://github.com/golang/mock" - rev = "f7b1909c82a8958747e5c87c6a5c3b2eaed8a33d" - sha256 = "1lj0dvd6div4jaq1s0afpwqaq9ah8cxhkq93wii2ably1xmp2l0a" - -["github.com/golang/protobuf"] - sumVersion = "v1.4.3" - ["github.com/golang/protobuf".fetch] - type = "git" - url = "https://github.com/golang/protobuf" - rev = "4846b58453b3708320bdb524f25cc5a1d9cda4d4" - sha256 = "1kf1d7xmyjvy0z6j5czp6nqyvj9zrk6liv6znif08927xqfrzyln" - -["github.com/golang/snappy"] - sumVersion = "v0.0.2" - ["github.com/golang/snappy".fetch] - type = "git" - url = "https://github.com/golang/snappy" - rev = "196ae77b8a26000fa30caa8b2b541e09674dbc43" - sha256 = "0mxjak9nxzknxrc8qh3hj0q57a2x8r9h7bm39yc1pw8xfbygmzww" - -["github.com/google/btree"] - sumVersion = "v1.0.0" - ["github.com/google/btree".fetch] - type = "git" - url = "https://github.com/google/btree" - rev = "4030bb1f1f0c35b30ca7009e9ebd06849dd45306" - sha256 = "0ba430m9fbnagacp57krgidsyrgp3ycw5r7dj71brgp5r52g82p6" - -["github.com/google/go-cmp"] - sumVersion = "v0.5.0" - ["github.com/google/go-cmp".fetch] - type = "git" - url = "https://github.com/google/go-cmp" - rev = "77ae86f624cb174e21763cffcbbf070eb06cb016" - sha256 = "04pzp583p6b32y34c6jygfxarff9qjs39rarvfh6467z24sdd9k4" - -["github.com/google/gofuzz"] - sumVersion = "v1.0.0" - ["github.com/google/gofuzz".fetch] - type = "git" - url = "https://github.com/google/gofuzz" - rev = "f140a6486e521aad38f5917de355cbf147cc0496" - sha256 = "0qz439qvccm91w0mmjz4fqgx48clxdwagkvvx89cr43q1d4iry36" - -["github.com/google/martian"] - sumVersion = "v2.1.0+incompatible" - ["github.com/google/martian".fetch] - type = "git" - url = "https://github.com/google/martian" - rev = "195b986b4b6d4c513582cf4d2b8c4fd7e2494f7e" - sha256 = "197hil6vrjk50b9wvwyzf61csid83whsjj6ik8mc9r2lryxlyyrp" - -["github.com/google/orderedcode"] - sumVersion = "v0.0.1" - ["github.com/google/orderedcode".fetch] - type = "git" - url = "https://github.com/google/orderedcode" - rev = "9a3d15e0d5340bb1ba5db4071afd931e18b6e013" - sha256 = "0sdqfjji2skc1f7fbv9krbrb0cgfz43ksrld333hllgdidi33c9a" - -["github.com/google/pprof"] - sumVersion = "v0.0.0-20190515194954-54271f7e092f" - ["github.com/google/pprof".fetch] - type = "git" - url = "https://github.com/google/pprof" - rev = "54271f7e092ff31b10b7626fee166cbc6304e350" - sha256 = "14x4ydifz23rzaylggvwbm3dwlv1bc6s0bclmkxck9nbjbqw89vy" - -["github.com/google/renameio"] - sumVersion = "v0.1.0" - ["github.com/google/renameio".fetch] - type = "git" - url = "https://github.com/google/renameio" - rev = "f0e32980c006571efd537032e5f9cd8c1a92819e" - sha256 = "1ki2x5a9nrj17sn092d6n4zr29lfg5ydv4xz5cp58z6cw8ip43jx" - -["github.com/google/uuid"] - sumVersion = "v1.1.2" - ["github.com/google/uuid".fetch] - type = "git" - url = "https://github.com/google/uuid" - rev = "0e4e31197428a347842d152773b4cace4645ca25" - sha256 = "1rbpfa0v0ly9sdnixcxhf79swki54ikgm1zkwwkj64p1ws66syqd" - -["github.com/googleapis/gax-go/v2"] - sumVersion = "v2.0.5" - relPath = "v2" - ["github.com/googleapis/gax-go/v2".fetch] - type = "git" - url = "https://github.com/googleapis/gax-go" - rev = "bd5b16380fd03dc758d11cef74ba2e3bc8b0e8c2" - sha256 = "1lxawwngv6miaqd25s3ba0didfzylbwisd2nz7r4gmbmin6jsjrx" - -["github.com/gopherjs/gopherjs"] - sumVersion = "v0.0.0-20181017120253-0766667cb4d1" - ["github.com/gopherjs/gopherjs".fetch] - type = "git" - url = "https://github.com/gopherjs/gopherjs" - rev = "0766667cb4d1cfb8d5fde1fe210ae41ead3cf589" - sha256 = "13pfc9sxiwjky2lm1xb3i3lcisn8p6mgjk2d927l7r92ysph8dmw" - -["github.com/gorilla/context"] - sumVersion = "v1.1.1" - ["github.com/gorilla/context".fetch] - type = "git" - url = "https://github.com/gorilla/context" - rev = "08b5f424b9271eedf6f9f0ce86cb9396ed337a42" - sha256 = "03p4hn87vcmfih0p9w663qbx9lpsf7i7j3lc7yl7n84la3yz63m4" - -["github.com/gorilla/handlers"] - sumVersion = "v1.5.1" - ["github.com/gorilla/handlers".fetch] - type = "git" - url = "https://github.com/gorilla/handlers" - rev = "d453effd20e6817a8acfd9d278dadd21371da0ba" - sha256 = "15gycdz9lkjnsvvichsbdf25vf6pi1sfn41khhz53iqf300l0w0s" - -["github.com/gorilla/mux"] - sumVersion = "v1.8.0" - ["github.com/gorilla/mux".fetch] - type = "git" - url = "https://github.com/gorilla/mux" - rev = "98cb6bf42e086f6af920b965c38cacc07402d51b" - sha256 = "18f0q9qxgq1yh4ji07mqhiydfcwvi56z9d775v7dc7yckj33kpdk" - -["github.com/gorilla/websocket"] - sumVersion = "v1.4.2" - ["github.com/gorilla/websocket".fetch] - type = "git" - url = "https://github.com/gorilla/websocket" - rev = "b65e62901fc1c0d968042419e74789f6af455eb9" - sha256 = "0mkm9w6kjkrlzab5wh8p4qxkc0icqawjbvr01d2nk6ykylrln40s" - -["github.com/grpc-ecosystem/go-grpc-middleware"] - sumVersion = "v1.2.2" - ["github.com/grpc-ecosystem/go-grpc-middleware".fetch] - type = "git" - url = "https://github.com/grpc-ecosystem/go-grpc-middleware" - rev = "46f2eb369b917e60df91057c4d37847d17e5a9a4" - sha256 = "089cbns0s1l6j4a6x793z1llllqqk628w11zv3lrfizbk075rn3n" - -["github.com/grpc-ecosystem/go-grpc-prometheus"] - sumVersion = "v1.2.0" - ["github.com/grpc-ecosystem/go-grpc-prometheus".fetch] - type = "git" - url = "https://github.com/grpc-ecosystem/go-grpc-prometheus" - rev = "c225b8c3b01faf2899099b768856a9e916e5087b" - sha256 = "1lzk54h7np32b3acidg1ggbn8ppbnns0m71gcg9d1qkkdh8zrijl" - -["github.com/grpc-ecosystem/grpc-gateway"] - sumVersion = "v1.16.0" - ["github.com/grpc-ecosystem/grpc-gateway".fetch] - type = "git" - url = "https://github.com/grpc-ecosystem/grpc-gateway" - rev = "094a6fe78b3ca888297d090185cdf30f0e42e157" - sha256 = "0dzq1qbgzz2c6vnh8anx0j3py34sd72p35x6s2wrl001q68am5cc" - -["github.com/gsterjov/go-libsecret"] - sumVersion = "v0.0.0-20161001094733-a6f4afe4910c" - ["github.com/gsterjov/go-libsecret".fetch] - type = "git" - url = "https://github.com/gsterjov/go-libsecret" - rev = "a6f4afe4910cad8688db3e0e9b9ac92ad22d54e1" - sha256 = "09zaiadnll83vs22ib89agg7anj0blw5fywvmckxllsgif6ak6v7" - -["github.com/gtank/merlin"] - sumVersion = "v0.1.1" - ["github.com/gtank/merlin".fetch] - type = "git" - url = "https://github.com/gtank/merlin" - rev = "8318aed1a79f2b4c16cf2d7c2f09d991ec0731d1" - sha256 = "1gcj26hiyb87cjvqrdyr4q201c1rknpbahnsvcnz08agaw6gvwxm" - -["github.com/gtank/ristretto255"] - sumVersion = "v0.1.2" - ["github.com/gtank/ristretto255".fetch] - type = "git" - url = "https://github.com/gtank/ristretto255" - rev = "f33454717c935f5c93978e82b7bd1e848768bb91" - sha256 = "0kn4r28zbxf4vqr2if455wqzak38l27wqrwbzpxygrvczm61a2kw" - -["github.com/hashicorp/consul/api"] - sumVersion = "v1.3.0" - relPath = "api" - ["github.com/hashicorp/consul/api".fetch] - type = "git" - url = "https://github.com/hashicorp/consul" - rev = "e8757838a49feeb682c7e6ad6b78694a78b2096b" - sha256 = "1zv84snvrjm74w3v3rr27linsbxj00m73xd047sb78a4766xs2h0" - -["github.com/hashicorp/consul/sdk"] - sumVersion = "v0.3.0" - relPath = "sdk" - ["github.com/hashicorp/consul/sdk".fetch] - type = "git" - url = "https://github.com/hashicorp/consul" - rev = "441d613e1bd96254c78c46ee7c1b35c161fc7295" - sha256 = "1v06ygzsvc9c02yxpxnnm407kd30fc46b2146k5zrk1v8lq0f91j" - -["github.com/hashicorp/errwrap"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/errwrap".fetch] - type = "git" - url = "https://github.com/hashicorp/errwrap" - rev = "8a6fb523712970c966eefc6b39ed2c5e74880354" - sha256 = "0slfb6w3b61xz04r32bi0a1bygc82rjzhqkxj2si2074wynqnr1c" - -["github.com/hashicorp/go-cleanhttp"] - sumVersion = "v0.5.1" - ["github.com/hashicorp/go-cleanhttp".fetch] - type = "git" - url = "https://github.com/hashicorp/go-cleanhttp" - rev = "eda1e5db218aad1db63ca4642c8906b26bcf2744" - sha256 = "07kx3fhryqmaw3czacmm11qwx63js2q8cfq967vphk7xg9q377kk" - -["github.com/hashicorp/go-immutable-radix"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-immutable-radix".fetch] - type = "git" - url = "https://github.com/hashicorp/go-immutable-radix" - rev = "27df80928bb34bb1b0d6d0e01b9e679902e7a6b5" - sha256 = "1v3nmsnk1s8bzpclrhirz7iq0g5xxbw9q5gvrg9ss6w9crs72qr6" - -["github.com/hashicorp/go-msgpack"] - sumVersion = "v0.5.3" - ["github.com/hashicorp/go-msgpack".fetch] - type = "git" - url = "https://github.com/hashicorp/go-msgpack" - rev = "be3a5be7ee2202386d02936a19ae4fbde1c77800" - sha256 = "00jv0ajqd58pkb2yyhlrjp0rv1mvb1ijx3yqjyikcmzvk9jb4h5m" - -["github.com/hashicorp/go-multierror"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-multierror".fetch] - type = "git" - url = "https://github.com/hashicorp/go-multierror" - rev = "886a7fbe3eb1c874d46f623bfa70af45f425b3d1" - sha256 = "00nyn8llqzbfm8aflr9kwsvpzi4kv8v45c141v88xskxp5xf6z49" - -["github.com/hashicorp/go-retryablehttp"] - sumVersion = "v0.5.3" - ["github.com/hashicorp/go-retryablehttp".fetch] - type = "git" - url = "https://github.com/hashicorp/go-retryablehttp" - rev = "357460732517ec3b57c05c51443296bdd6df1874" - sha256 = "008mimxs8a970rdhvgmc5v1wk0gmpcl96mrkwz7wq6ik6fhg1sjl" - -["github.com/hashicorp/go-rootcerts"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-rootcerts".fetch] - type = "git" - url = "https://github.com/hashicorp/go-rootcerts" - rev = "63503fb4e1eca22f9ae0f90b49c5d5538a0e87eb" - sha256 = "0wply5zhj1rcybr932zbwm1i18q5wr7kgkhnz6bw6mk1n9yr8lfj" - -["github.com/hashicorp/go-sockaddr"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-sockaddr".fetch] - type = "git" - url = "https://github.com/hashicorp/go-sockaddr" - rev = "a6a0d2df398f7e0e9f6e43f589c8b51cec0eb6b0" - sha256 = "1yn1xq8ysn0lszmkygz3a9lgpswbz1p91jv7q8l20s4749a22xgi" - -["github.com/hashicorp/go-syslog"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-syslog".fetch] - type = "git" - url = "https://github.com/hashicorp/go-syslog" - rev = "8d1874e3e8d1862b74e0536851e218c4571066a5" - sha256 = "09vccqggz212cg0jir6vv708d6mx0f9w5bxrcdah3h6chgmal6v1" - -["github.com/hashicorp/go-uuid"] - sumVersion = "v1.0.1" - ["github.com/hashicorp/go-uuid".fetch] - type = "git" - url = "https://github.com/hashicorp/go-uuid" - rev = "4f571afc59f3043a65f8fe6bf46d887b10a01d43" - sha256 = "0jvb88m0rq41bwgirsadgw7mnayl27av3gd2vqa3xvxp3fy0hp5k" - -["github.com/hashicorp/go-version"] - sumVersion = "v1.2.0" - ["github.com/hashicorp/go-version".fetch] - type = "git" - url = "https://github.com/hashicorp/go-version" - rev = "ac23dc3fea5d1a983c43f6a0f6e2c13f0195d8bd" - sha256 = "1bwi6y6111xq8ww8kjq0w1cmz15l1h9hb2id6596l8l0ag1vjj1z" - -["github.com/hashicorp/go.net"] - sumVersion = "v0.0.1" - ["github.com/hashicorp/go.net".fetch] - type = "git" - url = "https://github.com/hashicorp/go.net" - rev = "afc3cb3a421746fc66dd55b09a270c750cf536ce" - sha256 = "06arwi95xp5rxyz7rndvhc3wlwg0jn9a5z6djf3yyg5h9zfab9i4" - -["github.com/hashicorp/golang-lru"] - sumVersion = "v0.5.4" - ["github.com/hashicorp/golang-lru".fetch] - type = "git" - url = "https://github.com/hashicorp/golang-lru" - rev = "14eae340515388ca95aa8e7b86f0de668e981f54" - sha256 = "1sdbymypp9vrnzp8ashw0idlxvaq0rb0alwxx3x8g27yjlqi9jfn" - -["github.com/hashicorp/hcl"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/hcl".fetch] - type = "git" - url = "https://github.com/hashicorp/hcl" - rev = "8cb6e5b959231cc1119e43259c4a608f9c51a241" - sha256 = "0q6ml0qqs0yil76mpn4mdx4lp94id8vbv575qm60jzl1ijcl5i66" - -["github.com/hashicorp/logutils"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/logutils".fetch] - type = "git" - url = "https://github.com/hashicorp/logutils" - rev = "a335183dfd075f638afcc820c90591ca3c97eba6" - sha256 = "076wf4sh5p3f953ndqk1cc0x7jhmlqrxak9953rz79rcdw77rjvv" - -["github.com/hashicorp/mdns"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/mdns".fetch] - type = "git" - url = "https://github.com/hashicorp/mdns" - rev = "c31d3f8e4a0a5b46b118c2fd26d9da36467002c9" - sha256 = "0qr4l91hhi97s8a1isnrw3s4q8pjzacqiks870vnwh15v7ig3axd" - -["github.com/hashicorp/memberlist"] - sumVersion = "v0.1.3" - ["github.com/hashicorp/memberlist".fetch] - type = "git" - url = "https://github.com/hashicorp/memberlist" - rev = "a9da52f0668fc4321ec18e9e28dd8141621a808f" - sha256 = "0k1spq7dagvqj3baqw2dhxx1zxrb02y6m3apzr3a7gyirii890g3" - -["github.com/hashicorp/serf"] - sumVersion = "v0.8.2" - ["github.com/hashicorp/serf".fetch] - type = "git" - url = "https://github.com/hashicorp/serf" - rev = "b89a09ebd4b1b570e0076d5097272e67c10ac4f6" - sha256 = "0nrslghvdjhaczr2xp9mn8xgcx1dxl4jgpbk0l61ssmxahpx4iyc" - -["github.com/hpcloud/tail"] - sumVersion = "v1.0.0" - ["github.com/hpcloud/tail".fetch] - type = "git" - url = "https://github.com/hpcloud/tail" - rev = "a30252cb686a21eb2d0b98132633053ec2f7f1e5" - sha256 = "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0" - -["github.com/hudl/fargo"] - sumVersion = "v1.3.0" - ["github.com/hudl/fargo".fetch] - type = "git" - url = "https://github.com/hudl/fargo" - rev = "fce5cf495554be9ef0766f6f5459e2874fb08c89" - sha256 = "1f7pwj793p51nq03jiz834g0qvg502h9asry6nx4pdc10wzx2948" - -["github.com/inconshreveable/mousetrap"] - sumVersion = "v1.0.0" - ["github.com/inconshreveable/mousetrap".fetch] - type = "git" - url = "https://github.com/inconshreveable/mousetrap" - rev = "76626ae9c91c4f2a10f34cad8ce83ea42c93bb75" - sha256 = "1mn0kg48xkd74brf48qf5hzp0bc6g8cf5a77w895rl3qnlpfw152" - -["github.com/influxdata/influxdb1-client"] - sumVersion = "v0.0.0-20191209144304-8bf82d3c094d" - ["github.com/influxdata/influxdb1-client".fetch] - type = "git" - url = "https://github.com/influxdata/influxdb1-client" - rev = "8bf82d3c094dc06be9da8e5bf9d3589b6ea032ae" - sha256 = "0cjli7prxfxayx2grianbla5jr0dq28sazk8phbnh61ac5zaya4s" - -["github.com/jessevdk/go-flags"] - sumVersion = "v1.4.0" - ["github.com/jessevdk/go-flags".fetch] - type = "git" - url = "https://github.com/jessevdk/go-flags" - rev = "c6ca198ec95c841fdb89fc0de7496fed11ab854e" - sha256 = "0algnnigph27spgn655zm4723yfjxjjvlf4k14z9drj3682df25a" - -["github.com/jmespath/go-jmespath"] - sumVersion = "v0.0.0-20180206201540-c2b33e8439af" - ["github.com/jmespath/go-jmespath".fetch] - type = "git" - url = "https://github.com/jmespath/go-jmespath" - rev = "c2b33e8439af944379acbdd9c3a5fe0bc44bd8a5" - sha256 = "1r6w7ydx8ydryxk3sfhzsk8m6f1nsik9jg3i1zhi69v4kfl4d5cz" - -["github.com/jmhodges/levigo"] - sumVersion = "v1.0.0" - ["github.com/jmhodges/levigo".fetch] - type = "git" - url = "https://github.com/jmhodges/levigo" - rev = "853d788c5c416eaaee5b044570784a96c7a26975" - sha256 = "1lhh413mmclnkwn2lk1crwzargam2cx5w7k6zj8pgasy62c78iy4" - -["github.com/jonboulle/clockwork"] - sumVersion = "v0.1.0" - ["github.com/jonboulle/clockwork".fetch] - type = "git" - url = "https://github.com/jonboulle/clockwork" - rev = "2eee05ed794112d45db504eb05aa693efd2b8b09" - sha256 = "1pqxhsdavbp1n5grgyx2j6ylvql2fzn2cvpsgkc8li69dil7sibl" - -["github.com/jpillora/backoff"] - sumVersion = "v1.0.0" - ["github.com/jpillora/backoff".fetch] - type = "git" - url = "https://github.com/jpillora/backoff" - rev = "d80867952dff4e2fbfb4280ded4ff94d67790457" - sha256 = "0x90fif28fjyl07lmj2cnxzlgdm632v7rkra7kq1mwjdqgmy04dv" - -["github.com/jrick/logrotate"] - sumVersion = "v1.0.0" - ["github.com/jrick/logrotate".fetch] - type = "git" - url = "https://github.com/jrick/logrotate" - rev = "a93b200c26cbae3bb09dd0dc2c7c7fe1468a034a" - sha256 = "0srl6figwjqpi3nbp7br8sxpmvh4v8lzbny1b4lar4ny0156p5nl" - -["github.com/json-iterator/go"] - sumVersion = "v1.1.10" - ["github.com/json-iterator/go".fetch] - type = "git" - url = "https://github.com/json-iterator/go" - rev = "a1ca0830781e007c66b225121d2cdb3a649421f6" - sha256 = "134zwc2pmf8nd90r8065wsl6vv1mwjl23bs70i08dzhw5h98drr4" - -["github.com/jstemmer/go-junit-report"] - sumVersion = "v0.0.0-20190106144839-af01ea7f8024" - ["github.com/jstemmer/go-junit-report".fetch] - type = "git" - url = "https://github.com/jstemmer/go-junit-report" - rev = "af01ea7f8024089b458d804d5cdf190f962a9a0c" - sha256 = "1lp3n94ris12hac02wi31f3whs88lcrzwgdg43a5j6cafg9p1d0s" - -["github.com/jtolds/gls"] - sumVersion = "v4.20.0+incompatible" - ["github.com/jtolds/gls".fetch] - type = "git" - url = "https://github.com/jtolds/gls" - rev = "b4936e06046bbecbb94cae9c18127ebe510a2cb9" - sha256 = "1k7xd2q2ysv2xsh373qs801v6f359240kx0vrl0ydh7731lngvk6" - -["github.com/julienschmidt/httprouter"] - sumVersion = "v1.3.0" - ["github.com/julienschmidt/httprouter".fetch] - type = "git" - url = "https://github.com/julienschmidt/httprouter" - rev = "4eec211fa4e8df74ed978dc5681612131854144f" - sha256 = "1a6sy0ysqknsjssjh7qg1dqn21xmj9a36c57nrk7srfmab4ffmk1" - -["github.com/keybase/go-keychain"] - sumVersion = "v0.0.0-20190712205309-48d3d31d256d" - ["github.com/keybase/go-keychain".fetch] - type = "git" - url = "https://github.com/keybase/go-keychain" - rev = "48d3d31d256d9922a90b14c518c4b685f321fab2" - sha256 = "1vb4irkbj5s4v8n8dqngmg2w2fbnaz568z731yqryspvvmrki2a1" - -["github.com/kisielk/errcheck"] - sumVersion = "v1.5.0" - ["github.com/kisielk/errcheck".fetch] - type = "git" - url = "https://github.com/kisielk/errcheck" - rev = "ee08a456fc430219ad80ce5af98415bcc027a219" - sha256 = "0ci3jz2px74pfmr42jv7dpx7fdzx08vai4czp9fkiyb0gcaiqsk6" - -["github.com/kisielk/gotool"] - sumVersion = "v1.0.0" - ["github.com/kisielk/gotool".fetch] - type = "git" - url = "https://github.com/kisielk/gotool" - rev = "80517062f582ea3340cd4baf70e86d539ae7d84d" - sha256 = "14af2pa0ssyp8bp2mvdw184s5wcysk6akil3wzxmr05wwy951iwn" - -["github.com/kkdai/bstream"] - sumVersion = "v1.0.0" - ["github.com/kkdai/bstream".fetch] - type = "git" - url = "https://github.com/kkdai/bstream" - rev = "a8d27c5aa8eedad6b6683069d64b96ece63696db" - sha256 = "02brc58hhkkfhgb4yxjv3wshq355w533q7d49qrlfkhk265qph7w" - -["github.com/konsorten/go-windows-terminal-sequences"] - sumVersion = "v1.0.3" - ["github.com/konsorten/go-windows-terminal-sequences".fetch] - type = "git" - url = "https://github.com/konsorten/go-windows-terminal-sequences" - rev = "edb144dfd453055e1e49a3d8b410a660b5a87613" - sha256 = "1yrsd4s8vhjnxhwbigirymz89dn6qfjnhn28i33vvvdgf96j6ypl" - -["github.com/kr/fs"] - sumVersion = "v0.1.0" - ["github.com/kr/fs".fetch] - type = "git" - url = "https://github.com/kr/fs" - rev = "1455def202f6e05b95cc7bfc7e8ae67ae5141eba" - sha256 = "11zg176x9hr9q7fsk95r6q0wf214gg4czy02slax4x56n79g6a7q" - -["github.com/kr/logfmt"] - sumVersion = "v0.0.0-20140226030751-b84e30acd515" - ["github.com/kr/logfmt".fetch] - type = "git" - url = "https://github.com/kr/logfmt" - rev = "b84e30acd515aadc4b783ad4ff83aff3299bdfe0" - sha256 = "02ldzxgznrfdzvghfraslhgp19la1fczcbzh7wm2zdc6lmpd1qq9" - -["github.com/kr/pretty"] - sumVersion = "v0.1.0" - ["github.com/kr/pretty".fetch] - type = "git" - url = "https://github.com/kr/pretty" - rev = "73f6ac0b30a98e433b289500d779f50c1a6f0712" - sha256 = "18m4pwg2abd0j9cn5v3k2ksk9ig4vlwxmlw9rrglanziv9l967qp" - -["github.com/kr/pty"] - sumVersion = "v1.1.1" - ["github.com/kr/pty".fetch] - type = "git" - url = "https://github.com/kr/pty" - rev = "282ce0e5322c82529687d609ee670fac7c7d917c" - sha256 = "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6" - -["github.com/kr/text"] - sumVersion = "v0.1.0" - ["github.com/kr/text".fetch] - type = "git" - url = "https://github.com/kr/text" - rev = "e2ffdb16a802fe2bb95e2e35ff34f0e53aeef34f" - sha256 = "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1" - -["github.com/libp2p/go-buffer-pool"] - sumVersion = "v0.0.2" - ["github.com/libp2p/go-buffer-pool".fetch] - type = "git" - url = "https://github.com/libp2p/go-buffer-pool" - rev = "c4a5988a1e475884367015e1a2d0bd5fa4c491f4" - sha256 = "01iwby4xq9znlfhcxxvqv03smllsv42j1w3vpqg9n307s3i0pj3m" - -["github.com/lightstep/lightstep-tracer-common/golang/gogo"] - sumVersion = "v0.0.0-20190605223551-bc2310a04743" - relPath = "golang/gogo" - ["github.com/lightstep/lightstep-tracer-common/golang/gogo".fetch] - type = "git" - url = "https://github.com/lightstep/lightstep-tracer-common" - rev = "bc2310a0474352fa2616bdc0a27457b146b136b4" - sha256 = "0j7qycrva0ngf38br0jy9blzjb98ksdfi87b0sb2gnpmsp6sz4l8" - -["github.com/lightstep/lightstep-tracer-go"] - sumVersion = "v0.18.1" - ["github.com/lightstep/lightstep-tracer-go".fetch] - type = "git" - url = "https://github.com/lightstep/lightstep-tracer-go" - rev = "95891af43e111d60f0ae6adaa39c2abe8caad401" - sha256 = "0jfnsv7y11d247xysc61wp8xmgn33fdl17v6g0lxxnklbw41k91y" - -["github.com/magiconair/properties"] - sumVersion = "v1.8.4" - ["github.com/magiconair/properties".fetch] - type = "git" - url = "https://github.com/magiconair/properties" - rev = "0e5c09062c2daef666bd279e2d2d9f25f218f2be" - sha256 = "0q7d55z0v8y55dyy8nhgdnswf5zkgj3i87irbk294nvzhx01bnxd" - -["github.com/mattn/go-colorable"] - sumVersion = "v0.0.9" - ["github.com/mattn/go-colorable".fetch] - type = "git" - url = "https://github.com/mattn/go-colorable" - rev = "167de6bfdfba052fa6b2d3664c8f5272e23c9072" - sha256 = "1nwjmsppsjicr7anq8na6md7b1z84l9ppnlr045hhxjvbkqwalvx" - -["github.com/mattn/go-isatty"] - sumVersion = "v0.0.12" - ["github.com/mattn/go-isatty".fetch] - type = "git" - url = "https://github.com/mattn/go-isatty" - rev = "7b513a986450394f7bbf1476909911b3aa3a55ce" - sha256 = "1dfsh27d52wmz0nmmzm2382pfrs2fcijvh6cgir7jbb4pnigr5w4" - -["github.com/mattn/go-runewidth"] - sumVersion = "v0.0.2" - ["github.com/mattn/go-runewidth".fetch] - type = "git" - url = "https://github.com/mattn/go-runewidth" - rev = "9e777a8366cce605130a531d2cd6363d07ad7317" - sha256 = "0vkrfrz3fzn5n6ix4k8s0cg0b448459sldq8bp4riavsxm932jzb" - -["github.com/matttproud/golang_protobuf_extensions"] - sumVersion = "v1.0.1" - ["github.com/matttproud/golang_protobuf_extensions".fetch] - type = "git" - url = "https://github.com/matttproud/golang_protobuf_extensions" - rev = "c12348ce28de40eed0136aa2b644d0ee0650e56c" - sha256 = "1d0c1isd2lk9pnfq2nk0aih356j30k3h1gi2w0ixsivi5csl7jya" - -["github.com/miekg/dns"] - sumVersion = "v1.0.14" - ["github.com/miekg/dns".fetch] - type = "git" - url = "https://github.com/miekg/dns" - rev = "915ca3d5ffd945235828a097c917311a9d86ebb4" - sha256 = "1qgli6yp59bv6vc6zag84cwxmcxgnyxm1q2f301yyijk3wy5b2ak" - -["github.com/mimoo/StrobeGo"] - sumVersion = "v0.0.0-20181016162300-f8f6d4d2b643" - ["github.com/mimoo/StrobeGo".fetch] - type = "git" - url = "https://github.com/mimoo/StrobeGo" - rev = "f8f6d4d2b6435f46148e8a6dc2248939893f3ece" - sha256 = "1lgxh3p6aqfc049wn3kz1mj9prm4mqpa9m01p27ph8iw5ry5c7la" - -["github.com/minio/highwayhash"] - sumVersion = "v1.0.1" - ["github.com/minio/highwayhash".fetch] - type = "git" - url = "https://github.com/minio/highwayhash" - rev = "86a2a969d04373bf05ca722517d30fb1c9a3e4f9" - sha256 = "0kj2hs82sphag0h25xvprvf2fz3zlinmlif89sk9jp8h518aiahf" - -["github.com/mitchellh/cli"] - sumVersion = "v1.0.0" - ["github.com/mitchellh/cli".fetch] - type = "git" - url = "https://github.com/mitchellh/cli" - rev = "3d22a244be8aa6fb16ac24af0e195c08b7d973aa" - sha256 = "1i9kmr7rcf10d2hji8h4247hmc0nbairv7a0q51393aw2h1bnwg2" - -["github.com/mitchellh/go-homedir"] - sumVersion = "v1.1.0" - ["github.com/mitchellh/go-homedir".fetch] - type = "git" - url = "https://github.com/mitchellh/go-homedir" - rev = "af06845cf3004701891bf4fdb884bfe4920b3727" - sha256 = "0ydzkipf28hwj2bfxqmwlww47khyk6d152xax4bnyh60f4lq3nx1" - -["github.com/mitchellh/go-testing-interface"] - sumVersion = "v1.0.0" - ["github.com/mitchellh/go-testing-interface".fetch] - type = "git" - url = "https://github.com/mitchellh/go-testing-interface" - rev = "6d0b8010fcc857872e42fc6c931227569016843c" - sha256 = "1dl2js8di858bawg7dadlf1qjpkl2g3apziihjyf5imri3znyfpw" - -["github.com/mitchellh/gox"] - sumVersion = "v0.4.0" - ["github.com/mitchellh/gox".fetch] - type = "git" - url = "https://github.com/mitchellh/gox" - rev = "c9740af9c6574448fd48eb30a71f964014c7a837" - sha256 = "1q4fdkw904mrmh1q5z8pfd3r0gcn5dm776kldqawddy93iiwnp8r" - -["github.com/mitchellh/iochan"] - sumVersion = "v1.0.0" - ["github.com/mitchellh/iochan".fetch] - type = "git" - url = "https://github.com/mitchellh/iochan" - rev = "b6e3aadd28864e14dae41ff5c7261455b1242d24" - sha256 = "058n9bbf536f2nw3pbs7pysrg9cqvgkb28z2zf5wjyrzrknyk53g" - -["github.com/mitchellh/mapstructure"] - sumVersion = "v1.1.2" - ["github.com/mitchellh/mapstructure".fetch] - type = "git" - url = "https://github.com/mitchellh/mapstructure" - rev = "3536a929edddb9a5b34bd6861dc4a9647cb459fe" - sha256 = "03bpv28jz9zhn4947saqwi328ydj7f6g6pf1m2d4m5zdh5jlfkrr" - -["github.com/modern-go/concurrent"] - sumVersion = "v0.0.0-20180306012644-bacd9c7ef1dd" - ["github.com/modern-go/concurrent".fetch] - type = "git" - url = "https://github.com/modern-go/concurrent" - rev = "bacd9c7ef1dd9b15be4a9909b8ac7a4e313eec94" - sha256 = "0s0fxccsyb8icjmiym5k7prcqx36hvgdwl588y0491gi18k5i4zs" - -["github.com/modern-go/reflect2"] - sumVersion = "v1.0.1" - ["github.com/modern-go/reflect2".fetch] - type = "git" - url = "https://github.com/modern-go/reflect2" - rev = "94122c33edd36123c84d5368cfb2b69df93a0ec8" - sha256 = "06a3sablw53n1dqqbr2f53jyksbxdmmk8axaas4yvnhyfi55k4lf" - -["github.com/mtibben/percent"] - sumVersion = "v0.2.1" - ["github.com/mtibben/percent".fetch] - type = "git" - url = "https://github.com/mtibben/percent" - rev = "07b18b68c1413ce9f8137a8cbd4509fac9e15f0c" - sha256 = "1iqivw8pigj259rj5yifibbvic70f9hb7k24a4sa967s4fj6agb6" - -["github.com/mwitkow/go-conntrack"] - sumVersion = "v0.0.0-20190716064945-2f068394615f" - ["github.com/mwitkow/go-conntrack".fetch] - type = "git" - url = "https://github.com/mwitkow/go-conntrack" - rev = "2f068394615f73e460c2f3d2c158b0ad9321cadb" - sha256 = "0ymjmy12ks7smgwmrwsa5kf07d9w5kpk1dn650azlzr61b561aw7" - -["github.com/nats-io/jwt"] - sumVersion = "v0.3.2" - ["github.com/nats-io/jwt".fetch] - type = "git" - url = "https://github.com/nats-io/jwt" - rev = "0c3fc7aed8bb2534e7bfdf0968a75890402d48cd" - sha256 = "0n44ghpz6hnbd2i074ikrj72rd2vnxpg1g3nhv1ly1kr0832khx6" - -["github.com/nats-io/nats-server/v2"] - sumVersion = "v2.1.2" - ["github.com/nats-io/nats-server/v2".fetch] - type = "git" - url = "https://github.com/nats-io/nats-server" - rev = "679bedafd96f85ddfa56a4d5736517c18842047a" - sha256 = "1jxi6d0zbhisxprlynvqw3dl1lz4wwxiy9gnpaqrwx1yi3kvvg62" - -["github.com/nats-io/nats.go"] - sumVersion = "v1.9.1" - ["github.com/nats-io/nats.go".fetch] - type = "git" - url = "https://github.com/nats-io/nats.go" - rev = "6063d679d23ae5b3edb4030d5e89a6e30ea53bc6" - sha256 = "0mmbwri2k2c8q1w0fr0g5s81709lfr6wyarvaf3gibc7cig10pij" - -["github.com/nats-io/nkeys"] - sumVersion = "v0.1.3" - ["github.com/nats-io/nkeys".fetch] - type = "git" - url = "https://github.com/nats-io/nkeys" - rev = "f1930e19b436412202ab130a733187cc6f40ba7e" - sha256 = "1fip0bja471mavvp67bninpd24jviwpnh7w99kchyiy27lbxy4hp" - -["github.com/nats-io/nuid"] - sumVersion = "v1.0.1" - ["github.com/nats-io/nuid".fetch] - type = "git" - url = "https://github.com/nats-io/nuid" - rev = "4b96681fa6d28dd0ab5fe79bac63b3a493d9ee94" - sha256 = "11zbhg4kds5idsya04bwz4plj0mmiigypzppzih731ppbk2ms1zg" - -["github.com/niemeyer/pretty"] - sumVersion = "v0.0.0-20200227124842-a10e7caefd8e" - ["github.com/niemeyer/pretty".fetch] - type = "git" - url = "https://github.com/niemeyer/pretty" - rev = "a10e7caefd8e0d600cea437f5c3613aeb1553d56" - sha256 = "1jmazh4xzaa3v6g46hz60q2z7nmqs9l9cxdzmmscn3kbcs2znq4v" - -["github.com/nxadm/tail"] - sumVersion = "v1.4.4" - ["github.com/nxadm/tail".fetch] - type = "git" - url = "https://github.com/nxadm/tail" - rev = "327c577245448d8192115e77a76ea3d6aee88202" - sha256 = "1czmwqii0fc8v3ar5bwqpfanprkxg19waly405zlvcflzvj53wwc" - -["github.com/oklog/oklog"] - sumVersion = "v0.3.2" - ["github.com/oklog/oklog".fetch] - type = "git" - url = "https://github.com/oklog/oklog" - rev = "e3ad1c411c27b4bc18c5facb9331820d141a5a54" - sha256 = "1xnjxhgi0zm51skl533la50h133a245i57wqa3h7fr2lv2jqpzny" - -["github.com/oklog/run"] - sumVersion = "v1.0.0" - ["github.com/oklog/run".fetch] - type = "git" - url = "https://github.com/oklog/run" - rev = "4dadeb3030eda0273a12382bb2348ffc7c9d1a39" - sha256 = "1pbjza4claaj95fpqvvfrysvs10y7dm0pl6qr5lzh6qy1vnhmcgw" - -["github.com/oklog/ulid"] - sumVersion = "v1.3.1" - ["github.com/oklog/ulid".fetch] - type = "git" - url = "https://github.com/oklog/ulid" - rev = "02a8604050d8466dd915307496174adb9be4593a" - sha256 = "0hybwyid820n80axrk863k2py93hbqlq6hxhf84ppmz0qd0ys0gq" - -["github.com/olekukonko/tablewriter"] - sumVersion = "v0.0.0-20170122224234-a0225b3f23b5" - ["github.com/olekukonko/tablewriter".fetch] - type = "git" - url = "https://github.com/olekukonko/tablewriter" - rev = "a0225b3f23b5ce0cbec6d7a66a968f8a59eca9c4" - sha256 = "0bp9r6xzy6d3p7l2hjmvr25y3rp3p8c9xv1agkllkksm45ng6681" - -["github.com/onsi/ginkgo"] - sumVersion = "v1.14.0" - ["github.com/onsi/ginkgo".fetch] - type = "git" - url = "https://github.com/onsi/ginkgo" - rev = "9c254cb251dc962dc20ca91d0279c870095cfcf9" - sha256 = "0nwvz0pqk2jqscq88fhppad4flrr8avkxfgbci4xklbar4g8i32v" - -["github.com/onsi/gomega"] - sumVersion = "v1.10.1" - ["github.com/onsi/gomega".fetch] - type = "git" - url = "https://github.com/onsi/gomega" - rev = "904ac6ab26e9a888bdff3467eea03b6122a1c027" - sha256 = "068mirdbwl9n9dqlvqr489h52wkd90cv1jvng4yp8kv83lhzk2dq" - -["github.com/op/go-logging"] - sumVersion = "v0.0.0-20160315200505-970db520ece7" - ["github.com/op/go-logging".fetch] - type = "git" - url = "https://github.com/op/go-logging" - rev = "970db520ece77730c7e4724c61121037378659d9" - sha256 = "1cpna2x5l071z1vrnk7zipdkka8dzwsjyx7m79xk0lr08rip0kcj" - -["github.com/opentracing-contrib/go-observer"] - sumVersion = "v0.0.0-20170622124052-a52f23424492" - ["github.com/opentracing-contrib/go-observer".fetch] - type = "git" - url = "https://github.com/opentracing-contrib/go-observer" - rev = "a52f2342449246d5bcc273e65cbdcfa5f7d6c63c" - sha256 = "1q7z458m2vh3bzml4x9vm2paffqn1jcgiydbisl0zg2asfniq7k3" - -["github.com/opentracing/basictracer-go"] - sumVersion = "v1.0.0" - ["github.com/opentracing/basictracer-go".fetch] - type = "git" - url = "https://github.com/opentracing/basictracer-go" - rev = "1b32af207119a14b1b231d451df3ed04a72efebf" - sha256 = "0hs969asib4yqj5k755zr0byz2iqvjbs6z1szcnr50q6fihigca0" - -["github.com/opentracing/opentracing-go"] - sumVersion = "v1.1.0" - ["github.com/opentracing/opentracing-go".fetch] - type = "git" - url = "https://github.com/opentracing/opentracing-go" - rev = "659c90643e714681897ec2521c60567dd21da733" - sha256 = "0aj9cbm21zsg1i5l25hz8gn0yf99yxyxcp1gqh3yd5g4knj2cgzf" - -["github.com/openzipkin-contrib/zipkin-go-opentracing"] - sumVersion = "v0.4.5" - ["github.com/openzipkin-contrib/zipkin-go-opentracing".fetch] - type = "git" - url = "https://github.com/openzipkin-contrib/zipkin-go-opentracing" - rev = "223664cff43dfd9f54659ff15dc4bd6e023d0c14" - sha256 = "0mdvx50mw17c926rhhkjg8z54v8h0jvnqahdlpij2kbxi3ncgr7q" - -["github.com/openzipkin/zipkin-go"] - sumVersion = "v0.2.2" - ["github.com/openzipkin/zipkin-go".fetch] - type = "git" - url = "https://github.com/openzipkin/zipkin-go" - rev = "c29478e51bfb2e9c93e0e9f5e015e5993a490399" - sha256 = "18c884anq0pkahmjwyhrdg247wyq33ccxp5k7fcq5gzh8g6dj92s" - -["github.com/otiai10/copy"] - sumVersion = "v1.4.2" - ["github.com/otiai10/copy".fetch] - type = "git" - url = "https://github.com/otiai10/copy" - rev = "bdad3b4eb1c7bdcfe4fdddf048ddcfd29367cf69" - sha256 = "1igbsp6cqv4x835a49qqnz9knbhabiwsnvmgnfclj4f49ljhgz5y" - -["github.com/otiai10/curr"] - sumVersion = "v1.0.0" - ["github.com/otiai10/curr".fetch] - type = "git" - url = "https://github.com/otiai10/curr" - rev = "88e2f2cffa0b5f13e90ee963a321bd1b2f715561" - sha256 = "0fpw20adq2wff7l4c87zaavj9jra4d64a8bbjixiiv3bbarim987" - -["github.com/otiai10/mint"] - sumVersion = "v1.3.2" - ["github.com/otiai10/mint".fetch] - type = "git" - url = "https://github.com/otiai10/mint" - rev = "3588d691480a831b1e78b776d3bccd9d5ce6461c" - sha256 = "0448nkhmp1ny64g2d7m5x8inz118zj03j6q0b97q3dszzs7hhan4" - -["github.com/pact-foundation/pact-go"] - sumVersion = "v1.0.4" - ["github.com/pact-foundation/pact-go".fetch] - type = "git" - url = "https://github.com/pact-foundation/pact-go" - rev = "3ce08c8af46b7bc33a06efc9b8807c08806c8af2" - sha256 = "08mnyf1yb6zjqfzs1pdh44drv390lfilhh4vi4asnjk52gknqfn0" - -["github.com/pascaldekloe/goe"] - sumVersion = "v0.1.0" - ["github.com/pascaldekloe/goe".fetch] - type = "git" - url = "https://github.com/pascaldekloe/goe" - rev = "57f6aae5913c64c9bcae5dbdffd33365b5a7f138" - sha256 = "1dqd3mfb4z2vmv6pg6fhgvfc53vhndk24wcl9lj1rz02n6m279fq" - -["github.com/pborman/uuid"] - sumVersion = "v1.2.0" - ["github.com/pborman/uuid".fetch] - type = "git" - url = "https://github.com/pborman/uuid" - rev = "8b1b92947f46224e3b97bb1a3a5b0382be00d31e" - sha256 = "0f146yjqwx2mr110kl8scjhqd08hys7vr5z0d0a3lskb6yy22gfg" - -["github.com/pelletier/go-toml"] - sumVersion = "v1.8.0" - ["github.com/pelletier/go-toml".fetch] - type = "git" - url = "https://github.com/pelletier/go-toml" - rev = "16c9a8bdc086a2130a88eff98df4088e4c359bb2" - sha256 = "0fxmjm85c9h43lvqz71wr93fcc63bhj82nwby80222xx8ja63g7y" - -["github.com/performancecopilot/speed"] - sumVersion = "v3.0.0+incompatible" - ["github.com/performancecopilot/speed".fetch] - type = "git" - url = "https://github.com/performancecopilot/speed" - rev = "839069a3ed70162d3bcefb9891c8ca852d877c1c" - sha256 = "1r0l6i80xkx9dcysa7ajvs5ypqkw2k0422k0hbz28fizaq9d8y0m" - -["github.com/petermattis/goid"] - sumVersion = "v0.0.0-20180202154549-b0b1615b78e5" - ["github.com/petermattis/goid".fetch] - type = "git" - url = "https://github.com/petermattis/goid" - rev = "b0b1615b78e5ee59739545bb38426383b2cda4c9" - sha256 = "0ghfxn045r0bbn2vszw897lxzmhnm4k59aypjvpxl0pbzsw9ab2c" - -["github.com/pierrec/lz4"] - sumVersion = "v2.0.5+incompatible" - ["github.com/pierrec/lz4".fetch] - type = "git" - url = "https://github.com/pierrec/lz4" - rev = "ea731401f5c95a8ba30f15787e5e0fb77c60c66b" - sha256 = "0y5rh7z01zycd59nnjpkqq0ydyjmcg9j1xw15q1i600l9j9g617p" - -["github.com/pkg/errors"] - sumVersion = "v0.9.1" - ["github.com/pkg/errors".fetch] - type = "git" - url = "https://github.com/pkg/errors" - rev = "614d223910a179a466c1767a985424175c39b465" - sha256 = "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq" - -["github.com/pkg/profile"] - sumVersion = "v1.2.1" - ["github.com/pkg/profile".fetch] - type = "git" - url = "https://github.com/pkg/profile" - rev = "5b67d428864e92711fcbd2f8629456121a56d91f" - sha256 = "0blqmvgqvdbqmh3fp9pfdxc9w1qfshrr0zy9whj0sn372bw64qnr" - -["github.com/pkg/sftp"] - sumVersion = "v1.10.1" - ["github.com/pkg/sftp".fetch] - type = "git" - url = "https://github.com/pkg/sftp" - rev = "3edd153f213d8d4191a0ee4577c61cca19436632" - sha256 = "0iw6lijdljwh5xw5hsy0b578cr52h6vvm7hbnzlrvciwhh4sfhhp" - -["github.com/pmezard/go-difflib"] - sumVersion = "v1.0.0" - ["github.com/pmezard/go-difflib".fetch] - type = "git" - url = "https://github.com/pmezard/go-difflib" - rev = "792786c7400a136282c1664665ae0a8db921c6c2" - sha256 = "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw" - -["github.com/posener/complete"] - sumVersion = "v1.1.1" - ["github.com/posener/complete".fetch] - type = "git" - url = "https://github.com/posener/complete" - rev = "98eb9847f27ba2008d380a32c98be474dea55bdf" - sha256 = "1nbdiybjizbaxbf5q0xwbq0cjqw4bl6jggvsjzrpif0w86fcjda2" - -["github.com/prometheus/client_golang"] - sumVersion = "v1.8.0" - ["github.com/prometheus/client_golang".fetch] - type = "git" - url = "https://github.com/prometheus/client_golang" - rev = "47cfdc9bb8ceaf18b12a4b7ba778b06e12d1a97a" - sha256 = "0hdfjfn49782zmqzc61jfrp4bz9gj33hrxivj9ylqh8b0cws0k1w" - -["github.com/prometheus/client_model"] - sumVersion = "v0.2.0" - ["github.com/prometheus/client_model".fetch] - type = "git" - url = "https://github.com/prometheus/client_model" - rev = "7bc5445566f0fe75b15de23e6b93886e982d7bf9" - sha256 = "0jffnz94d6ff39fr96b5w8i8yk26pwnrfggzz8jhi8k0yihg2c9d" - -["github.com/prometheus/common"] - sumVersion = "v0.15.0" - ["github.com/prometheus/common".fetch] - type = "git" - url = "https://github.com/prometheus/common" - rev = "20c99e7aa07352b599bd0517cd5ca945f4af0407" - sha256 = "1hxdvj1w6gkzca3sfca3vv4kpkq210j4n2dhqj3w9wa64clxkdyq" - -["github.com/prometheus/procfs"] - sumVersion = "v0.2.0" - ["github.com/prometheus/procfs".fetch] - type = "git" - url = "https://github.com/prometheus/procfs" - rev = "9dece15c53cd5e9fbfbd72d5108adcf526a3f486" - sha256 = "0rkpyq1grk3qyfahnfry5qkxjg5qb10yh1l8cvm8b79nqsmdyjbm" - -["github.com/prometheus/tsdb"] - sumVersion = "v0.7.1" - ["github.com/prometheus/tsdb".fetch] - type = "git" - url = "https://github.com/prometheus/tsdb" - rev = "c20450564cc42983bf923c13f3fda42de709ac13" - sha256 = "1c1da8i5byvhh4fp3vqjfb65aaksjskn3ggb8wg9hcfzjrhgpz04" - -["github.com/rakyll/statik"] - sumVersion = "v0.1.7" - ["github.com/rakyll/statik".fetch] - type = "git" - url = "https://github.com/rakyll/statik" - rev = "46bd79c4540341fe472fe71dd2ce0ccd4e635450" - sha256 = "0y0kbzma55vmyqhyrw9ssgvxn6nw7d0zg72a7nz8vp1zly4hs6va" - -["github.com/rcrowley/go-metrics"] - sumVersion = "v0.0.0-20200313005456-10cdbea86bc0" - ["github.com/rcrowley/go-metrics".fetch] - type = "git" - url = "https://github.com/rcrowley/go-metrics" - rev = "10cdbea86bc0b922507ce91d43f4f78a5bea2e8f" - sha256 = "157rfn5kf1mdn65gay38zpv6zam3sfa5a3zkx9wxk77y7w3kam19" - -["github.com/regen-network/cosmos-proto"] - sumVersion = "v0.3.1" - ["github.com/regen-network/cosmos-proto".fetch] - type = "git" - url = "https://github.com/regen-network/cosmos-proto" - rev = "f793b6157c2cfb8c1c797100e1918b2d1eb40615" - sha256 = "05sk9jhk4qz5m4vkj0wr0swhvq9niz7v7bvpxh063vz0y6mmpj05" - -["github.com/rogpeppe/fastuuid"] - sumVersion = "v1.2.0" - ["github.com/rogpeppe/fastuuid".fetch] - type = "git" - url = "https://github.com/rogpeppe/fastuuid" - rev = "10c3923834d38e951ae8f627bfec2dc632c5b6cb" - sha256 = "028acdg63zkxpjz3l639nlhki2l0canr2v5jglrmwa1wpjqcfff8" - -["github.com/rogpeppe/go-internal"] - sumVersion = "v1.3.0" - ["github.com/rogpeppe/go-internal".fetch] - type = "git" - url = "https://github.com/rogpeppe/go-internal" - rev = "438578804ca6f31be148c27683afc419ce47c06e" - sha256 = "0mcdh1licgnnahwml9y2iq6xy5x9xmjw5frcnds2s3wpjyqrl216" - -["github.com/rs/cors"] - sumVersion = "v1.7.0" - ["github.com/rs/cors".fetch] - type = "git" - url = "https://github.com/rs/cors" - rev = "db0fe48135e83b5812a5a31be0eea66984b1b521" - sha256 = "1abz6jxp7bhcwwsgcz9ajkijspkc46s0chrhqspy4czskmmazygi" - -["github.com/rs/xid"] - sumVersion = "v1.2.1" - ["github.com/rs/xid".fetch] - type = "git" - url = "https://github.com/rs/xid" - rev = "15d26544def341f036c5f8dca987a4cbe575032c" - sha256 = "1vgw1dikqw273awcci6pzifs7shkl5ah4l88j1zjbnpgbiwzlx9j" - -["github.com/rs/zerolog"] - sumVersion = "v1.20.0" - ["github.com/rs/zerolog".fetch] - type = "git" - url = "https://github.com/rs/zerolog" - rev = "72acd6cfe8bbbf5c52bfc805a3889c6941499c95" - sha256 = "1g62d8pca2sg0k1qjqcppv7n68wjw2iv04x9vwswlnphg6caf6wy" - -["github.com/russross/blackfriday"] - sumVersion = "v1.5.2" - ["github.com/russross/blackfriday".fetch] - type = "git" - url = "https://github.com/russross/blackfriday" - rev = "05f3235734ad95d0016f6a23902f06461fcf567a" - sha256 = "0jzbfzcywqcrnym4gxlz6nphmm1grg6wsl4f0r9x384rn83wkj7c" - -["github.com/russross/blackfriday/v2"] - sumVersion = "v2.0.1" - ["github.com/russross/blackfriday/v2".fetch] - type = "git" - url = "https://github.com/russross/blackfriday" - rev = "d3b5b032dc8e8927d31a5071b56e14c89f045135" - sha256 = "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j" - -["github.com/ryanuber/columnize"] - sumVersion = "v0.0.0-20160712163229-9b3edd62028f" - ["github.com/ryanuber/columnize".fetch] - type = "git" - url = "https://github.com/ryanuber/columnize" - rev = "9b3edd62028f107d7cabb19353292afd29311a4e" - sha256 = "1ya1idkbb0a9fjlhkcnh5a9yvpwzwfmbyg7d56lpplwr9rqi1da4" - -["github.com/samuel/go-zookeeper"] - sumVersion = "v0.0.0-20190923202752-2cc03de413da" - ["github.com/samuel/go-zookeeper".fetch] - type = "git" - url = "https://github.com/samuel/go-zookeeper" - rev = "2cc03de413da42869e2db7ce7965d3e978d917eb" - sha256 = "11z2r73q6qk9xy3mzkhdxd7cbfqsdr0105d5m03q4r47fki46hgx" - -["github.com/sasha-s/go-deadlock"] - sumVersion = "v0.2.1-0.20190427202633-1595213edefa" - ["github.com/sasha-s/go-deadlock".fetch] - type = "git" - url = "https://github.com/sasha-s/go-deadlock" - rev = "1595213edefa28ca5047b00340c63557f9c051d0" - sha256 = "06h5g16zlfnw9wvgaqp7jfav3n3pvli6asfcx1hv44sl601wnwk0" - -["github.com/sean-/seed"] - sumVersion = "v0.0.0-20170313163322-e2103e2c3529" - ["github.com/sean-/seed".fetch] - type = "git" - url = "https://github.com/sean-/seed" - rev = "e2103e2c35297fb7e17febb81e49b312087a2372" - sha256 = "0glir8jxi1w7aga2jwdb63pp1h8q4whknili7xixsqzwyy716125" - -["github.com/shurcooL/sanitized_anchor_name"] - sumVersion = "v1.0.0" - ["github.com/shurcooL/sanitized_anchor_name".fetch] - type = "git" - url = "https://github.com/shurcooL/sanitized_anchor_name" - rev = "7bfe4c7ecddb3666a94b053b422cdd8f5aaa3615" - sha256 = "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f" - -["github.com/sirupsen/logrus"] - sumVersion = "v1.6.0" - ["github.com/sirupsen/logrus".fetch] - type = "git" - url = "https://github.com/sirupsen/logrus" - rev = "60c74ad9be0d874af0ab0daef6ab07c5c5911f0d" - sha256 = "1zf9is1yxxnna0d1pyag2m9ziy3l27zb2j92p9msm1gx5jjrvzzj" - -["github.com/smartystreets/assertions"] - sumVersion = "v0.0.0-20180927180507-b2de0cb4f26d" - ["github.com/smartystreets/assertions".fetch] - type = "git" - url = "https://github.com/smartystreets/assertions" - rev = "b2de0cb4f26d0705483a2f495d89896d0b808573" - sha256 = "1i7ldgavgl35c7gk25p7bvdr282ckng090zr4ch9mk1705akx09y" - -["github.com/smartystreets/goconvey"] - sumVersion = "v1.6.4" - ["github.com/smartystreets/goconvey".fetch] - type = "git" - url = "https://github.com/smartystreets/goconvey" - rev = "505e419363375c0dc132d3ac02632a4ee32199ca" - sha256 = "07zjxwszayal88z1j2bwnqrsa32vg8l4nivks5yfr9j8xfsw7n6m" - -["github.com/snikch/goodman"] - sumVersion = "v0.0.0-20171125024755-10e37e294daa" - ["github.com/snikch/goodman".fetch] - type = "git" - url = "https://github.com/snikch/goodman" - rev = "10e37e294daa3c9a90abded60ff9924bafab3888" - sha256 = "0n6m17lmlfsynd7ja3s3w7pgpi7zdyakqbg4ahzdq9918fwddqmp" - -["github.com/soheilhy/cmux"] - sumVersion = "v0.1.4" - ["github.com/soheilhy/cmux".fetch] - type = "git" - url = "https://github.com/soheilhy/cmux" - rev = "e09e9389d85d8492d313d73d1469c029e710623f" - sha256 = "1f736g68d9vwlyfb6g0fxkr0r875369xafk30cz8kaq5niaqwv0h" - -["github.com/sony/gobreaker"] - sumVersion = "v0.4.1" - ["github.com/sony/gobreaker".fetch] - type = "git" - url = "https://github.com/sony/gobreaker" - rev = "21dbfda1fc5e89b91bd0c835a91c31fe4d461e88" - sha256 = "0iarblm3w2d0p997jsw9bkznfj0wa8d586nh37ii5gnqy41va700" - -["github.com/spaolacci/murmur3"] - sumVersion = "v1.1.0" - ["github.com/spaolacci/murmur3".fetch] - type = "git" - url = "https://github.com/spaolacci/murmur3" - rev = "f09979ecbc725b9e6d41a297405f65e7e8804acc" - sha256 = "1lv3zyz3jy2d76bhvvs8svygx66606iygdvwy5cwc0p5z8yghq25" - -["github.com/spf13/afero"] - sumVersion = "v1.3.4" - ["github.com/spf13/afero".fetch] - type = "git" - url = "https://github.com/spf13/afero" - rev = "799ff74c0fd7e7df974e6ffa1c94e3d206f5673b" - sha256 = "0r158myfm55ig49yimqn44g6sp759q80hdv1iccy1kmm08vkizpi" - -["github.com/spf13/cast"] - sumVersion = "v1.3.1" - ["github.com/spf13/cast".fetch] - type = "git" - url = "https://github.com/spf13/cast" - rev = "1ffadf551085444af981432dd0f6d1160c11ec64" - sha256 = "0lb84788glr0qzrq2ifi36rgvp96qrgywvxrr3ggq5hrbr38hgn1" - -["github.com/spf13/cobra"] - sumVersion = "v1.1.3" - ["github.com/spf13/cobra".fetch] - type = "git" - url = "https://github.com/spf13/cobra" - rev = "8380ddd3132bdf8fd77731725b550c181dda0aa8" - sha256 = "1lnzjsjk37xbrya6w5r0l0a2wak0v0q10npy3k088i84n3gpmz83" - -["github.com/spf13/jwalterweatherman"] - sumVersion = "v1.1.0" - ["github.com/spf13/jwalterweatherman".fetch] - type = "git" - url = "https://github.com/spf13/jwalterweatherman" - rev = "94f6ae3ed3bceceafa716478c5fbf8d29ca601a1" - sha256 = "1ywmkwci5zyd88ijym6f30fj5c0k2yayxarkmnazf5ybljv50q7b" - -["github.com/spf13/pflag"] - sumVersion = "v1.0.5" - ["github.com/spf13/pflag".fetch] - type = "git" - url = "https://github.com/spf13/pflag" - rev = "2e9d26c8c37aae03e3f9d4e90b7116f5accb7cab" - sha256 = "0gpmacngd0gpslnbkzi263f5ishigzgh6pbdv9hp092rnjl4nd31" - -["github.com/spf13/viper"] - sumVersion = "v1.7.1" - ["github.com/spf13/viper".fetch] - type = "git" - url = "https://github.com/spf13/viper" - rev = "3826be313591f83193f048520482a7b3cf17d506" - sha256 = "1bci9wcqj8ghczwnj7wdlqzzbkm24fxpcl580vnrfc67yr5ppi01" - -["github.com/streadway/amqp"] - sumVersion = "v0.0.0-20190827072141-edfb9018d271" - ["github.com/streadway/amqp".fetch] - type = "git" - url = "https://github.com/streadway/amqp" - rev = "edfb9018d2714e4ec54dbaba37dbfef2bdadf0e4" - sha256 = "07icg7x7saawzqb9lm9avw6bizs387xdi27zry03m6z5i1a22zq2" - -["github.com/streadway/handy"] - sumVersion = "v0.0.0-20190108123426-d5acb3125c2a" - ["github.com/streadway/handy".fetch] - type = "git" - url = "https://github.com/streadway/handy" - rev = "d5acb3125c2a6654d2d691e6851674a645333da1" - sha256 = "02jwalahfj2lh1snklh6i5hysjl9npx59q31ihdfrva10dssg30r" - -["github.com/stretchr/objx"] - sumVersion = "v0.2.0" - ["github.com/stretchr/objx".fetch] - type = "git" - url = "https://github.com/stretchr/objx" - rev = "ea4fe68685ee0d3cee7032121851b57e7494e8ea" - sha256 = "0pcdvakxgddaiwcdj73ra4da05a3q4cgwbpm2w75ycq4kzv8ij8k" - -["github.com/stretchr/testify"] - sumVersion = "v1.7.0" - ["github.com/stretchr/testify".fetch] - type = "git" - url = "https://github.com/stretchr/testify" - rev = "acba37e5db06f0093b465a7d47822bf13644b66c" - sha256 = "0ixgjsvafr3513pz3r6pmgk074s2dxkll0dadvl25gkf30rkmh10" - -["github.com/subosito/gotenv"] - sumVersion = "v1.2.0" - ["github.com/subosito/gotenv".fetch] - type = "git" - url = "https://github.com/subosito/gotenv" - rev = "2ef7124db659d49edac6aa459693a15ae36c671a" - sha256 = "0mav91j7r4arjkpq5zcf9j74f6pww8ic53x43wy7kg3ibw31yjs5" - -["github.com/syndtr/goleveldb"] - sumVersion = "v1.0.1-0.20200815110645-5c35d600f0ca" - ["github.com/syndtr/goleveldb".fetch] - type = "git" - url = "https://github.com/syndtr/goleveldb" - rev = "5c35d600f0caac04c20d52438103f1a7aa612598" - sha256 = "0wsqybzip0khzgk4cl23ilm30jnf4yd674dkbq4c26ivak9qkmz7" - -["github.com/tecbot/gorocksdb"] - sumVersion = "v0.0.0-20191217155057-f0fad39f321c" - ["github.com/tecbot/gorocksdb".fetch] - type = "git" - url = "https://github.com/tecbot/gorocksdb" - rev = "f0fad39f321c61bf05fcb4a01fe259606235e712" - sha256 = "0brf99da00jf91hf7w0qqk6yj61zcya9ci7pm8d60q6zl40i87c5" - -["github.com/tendermint/btcd"] - sumVersion = "v0.1.1" - ["github.com/tendermint/btcd".fetch] - type = "git" - url = "https://github.com/tendermint/btcd" - rev = "80daadac05d1cd29571fccf27002d79667a88b58" - sha256 = "16s909z5awvqi060rdj577wzbgziyk88s53x24kv9rzc71rm99x1" - -["github.com/tendermint/crypto"] - sumVersion = "v0.0.0-20191022145703-50d29ede1e15" - ["github.com/tendermint/crypto".fetch] - type = "git" - url = "https://github.com/tendermint/crypto" - rev = "50d29ede1e15ab205c8558ad67b85596ee19d3a0" - sha256 = "0vhyxsypb2q1zpcl464hlsdpap7kc3nj6gdff53xwrln2bg1jjin" - -["github.com/tendermint/go-amino"] - sumVersion = "v0.16.0" - ["github.com/tendermint/go-amino".fetch] - type = "git" - url = "https://github.com/tendermint/go-amino" - rev = "ccb15b138dfd74282be78f5e9059387768b12918" - sha256 = "1zcms3l5fihzg8nf4vhdk18qpn1jkbm3rpkjfpskfcrgzlxk6vi5" - -["github.com/tendermint/tendermint"] - sumVersion = "v0.34.9" - ["github.com/tendermint/tendermint".fetch] - type = "git" - url = "https://github.com/tendermint/tendermint" - rev = "e54fdb62046abe5606026e1fd79c293c4f5888d0" - sha256 = "04xq0p5yw0lfdqdj3rb5b0f2j8rzy5h1ibx2x790v52izcph1xfm" - -["github.com/tendermint/tm-db"] - sumVersion = "v0.6.4" - ["github.com/tendermint/tm-db".fetch] - type = "git" - url = "https://github.com/tendermint/tm-db" - rev = "6f9a08cd4522fb13d8df69b1694587d5015114fc" - sha256 = "1sgjf2vaq554ybc0cwkzn17cz2ibzph2rq0dgaw21c2hym09437x" - -["github.com/tmc/grpc-websocket-proxy"] - sumVersion = "v0.0.0-20190109142713-0ad062ec5ee5" - ["github.com/tmc/grpc-websocket-proxy".fetch] - type = "git" - url = "https://github.com/tmc/grpc-websocket-proxy" - rev = "0ad062ec5ee553a48f6dbd280b7a1b5638e8a113" - sha256 = "1anw4v9wspnw9xf2z5r9w0sszwjklyanl0l85wgg6nxak9gnrqp4" - -["github.com/tv42/httpunix"] - sumVersion = "v0.0.0-20150427012821-b75d8614f926" - ["github.com/tv42/httpunix".fetch] - type = "git" - url = "https://github.com/tv42/httpunix" - rev = "b75d8614f926c077e48d85f1f8f7885b758c6225" - sha256 = "1sd9nnyyjm7n96fa18l0shlnapld4m0yj5ij2ba0l9yaaa2byqm9" - -["github.com/ugorji/go"] - sumVersion = "v1.1.4" - ["github.com/ugorji/go".fetch] - type = "git" - url = "https://github.com/ugorji/go" - rev = "2adff0894ba3bc2eeb9f9aea45fefd49802e1a13" - sha256 = "0ma2qvn5wqvjidpdz74x832a813qnr1cxbx6n6n125ak9b3wbn5w" - -["github.com/ugorji/go/codec"] - sumVersion = "v0.0.0-20181204163529-d75b2dcb6bc8" - relPath = "codec" - ["github.com/ugorji/go/codec".fetch] - type = "git" - url = "https://github.com/ugorji/go" - rev = "d75b2dcb6bc890b13ac61b764f5dc5e5a5591dce" - sha256 = "0di1k35gpq9bp958ywranpbskx2vdwlb38s22vl9rybm3wa5g3ps" - -["github.com/urfave/cli"] - sumVersion = "v1.22.1" - ["github.com/urfave/cli".fetch] - type = "git" - url = "https://github.com/urfave/cli" - rev = "c71fbcefd21552b70cd625b2c54466006e258ad7" - sha256 = "04ymak18flqlfcn8lycmg8r3931al8dvr8f1cg9n4yjaskmg72v8" - -["github.com/xiang90/probing"] - sumVersion = "v0.0.0-20190116061207-43a291ad63a2" - ["github.com/xiang90/probing".fetch] - type = "git" - url = "https://github.com/xiang90/probing" - rev = "43a291ad63a214a207fefbf03c7d9d78b703162b" - sha256 = "1z22ms16j5j42775mf31isanwx2pwr1d8wqw8006dczjv36qnz5i" - -["github.com/xordataexchange/crypt"] - sumVersion = "v0.0.3-0.20170626215501-b2862e3d0a77" - ["github.com/xordataexchange/crypt".fetch] - type = "git" - url = "https://github.com/xordataexchange/crypt" - rev = "b2862e3d0a775f18c7cfe02273500ae307b61218" - sha256 = "04q3856anpzl4gdfgmg7pbp9cx231nkz3ymq2xp27rnmmwhfxr8y" - -["github.com/yuin/goldmark"] - sumVersion = "v1.2.1" - ["github.com/yuin/goldmark".fetch] - type = "git" - url = "https://github.com/yuin/goldmark" - rev = "91e5269fb0f873f91c9a01e98f32de15ca49440f" - sha256 = "12rsnsf65drcp0jfw2jl9w589vsn3pxdk1zh3v9q908iigngrcmy" - -["github.com/zondax/hid"] - sumVersion = "v0.9.0" - ["github.com/zondax/hid".fetch] - type = "git" - url = "https://github.com/zondax/hid" - rev = "302fd402163c34626286195dfa9adac758334acc" - sha256 = "1wnpfn4bd86nz2v9dgb40xpz1ya66vahdkrhb1gj4jyyxdnnhqkh" - -["go.etcd.io/bbolt"] - sumVersion = "v1.3.5" - ["go.etcd.io/bbolt".fetch] - type = "git" - url = "https://github.com/etcd-io/bbolt" - rev = "232d8fc87f50244f9c808f4745759e08a304c029" - sha256 = "1h64gipvcg7060byv5wjlf524kqwj12p3v08kfh4ygv46vpm8p2r" - -["go.etcd.io/etcd"] - sumVersion = "v0.0.0-20191023171146-3cf2f69b5738" - ["go.etcd.io/etcd".fetch] - type = "git" - url = "https://github.com/etcd-io/etcd" - rev = "3cf2f69b5738fb702ba1a935590f36b52b18979b" - sha256 = "1w5jr8shn6whccksmpbcllcr1f8gjgh1dnix5rmnv3wwr5in5cgq" - -["go.opencensus.io"] - sumVersion = "v0.22.2" - ["go.opencensus.io".fetch] - type = "git" - url = "https://github.com/census-instrumentation/opencensus-go" - rev = "aad2c527c5defcf89b5afab7f37274304195a6b2" - sha256 = "0lz7fid63pdrcvyzk5kn7vlcva102h61igmw7pz824wvj9k3hy4q" - -["go.uber.org/atomic"] - sumVersion = "v1.5.0" - ["go.uber.org/atomic".fetch] - type = "git" - url = "https://github.com/uber-go/atomic" - rev = "9dc4df04d0d1c39369750a9f6c32c39560672089" - sha256 = "1ysc6xzafabcn52pbf4dx0j6vrik4n0x5gxfjib5f9jr9ilzcw7z" - -["go.uber.org/multierr"] - sumVersion = "v1.3.0" - ["go.uber.org/multierr".fetch] - type = "git" - url = "https://github.com/uber-go/multierr" - rev = "c3fc3d02ec864719d8e25be2d7dde1e35a36aa27" - sha256 = "0bq3m8qfx76p0jjgs1idb7fn0s6a4jjkldfqldyxdh3nqhyngb4k" - -["go.uber.org/tools"] - sumVersion = "v0.0.0-20190618225709-2cfd321de3ee" - ["go.uber.org/tools".fetch] - type = "git" - url = "https://github.com/uber-go/tools" - rev = "2cfd321de3ee5d5f8a5fda2521d1703478334d98" - sha256 = "0kcsg9pd3vyp5v9dz8xzd9lkpbqrlhr1rv6hg38afq6ifziw319i" - -["go.uber.org/zap"] - sumVersion = "v1.13.0" - ["go.uber.org/zap".fetch] - type = "git" - url = "https://github.com/uber-go/zap" - rev = "33e58d4d0120aa28d4df84cd244838c490846c9d" - sha256 = "11ayasjz1ki1qzl75qrzcnpd718bpms0wcldkd4f4wbplq0g04ck" - -["golang.org/x/crypto"] - sumVersion = "v0.0.0-20201221181555-eec23a3978ad" - ["golang.org/x/crypto".fetch] - type = "git" - url = "https://go.googlesource.com/crypto" - rev = "eec23a3978adcfd26c29f4153eaa3e3d9b2cc53a" - sha256 = "18cf6vhmx7v83ahyil7j8hkwhwf1012bgixglz7a6nc35qwwqb3r" - -["golang.org/x/exp"] - sumVersion = "v0.0.0-20200331195152-e8c3332aa8e5" - ["golang.org/x/exp".fetch] - type = "git" - url = "https://go.googlesource.com/exp" - rev = "e8c3332aa8e5b8e6acb4707c3a7e5979052b20aa" - sha256 = "085mbasmshl64f2d0awrf5k0iyh1aij888cp9aa12ldzp36404rw" - -["golang.org/x/image"] - sumVersion = "v0.0.0-20190802002840-cff245a6509b" - ["golang.org/x/image".fetch] - type = "git" - url = "https://go.googlesource.com/image" - rev = "cff245a6509b8c4de022d0d5b9037c503c5989d6" - sha256 = "0hiznlkiaay30acwvvyq8g6bm32r7bc6gv47pygrcxqpapasbz84" - -["golang.org/x/lint"] - sumVersion = "v0.0.0-20190930215403-16217165b5de" - ["golang.org/x/lint".fetch] - type = "git" - url = "https://go.googlesource.com/lint" - rev = "16217165b5de779cb6a5e4fc81fa9c1166fda457" - sha256 = "0jhwmwc0vykcmf164na0pnadl8gv7184b6pf3xayknwmzdw6vd7h" - -["golang.org/x/mobile"] - sumVersion = "v0.0.0-20190719004257-d2bd2a29d028" - ["golang.org/x/mobile".fetch] - type = "git" - url = "https://go.googlesource.com/mobile" - rev = "d2bd2a29d028cb94031e5e81788b19b371d00eb8" - sha256 = "1nv6vvhnjr01nx9y06q46ww87dppdwpbqrlsfg1xf2587wxl8xiv" - -["golang.org/x/mod"] - sumVersion = "v0.3.0" - ["golang.org/x/mod".fetch] - type = "git" - url = "https://go.googlesource.com/mod" - rev = "859b3ef565e237f9f1a0fb6b55385c497545680d" - sha256 = "0ldgbx2zpprbsfn6p8pfgs4nn87gwbfcv2z0fa7n8alwsq2yw78q" - -["golang.org/x/net"] - sumVersion = "v0.0.0-20201021035429-f5854403a974" - ["golang.org/x/net".fetch] - type = "git" - url = "https://go.googlesource.com/net" - rev = "f5854403a9740e74b2e9e725e6cd7c8a57711905" - sha256 = "1vw63zpmhi337f3gc432x3wkib4j2ia8dy7if31wxwb9dgqvy222" - -["golang.org/x/oauth2"] - sumVersion = "v0.0.0-20200107190931-bf48bf16ab8d" - ["golang.org/x/oauth2".fetch] - type = "git" - url = "https://go.googlesource.com/oauth2" - rev = "bf48bf16ab8d622ce64ec6ce98d2c98f916b6303" - sha256 = "1sirdib60zwmh93kf9qrx51r8544k1p9rs5mk0797wibz3m4mrdg" - -["golang.org/x/sync"] - sumVersion = "v0.0.0-20201020160332-67f06af15bc9" - ["golang.org/x/sync".fetch] - type = "git" - url = "https://go.googlesource.com/sync" - rev = "67f06af15bc961c363a7260195bcd53487529a21" - sha256 = "093p4panc808ak5bamzz7m9nb0xxib7778jpnr6f0xkz1n4fzyw5" - -["golang.org/x/sys"] - sumVersion = "v0.0.0-20201015000850-e3ed0017c211" - ["golang.org/x/sys".fetch] - type = "git" - url = "https://go.googlesource.com/sys" - rev = "e3ed0017c21142d3345308d92dcc7ad7020040c6" - sha256 = "0nz91nxgfcbcxirscdrxcq5a97z5pyz0g0k2chjxx228dz59aw1i" - -["golang.org/x/term"] - sumVersion = "v0.0.0-20201117132131-f5c789dd3221" - ["golang.org/x/term".fetch] - type = "git" - url = "https://go.googlesource.com/term" - rev = "f5c789dd3221ff39d752ac54467d762de7cfbec6" - sha256 = "1zjj3z607hk777f0cx7jrmypcp7n3gn3mpdal0pjrx076b5rfc3b" - -["golang.org/x/text"] - sumVersion = "v0.3.3" - ["golang.org/x/text".fetch] - type = "git" - url = "https://go.googlesource.com/text" - rev = "23ae387dee1f90d29a23c0e87ee0b46038fbed0e" - sha256 = "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh" - -["golang.org/x/time"] - sumVersion = "v0.0.0-20191024005414-555d28b269f0" - ["golang.org/x/time".fetch] - type = "git" - url = "https://go.googlesource.com/time" - rev = "555d28b269f0569763d25dbe1a237ae74c6bcc82" - sha256 = "1rhl4lyz030kwfsg63yk83yd3ivryv1afmzdz9sxbhcj84ym6h4r" - -["golang.org/x/tools"] - sumVersion = "v0.0.0-20210106214847-113979e3529a" - ["golang.org/x/tools".fetch] - type = "git" - url = "https://go.googlesource.com/tools" - rev = "113979e3529a77b99c4f3e5f3c8a22802a39cc95" - sha256 = "0pq1a7hkamqdwsajyfrb27s56cvxz5838krsgyqz346s2djwdrzl" - -["golang.org/x/xerrors"] - sumVersion = "v0.0.0-20200804184101-5ec99f83aff1" - ["golang.org/x/xerrors".fetch] - type = "git" - url = "https://go.googlesource.com/xerrors" - rev = "5ec99f83aff198f5fbd629d6c8d8eb38a04218ca" - sha256 = "1dbzc3gmf2haazpv7cgmv97rq40g2xzwbglc17vas8dwhgwgwrzb" - -["google.golang.org/api"] - sumVersion = "v0.13.0" - ["google.golang.org/api".fetch] - type = "git" - url = "https://github.com/googleapis/google-api-go-client" - rev = "4f42dad4690a01d7f6fa461106c63889ff1be027" - sha256 = "1mw1k1j5l0ycrf3pwgzj9dzc8y9898lmj94s4ivcn7vc8ap8xppg" - -["google.golang.org/appengine"] - sumVersion = "v1.6.1" - ["google.golang.org/appengine".fetch] - type = "git" - url = "https://github.com/golang/appengine" - rev = "b2f4a3cf3c67576a2ee09e1fe62656a5086ce880" - sha256 = "0zxlvwzxwkwz4bs4h9zc9979dx76y4xf9ks4d22bclg47dv59yry" - -["google.golang.org/genproto"] - sumVersion = "v0.0.0-20210114201628-6edceaf6022f" - ["google.golang.org/genproto".fetch] - type = "git" - url = "https://github.com/googleapis/go-genproto" - rev = "6edceaf6022f0286b66b688465262f636c7f7f43" - sha256 = "0gi8ji5p0wn1hwvaw42rphai51z0xnm0l8ar5n0y3a8d53p1zyma" - -["google.golang.org/grpc"] - sumVersion = "v1.33.2" - ["google.golang.org/grpc".fetch] - type = "git" - url = "https://github.com/grpc/grpc-go" - rev = "56d63285d528c0d33f9bf8c355139d91edc047de" - sha256 = "03yz4nlf4kqbnpw48f0mvcb2f5zzy0vjd5i2iw0hrjspd0238fzk" - -["google.golang.org/protobuf"] - sumVersion = "v1.25.0" - ["google.golang.org/protobuf".fetch] - type = "git" - url = "https://go.googlesource.com/protobuf" - rev = "3f7a61f89bb6813f89d981d1870ed68da0b3c3f1" - sha256 = "0apfl42x166dh96zfq5kvv4b4ax9xljik6bq1mnvn2240ir3mc23" - -["gopkg.in/alecthomas/kingpin.v2"] - sumVersion = "v2.2.6" - ["gopkg.in/alecthomas/kingpin.v2".fetch] - type = "git" - url = "https://gopkg.in/alecthomas/kingpin.v2" - rev = "947dcec5ba9c011838740e680966fd7087a71d0d" - sha256 = "0mndnv3hdngr3bxp7yxfd47cas4prv98sqw534mx7vp38gd88n5r" - -["gopkg.in/check.v1"] - sumVersion = "v1.0.0-20200902074654-038fdea0a05b" - ["gopkg.in/check.v1".fetch] - type = "git" - url = "https://gopkg.in/check.v1" - rev = "038fdea0a05bc030b0bfda479dc2e08d2220ec74" - sha256 = "060kpz01bfglrd7przzgq8a1fqf1x0hlkmdj6isindzwx3kfhnm4" - -["gopkg.in/cheggaaa/pb.v1"] - sumVersion = "v1.0.25" - ["gopkg.in/cheggaaa/pb.v1".fetch] - type = "git" - url = "https://gopkg.in/cheggaaa/pb.v1" - rev = "2af8bbdea9e99e83b3ac400d8f6b6d1b8cbbf338" - sha256 = "0vxqiw6f3xyv0zy3g4lksf8za0z8i0hvfpw92hqimsy84f79j3dp" - -["gopkg.in/errgo.v2"] - sumVersion = "v2.1.0" - ["gopkg.in/errgo.v2".fetch] - type = "git" - url = "https://gopkg.in/errgo.v2" - rev = "f768c5ab0476c50e978b039312180859c10fe8c0" - sha256 = "065mbihiy7q67wnql0bzl9y1kkvck5ivra68254zbih52jxwrgr2" - -["gopkg.in/fsnotify.v1"] - sumVersion = "v1.4.7" - ["gopkg.in/fsnotify.v1".fetch] - type = "git" - url = "https://gopkg.in/fsnotify.v1" - rev = "c2828203cd70a50dcccfb2761f8b1f8ceef9a8e9" - sha256 = "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g" - -["gopkg.in/gcfg.v1"] - sumVersion = "v1.2.3" - ["gopkg.in/gcfg.v1".fetch] - type = "git" - url = "https://gopkg.in/gcfg.v1" - rev = "61b2c08bc8f6068f7c5ca684372f9a6cb1c45ebe" - sha256 = "165f9wincwnkblp8x6m1f4ch4m8k4gvy5v4x4gqdpmf59kqv5y7s" - -["gopkg.in/ini.v1"] - sumVersion = "v1.51.0" - ["gopkg.in/ini.v1".fetch] - type = "git" - url = "https://gopkg.in/ini.v1" - rev = "87e589f4917038ae250cff2446db7573f47e97ca" - sha256 = "1wccpzmf4kmz6hl6pd3mjwlzr9p6m6j9vc9302svzcwbaidgn3l1" - -["gopkg.in/resty.v1"] - sumVersion = "v1.12.0" - ["gopkg.in/resty.v1".fetch] - type = "git" - url = "https://gopkg.in/resty.v1" - rev = "fa5875c0caa5c260ab78acec5a244215a730247f" - sha256 = "062mn735rqzhha5ag07z4gz08hxzrfm2yx067jfmaaxmb6797lmp" - -["gopkg.in/tomb.v1"] - sumVersion = "v1.0.0-20141024135613-dd632973f1e7" - ["gopkg.in/tomb.v1".fetch] - type = "git" - url = "https://gopkg.in/tomb.v1" - rev = "dd632973f1e7218eb1089048e0798ec9ae7dceb8" - sha256 = "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv" - -["gopkg.in/warnings.v0"] - sumVersion = "v0.1.2" - ["gopkg.in/warnings.v0".fetch] - type = "git" - url = "https://gopkg.in/warnings.v0" - rev = "ec4a0fea49c7b46c2aeb0b51aac55779c607e52b" - sha256 = "1kzj50jn708cingn7a13c2wdlzs6qv89dr2h4zj8d09647vlnd81" - -["gopkg.in/yaml.v2"] - sumVersion = "v2.4.0" - ["gopkg.in/yaml.v2".fetch] - type = "git" - url = "https://gopkg.in/yaml.v2" - rev = "7649d4548cb53a614db133b2a8ac1f31859dda8c" - sha256 = "1pbmrpj7gcws34g8vwna4i2nhm9p6235piww36436xhyaa10cldr" - -["gopkg.in/yaml.v3"] - sumVersion = "v3.0.0-20200313102051-9f266ea9e77c" - ["gopkg.in/yaml.v3".fetch] - type = "git" - url = "https://gopkg.in/yaml.v3" - rev = "9f266ea9e77c4c7aab4cf02650570e7c7b3031a5" - sha256 = "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35" - -["honnef.co/go/tools"] - sumVersion = "v0.0.1-2019.2.3" - ["honnef.co/go/tools".fetch] - type = "git" - url = "https://github.com/dominikh/go-tools" - rev = "afd67930eec2a9ed3e9b19f684d17a062285f16a" - sha256 = "1rwwahmbs4dwxncwjj56likir1kps9937vm2id3rygxzzla40zal" - -["rsc.io/binaryregexp"] - sumVersion = "v0.2.0" - ["rsc.io/binaryregexp".fetch] - type = "git" - url = "https://github.com/rsc/binaryregexp" - rev = "857b9542aaa89cfa42a1477b43fa1f24192fe921" - sha256 = "1kar0myy85waw418zslviwx8846zj0m9cmqkxjx0fvgjdi70nc4b" - -["sigs.k8s.io/yaml"] - sumVersion = "v1.1.0" - ["sigs.k8s.io/yaml".fetch] - type = "git" - url = "https://github.com/kubernetes-sigs/yaml" - rev = "fd68e9863619f6ec2fdd8625fe1f02e7c877e480" - sha256 = "1p7hvjdr5jsyk7nys1g1pmgnf3ys6n320i6hds85afppk81k01kb" - -["sourcegraph.com/sourcegraph/appdash"] - sumVersion = "v0.0.0-20190731080439-ebfcffb1b5c0" - ["sourcegraph.com/sourcegraph/appdash".fetch] - type = "git" - url = "https://github.com/sourcegraph/appdash" - rev = "ebfcffb1b5c00031ce797183546746715a3cfe87" - sha256 = "1xlff68pa7jchg1xr2nkrkk94mrd0ba2z38968j7swlfyf8rkk3d" diff --git a/resources/gaia4/last-synced.narHash b/resources/gaia4/last-synced.narHash deleted file mode 100644 index cc028726..00000000 --- a/resources/gaia4/last-synced.narHash +++ /dev/null @@ -1 +0,0 @@ -sha256-M8JuM26feZpZr2HtXATcxuOP62ZdUVSLkltwc12aNAw= diff --git a/resources/gaia5/default.nix b/resources/gaia5/default.nix deleted file mode 100644 index 0ffa1ce8..00000000 --- a/resources/gaia5/default.nix +++ /dev/null @@ -1,24 +0,0 @@ -{ pkgs, gaia5-src, ledgerSupport ? false }: -let - pname = "gaia"; - version = "v5.0.6"; - tendermint-version = (fromTOML (builtins.readFile ./go-modules.toml))."github.com/tendermint/tendermint".sumVersion; -in -pkgs.buildGoApplication { - inherit pname version; - src = "${gaia5-src}"; - modules = ./go-modules.toml; - preCheck = '' - export HOME="$(mktemp -d)" - ''; - buildFlags = "-tags netgo" + pkgs.lib.optionalString ledgerSupport ",ledger"; - buildFlagsArray = '' - -ldflags= - -X github.com/cosmos/cosmos-sdk/version.Name=${pname} - -X github.com/cosmos/cosmos-sdk/version.AppName=gaiad - -X github.com/cosmos/cosmos-sdk/version.Version=${version} - -X github.com/cosmos/cosmos-sdk/version.Commit=${gaia5-src.rev} - -X github.com/tendermint/tendermint/version.TMCoreSemVer=${tendermint-version} - ''; -} - diff --git a/resources/gaia5/go-modules.toml b/resources/gaia5/go-modules.toml deleted file mode 100644 index aeaa2331..00000000 --- a/resources/gaia5/go-modules.toml +++ /dev/null @@ -1,2953 +0,0 @@ -["bazil.org/fuse"] - sumVersion = "v0.0.0-20160811212531-371fbbdaa898" - ["bazil.org/fuse".fetch] - type = "git" - url = "https://github.com/bazil/fuse" - rev = "371fbbdaa8987b715bdd21d6adc4c9b20155f748" - sha256 = "1x5p301py7mcxgwklfm6pqqkzssln0nfzllng49pnk60m03ilp4w" - -["cloud.google.com/go"] - sumVersion = "v0.65.0" - ["cloud.google.com/go".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "5f1389763ab4f59736c2a60413b7cb0c59f044a2" - sha256 = "0xrcg39jrw90gq8vl8pfq63sp3bkak04wh392yj5rh4lc1a4lxjq" - -["cloud.google.com/go/bigquery"] - sumVersion = "v1.8.0" - relPath = "bigquery" - ["cloud.google.com/go/bigquery".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "0aa265f094062dbc111a6906d279fbb88a6cc761" - sha256 = "1127ha4r0xjsfl04mdb134b6kvpc6yz5bx4bba8m1jmb4k3vyg3j" - -["cloud.google.com/go/datastore"] - sumVersion = "v1.1.0" - relPath = "datastore" - ["cloud.google.com/go/datastore".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "d96ccb2ba7586bb79a416471882d347754a78ce5" - sha256 = "18f1l28665x1a8j8a5bh2i7wb2vrwj050d1g5qda50isgqaybixd" - -["cloud.google.com/go/firestore"] - sumVersion = "v1.1.0" - relPath = "firestore" - ["cloud.google.com/go/firestore".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "20091f47d3c522ea545f358dd9ac1cdb326bba6f" - sha256 = "0slvm0vx5f8l2vs4k9k8jv8qnz6z9dzq25xmrhza82cj9j51ghvb" - -["cloud.google.com/go/pubsub"] - sumVersion = "v1.3.1" - relPath = "pubsub" - ["cloud.google.com/go/pubsub".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "f4685751540ab300d8e99946847a75f7d0837e45" - sha256 = "1fxsj63d773yf6mjas5gwsq2caa6iqxmss6mms0yfdcc6krg6zkf" - -["cloud.google.com/go/storage"] - sumVersion = "v1.10.0" - relPath = "storage" - ["cloud.google.com/go/storage".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "3f2988d48e253a8e290b8c0e821284eead1131a0" - sha256 = "10fp6galzz8jwx35159xdcrwsqaz95xw78iwv1z5n67vhglwi5nf" - -["dmitri.shuralyov.com/gpu/mtl"] - sumVersion = "v0.0.0-20190408044501-666a987793e9" - ["dmitri.shuralyov.com/gpu/mtl".fetch] - type = "git" - url = "https://dmitri.shuralyov.com/gpu/mtl" - rev = "666a987793e9432fbb48592aa2f3bf3463685dfa" - sha256 = "1isd03hgiwcf2ld1rlp0plrnfz7r4i7c5q4kb6hkcd22axnmrv0z" - -["github.com/99designs/keyring"] - sumVersion = "v1.1.6" - ["github.com/99designs/keyring".fetch] - type = "git" - url = "https://github.com/99designs/keyring" - rev = "68286ee5140ad1c5cce93fcc054e6cc90015b0ea" - sha256 = "08rcdqpxaa9n348q10fw40q4gxpjajkyrighykk71i7mxzwkcgwn" - -["github.com/Azure/go-ansiterm"] - sumVersion = "v0.0.0-20210617225240-d185dfc1b5a1" - ["github.com/Azure/go-ansiterm".fetch] - type = "git" - url = "https://github.com/Azure/go-ansiterm" - rev = "d185dfc1b5a126116ea5a19e148e29d16b4574c9" - sha256 = "1y54b1fx80qlyvv2915xrryb9vcc8nnbsdkxszhxjg8bcg85ps5c" - -["github.com/BurntSushi/toml"] - sumVersion = "v0.3.1" - ["github.com/BurntSushi/toml".fetch] - type = "git" - url = "https://github.com/BurntSushi/toml" - rev = "3012a1dbe2e4bd1391d42b32f0577cb7bbc7f005" - sha256 = "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6" - -["github.com/BurntSushi/xgb"] - sumVersion = "v0.0.0-20160522181843-27f122750802" - ["github.com/BurntSushi/xgb".fetch] - type = "git" - url = "https://github.com/BurntSushi/xgb" - rev = "27f122750802c950b2c869a5b63dafcf590ced95" - sha256 = "18lp2x8f5bljvlz0r7xn744f0c9rywjsb9ifiszqqdcpwhsa0kvj" - -["github.com/ChainSafe/go-schnorrkel"] - sumVersion = "v0.0.0-20200405005733-88cbf1b4c40d" - ["github.com/ChainSafe/go-schnorrkel".fetch] - type = "git" - url = "https://github.com/ChainSafe/go-schnorrkel" - rev = "88cbf1b4c40de64a5ea4863476c6c8ae5433c594" - sha256 = "09ncxdzy4scwmgj96lq83a40bb29nkws1y9x0nim86l9x5jmgi4b" - -["github.com/DataDog/datadog-go"] - sumVersion = "v3.2.0+incompatible" - ["github.com/DataDog/datadog-go".fetch] - type = "git" - url = "https://github.com/DataDog/datadog-go" - rev = "8bfdc335936a79b55b3e2c1080930bc5a3eb57f2" - sha256 = "1m8anll166rwcprjyv3bb0l450p35m0gzn6fs7bcd3ck2s527k7x" - -["github.com/DataDog/zstd"] - sumVersion = "v1.4.5" - ["github.com/DataDog/zstd".fetch] - type = "git" - url = "https://github.com/DataDog/zstd" - rev = "0e71ac6221c995a831bb393da70730c3d3a07091" - sha256 = "0xhgh7nzxq3lzba7w7v3w5mb4nb799v5xh5ylml0hk21ricm7g9s" - -["github.com/Knetic/govaluate"] - sumVersion = "v3.0.1-0.20171022003610-9aa49832a739+incompatible" - ["github.com/Knetic/govaluate".fetch] - type = "git" - url = "https://github.com/Knetic/govaluate" - rev = "9aa49832a739dcd78a5542ff189fb82c3e423116" - sha256 = "12klijhq4fckzbhv0cwygbazj6lvhmdqksha9y6jgfmwzv51kwv5" - -["github.com/Microsoft/go-winio"] - sumVersion = "v0.5.0" - ["github.com/Microsoft/go-winio".fetch] - type = "git" - url = "https://github.com/Microsoft/go-winio" - rev = "58dba89befbca5b5a2c944f84642f5b0540bcfd5" - sha256 = "123p5by5craqigydfqj0hchplcv75zz81xzj5s3ixq624qjbg0z5" - -["github.com/Nvveen/Gotty"] - sumVersion = "v0.0.0-20120604004816-cd527374f1e5" - ["github.com/Nvveen/Gotty".fetch] - type = "git" - url = "https://github.com/Nvveen/Gotty" - rev = "cd527374f1e5bff4938207604a14f2e38a9cf512" - sha256 = "1ylvr1p6p036ns3g3wdz8f92f69symshkc8j54fa6gpg4hyk0k6q" - -["github.com/OneOfOne/xxhash"] - sumVersion = "v1.2.2" - ["github.com/OneOfOne/xxhash".fetch] - type = "git" - url = "https://github.com/OneOfOne/xxhash" - rev = "6def279d2ce6c81a79dd1c1be580f03bb216fb8a" - sha256 = "1mjfhrwhvxa48rycjnqpqzm521i38h1hdyz6pdwmhd7xb8j6gwi6" - -["github.com/Shopify/sarama"] - sumVersion = "v1.19.0" - ["github.com/Shopify/sarama".fetch] - type = "git" - url = "https://github.com/Shopify/sarama" - rev = "ec843464b50d4c8b56403ec9d589cf41ea30e722" - sha256 = "0q1z3pvcd011yprwzws2s293v4cjvsszhai6vnfrahjcbsz79q0z" - -["github.com/Shopify/toxiproxy"] - sumVersion = "v2.1.4+incompatible" - ["github.com/Shopify/toxiproxy".fetch] - type = "git" - url = "https://github.com/Shopify/toxiproxy" - rev = "49b4ea27da29ae83ad3bfe7f7f090d18cbee1dc3" - sha256 = "07yhsvscdv1qjfc2fyyh9qsrrdwrrw04wadk5gaq4qddcway7vig" - -["github.com/VividCortex/gohistogram"] - sumVersion = "v1.0.0" - ["github.com/VividCortex/gohistogram".fetch] - type = "git" - url = "https://github.com/VividCortex/gohistogram" - rev = "51564d9861991fb0ad0f531c99ef602d0f9866e6" - sha256 = "1ykpvrkri3mzc0z77kdva93ylh0bqg7jq3i024r3iv0i6bwx3rnf" - -["github.com/Workiva/go-datastructures"] - sumVersion = "v1.0.52" - ["github.com/Workiva/go-datastructures".fetch] - type = "git" - url = "https://github.com/Workiva/go-datastructures" - rev = "0819bcaf26091e7c33585441f8961854c2400faa" - sha256 = "0qsj9r3md4n9nxmlvg6cgysivm4ay905ivbk5vi5csnykwnamqmk" - -["github.com/adlio/schema"] - sumVersion = "v1.1.13" - ["github.com/adlio/schema".fetch] - type = "git" - url = "https://github.com/adlio/schema" - rev = "158666f4977057e9c8000a43995556d43f18fc8e" - sha256 = "18myq29vi5l3l1yzmpvam29m8lb6pgihs2a3gxpip9m38cz72rsf" - -["github.com/aead/siphash"] - sumVersion = "v1.0.1" - ["github.com/aead/siphash".fetch] - type = "git" - url = "https://github.com/aead/siphash" - rev = "83563a290f60225eb120d724600b9690c3fb536f" - sha256 = "01kd1z82sc4nh3nj9c25aryyp396s7jrqc2kz9d7qq1vy2hdbznc" - -["github.com/afex/hystrix-go"] - sumVersion = "v0.0.0-20180502004556-fa1af6a1f4f5" - ["github.com/afex/hystrix-go".fetch] - type = "git" - url = "https://github.com/afex/hystrix-go" - rev = "fa1af6a1f4f56e0e50d427fe901cd604d8c6fb8a" - sha256 = "0zlj0330j816flvwvis4d4vv1gigpxlghph7awbc9jb7ggf2qssn" - -["github.com/alecthomas/template"] - sumVersion = "v0.0.0-20190718012654-fb15b899a751" - ["github.com/alecthomas/template".fetch] - type = "git" - url = "https://github.com/alecthomas/template" - rev = "fb15b899a75114aa79cc930e33c46b577cc664b1" - sha256 = "1vlasv4dgycydh5wx6jdcvz40zdv90zz1h7836z7lhsi2ymvii26" - -["github.com/alecthomas/units"] - sumVersion = "v0.0.0-20190924025748-f65c72e2690d" - ["github.com/alecthomas/units".fetch] - type = "git" - url = "https://github.com/alecthomas/units" - rev = "f65c72e2690dc4b403c8bd637baf4611cd4c069b" - sha256 = "04jyqm7m3m01ppfy1f9xk4qvrwvs78q9zml6llyf2b3v5k6b2bbc" - -["github.com/antihax/optional"] - sumVersion = "v1.0.0" - ["github.com/antihax/optional".fetch] - type = "git" - url = "https://github.com/antihax/optional" - rev = "c3f0ba9c1a592b971d66b2787679af55b5c58f21" - sha256 = "1ix08vl49qxr58rc6201cl97g1yznhhkwvqldslawind99js4rj0" - -["github.com/apache/thrift"] - sumVersion = "v0.13.0" - ["github.com/apache/thrift".fetch] - type = "git" - url = "https://github.com/apache/thrift" - rev = "cecee50308fc7e6f77f55b3fd906c1c6c471fa2f" - sha256 = "17ckl7p7s3ga33yrjisilsimp80ansqxl54wvpkv0j7vx2zvc13y" - -["github.com/armon/circbuf"] - sumVersion = "v0.0.0-20150827004946-bbbad097214e" - ["github.com/armon/circbuf".fetch] - type = "git" - url = "https://github.com/armon/circbuf" - rev = "bbbad097214e2918d8543d5201d12bfd7bca254d" - sha256 = "1idpr0lzb2px2p3wgfq2276yl7jpaz43df6n91kf790404s4zmk3" - -["github.com/armon/consul-api"] - sumVersion = "v0.0.0-20180202201655-eb2c6b5be1b6" - ["github.com/armon/consul-api".fetch] - type = "git" - url = "https://github.com/armon/consul-api" - rev = "eb2c6b5be1b66bab83016e0b05f01b8d5496ffbd" - sha256 = "1j6fdr1sg36qy4n4xjl7brq739fpm5npq98cmvklzjc9qrx98nk9" - -["github.com/armon/go-metrics"] - sumVersion = "v0.3.8" - ["github.com/armon/go-metrics".fetch] - type = "git" - url = "https://github.com/armon/go-metrics" - rev = "a054c40a13a85da90bb36b889d4e20664a173215" - sha256 = "04mdy4i2jpmrim8n6fssrsadbq6x0af3bjm9h5f51x4lxf0v60zs" - -["github.com/armon/go-radix"] - sumVersion = "v0.0.0-20180808171621-7fddfc383310" - ["github.com/armon/go-radix".fetch] - type = "git" - url = "https://github.com/armon/go-radix" - rev = "7fddfc383310abc091d79a27f116d30cf0424032" - sha256 = "0y8chspn14n9xpsfb9gxnnf819rfpriaz64v81p7873a42kkhxb4" - -["github.com/aryann/difflib"] - sumVersion = "v0.0.0-20170710044230-e206f873d14a" - ["github.com/aryann/difflib".fetch] - type = "git" - url = "https://github.com/aryann/difflib" - rev = "e206f873d14a916d3d26c40ab667bca123f365a3" - sha256 = "00zb9sx6l6b2zq614x45zlyshl20zjhwfj8r5krw4f9y0mx3n2dm" - -["github.com/aws/aws-lambda-go"] - sumVersion = "v1.13.3" - ["github.com/aws/aws-lambda-go".fetch] - type = "git" - url = "https://github.com/aws/aws-lambda-go" - rev = "b5b7267d297de263cc5b61f8c37543daa9c95ffd" - sha256 = "049zq6gr9xdjjsxd3yimawqlh2ibfkj2434cnjm4x93ph62hppm9" - -["github.com/aws/aws-sdk-go"] - sumVersion = "v1.27.0" - ["github.com/aws/aws-sdk-go".fetch] - type = "git" - url = "https://github.com/aws/aws-sdk-go" - rev = "a1e6946e8014a793d989e64ef5566315010ce898" - sha256 = "1b2lkbvlbgkas1l7cilnanr4mc0z2l28ii5bpsrcp3azn6wdjfpx" - -["github.com/aws/aws-sdk-go-v2"] - sumVersion = "v0.18.0" - ["github.com/aws/aws-sdk-go-v2".fetch] - type = "git" - url = "https://github.com/aws/aws-sdk-go-v2" - rev = "b0e297c21991cec8a5d645714ea400caa790cb43" - sha256 = "00nrd8bs80w5k0ms31gqjpnl2mf0jav4hr8m54w8a7l13w5szy7s" - -["github.com/beorn7/perks"] - sumVersion = "v1.0.1" - ["github.com/beorn7/perks".fetch] - type = "git" - url = "https://github.com/beorn7/perks" - rev = "37c8de3658fcb183f997c4e13e8337516ab753e6" - sha256 = "17n4yygjxa6p499dj3yaqzfww2g7528165cl13haj97hlx94dgl7" - -["github.com/bgentry/speakeasy"] - sumVersion = "v0.1.0" - ["github.com/bgentry/speakeasy".fetch] - type = "git" - url = "https://github.com/bgentry/speakeasy" - rev = "4aabc24848ce5fd31929f7d1e4ea74d3709c14cd" - sha256 = "02dfrj0wyphd3db9zn2mixqxwiz1ivnyc5xc7gkz58l5l27nzp8s" - -["github.com/bits-and-blooms/bitset"] - sumVersion = "v1.2.0" - ["github.com/bits-and-blooms/bitset".fetch] - type = "git" - url = "https://github.com/bits-and-blooms/bitset" - rev = "59de210119f50cedaa42d175dc88b6335fcf63f6" - sha256 = "0r9f7lvz6znl7yr6njg77m8hj472yhdshf1qaybwyw7j8as6c4r3" - -["github.com/bketelsen/crypt"] - sumVersion = "v0.0.3-0.20200106085610-5cbc8cc4026c" - ["github.com/bketelsen/crypt".fetch] - type = "git" - url = "https://github.com/bketelsen/crypt" - rev = "5cbc8cc4026c0c1d3bf9c5d4e5a30398f99c99a9" - sha256 = "006772d50c73llgz8chvynndk28qxcyr1fd18sm0b5w1g1rdw2wp" - -["github.com/btcsuite/btcd"] - sumVersion = "v0.21.0-beta" - ["github.com/btcsuite/btcd".fetch] - type = "git" - url = "https://github.com/btcsuite/btcd" - rev = "56cc42fe07c206e76812fc57a216b59c41189f04" - sha256 = "19n9qfbnqfzz6j0pi2yzgzm4yvvqdkj5d4jhfv7sznv9jzzxwk7k" - -["github.com/btcsuite/btclog"] - sumVersion = "v0.0.0-20170628155309-84c8d2346e9f" - ["github.com/btcsuite/btclog".fetch] - type = "git" - url = "https://github.com/btcsuite/btclog" - rev = "84c8d2346e9fc8c7b947e243b9c24e6df9fd206a" - sha256 = "02dl46wcnfpg9sqvg0ipipkpnd7lrf4fnvb9zy56jqa7mfcwc7wk" - -["github.com/btcsuite/btcutil"] - sumVersion = "v1.0.2" - ["github.com/btcsuite/btcutil".fetch] - type = "git" - url = "https://github.com/btcsuite/btcutil" - rev = "b2bf7f89d674a3702182b7e15f52807896051af3" - sha256 = "0wwykb4cbq8xj2mls2mxma5vaahdgdy3vqw1r2fi4wyj0yr4kyw9" - -["github.com/btcsuite/go-socks"] - sumVersion = "v0.0.0-20170105172521-4720035b7bfd" - ["github.com/btcsuite/go-socks".fetch] - type = "git" - url = "https://github.com/btcsuite/go-socks" - rev = "4720035b7bfd2a9bb130b1c184f8bbe41b6f0d0f" - sha256 = "18cv2icj059lq4s99p6yh91hlas5f2gi3f1p4c10sjgwrs933d7b" - -["github.com/btcsuite/goleveldb"] - sumVersion = "v1.0.0" - ["github.com/btcsuite/goleveldb".fetch] - type = "git" - url = "https://github.com/btcsuite/goleveldb" - rev = "3fd0373267b6461dbefe91cef614278064d05465" - sha256 = "0kwllw5yflpn362xbsqphbm10qcy08v3zqs15zbyp4mkjjk0bl9z" - -["github.com/btcsuite/snappy-go"] - sumVersion = "v1.0.0" - ["github.com/btcsuite/snappy-go".fetch] - type = "git" - url = "https://github.com/btcsuite/snappy-go" - rev = "b3db38edf0a9a11a115eb6b022d8c946024a9ac0" - sha256 = "0b2536a58l6advb0ag9ywz7i5cdzclvmm3x796jydv1yrbj5x2vk" - -["github.com/btcsuite/websocket"] - sumVersion = "v0.0.0-20150119174127-31079b680792" - ["github.com/btcsuite/websocket".fetch] - type = "git" - url = "https://github.com/btcsuite/websocket" - rev = "31079b6807923eb23992c421b114992b95131b55" - sha256 = "0xpkf257ml6fpfdgv7hxxc41n0d5yxxm3njm50qpzp7j71l9cjwa" - -["github.com/btcsuite/winsvc"] - sumVersion = "v1.0.0" - ["github.com/btcsuite/winsvc".fetch] - type = "git" - url = "https://github.com/btcsuite/winsvc" - rev = "f8fb11f83f7e860e3769a08e6811d1b399a43722" - sha256 = "0nsw8y86a5hzr2a3j6ch9myrpccj5bnsgaxpgajhzfk5d31xlw1z" - -["github.com/casbin/casbin/v2"] - sumVersion = "v2.1.2" - ["github.com/casbin/casbin/v2".fetch] - type = "git" - url = "https://github.com/casbin/casbin" - rev = "31a4cf3e119fdace8f02263315e83ca37a3fcc18" - sha256 = "175y7v4wlr26g23k551676zq3n3cxv8wjm3zsfhyxy3liikg7899" - -["github.com/cenkalti/backoff"] - sumVersion = "v2.2.1+incompatible" - ["github.com/cenkalti/backoff".fetch] - type = "git" - url = "https://github.com/cenkalti/backoff" - rev = "5267b6dd4d2666b980a911bf235efa276222cbe2" - sha256 = "1mf4lsl3rbb8kk42x0mrhzzy4ikqy0jf6nxpzhkr02rdgwh6rjk8" - -["github.com/census-instrumentation/opencensus-proto"] - sumVersion = "v0.2.1" - ["github.com/census-instrumentation/opencensus-proto".fetch] - type = "git" - url = "https://github.com/census-instrumentation/opencensus-proto" - rev = "d89fa54de508111353cb0b06403c00569be780d8" - sha256 = "19fcx3sc99i5dsklny6r073z5j20vlwn2xqm6di1q3b1xwchzqfj" - -["github.com/cespare/xxhash"] - sumVersion = "v1.1.0" - ["github.com/cespare/xxhash".fetch] - type = "git" - url = "https://github.com/cespare/xxhash" - rev = "569f7c8abf1f58d9043ab804d364483cb1c853b6" - sha256 = "1qyzlcdcayavfazvi03izx83fvip8h36kis44zr2sg7xf6sx6l4x" - -["github.com/cespare/xxhash/v2"] - sumVersion = "v2.1.1" - ["github.com/cespare/xxhash/v2".fetch] - type = "git" - url = "https://github.com/cespare/xxhash" - rev = "d7df74196a9e781ede915320c11c378c1b2f3a1f" - sha256 = "0rl5rs8546zj1vzggv38w93wx0b5dvav7yy5hzxa8kw7iikv1cgr" - -["github.com/checkpoint-restore/go-criu/v5"] - sumVersion = "v5.0.0" - ["github.com/checkpoint-restore/go-criu/v5".fetch] - type = "git" - url = "https://github.com/checkpoint-restore/go-criu" - rev = "885cc36edb02fc5afeed0759885b473c16d249d8" - sha256 = "07dal5a9y43azkkh61jf6s81h7anbl17drkh2mal9mzcsi8wa2z8" - -["github.com/chzyer/logex"] - sumVersion = "v1.1.10" - ["github.com/chzyer/logex".fetch] - type = "git" - url = "https://github.com/chzyer/logex" - rev = "cd112f618178aaaf4ea8592c8839f5276145d9cf" - sha256 = "08pbjj3wx9acavlwyr055isa8a5hnmllgdv5k6ra60l5y1brmlq4" - -["github.com/chzyer/readline"] - sumVersion = "v0.0.0-20180603132655-2972be24d48e" - ["github.com/chzyer/readline".fetch] - type = "git" - url = "https://github.com/chzyer/readline" - rev = "2972be24d48e78746da79ba8e24e8b488c9880de" - sha256 = "104q8dazj8yf6b089jjr82fy9h1g80zyyzvp3g8b44a7d8ngjj6r" - -["github.com/chzyer/test"] - sumVersion = "v0.0.0-20180213035817-a1ea475d72b1" - ["github.com/chzyer/test".fetch] - type = "git" - url = "https://github.com/chzyer/test" - rev = "a1ea475d72b168a29f44221e0ad031a842642302" - sha256 = "0rns2aqk22i9xsgyap0pq8wi4cfaxsri4d9q6xxhhyma8jjsnj2k" - -["github.com/cilium/ebpf"] - sumVersion = "v0.6.2" - ["github.com/cilium/ebpf".fetch] - type = "git" - url = "https://github.com/cilium/ebpf" - rev = "ca492085341e0e917f48ec30704d5054c5d42ca8" - sha256 = "0x64sg0kyc8bbsp75dpv8g2jfmpdldsshf9ni49jh6rgsnnqhpf8" - -["github.com/circonus-labs/circonus-gometrics"] - sumVersion = "v2.3.1+incompatible" - ["github.com/circonus-labs/circonus-gometrics".fetch] - type = "git" - url = "https://github.com/circonus-labs/circonus-gometrics" - rev = "9eb673b3d5f6bf1c932ae7596831eefb0c0c3c2f" - sha256 = "0s2wir711h0k2h8xsypgpzshccnx8jkwjfni7n32l7wd8yng9ngs" - -["github.com/circonus-labs/circonusllhist"] - sumVersion = "v0.1.3" - ["github.com/circonus-labs/circonusllhist".fetch] - type = "git" - url = "https://github.com/circonus-labs/circonusllhist" - rev = "87d4d00b35adeefe4911ece727838749e0fab113" - sha256 = "127js92p5gx84vfj3vdmf7nn6dmqmkrxg927z0jh91fdkipmmv3i" - -["github.com/clbanning/x2j"] - sumVersion = "v0.0.0-20191024224557-825249438eec" - ["github.com/clbanning/x2j".fetch] - type = "git" - url = "https://github.com/clbanning/x2j" - rev = "825249438eec392bc87b980fb635b336e496a888" - sha256 = "1khqy1m22vnyw0x24i4bwd37zvgzj25q139mh79bddj1rw5hf7hy" - -["github.com/cncf/udpa/go"] - sumVersion = "v0.0.0-20191209042840-269d4d468f6f" - relPath = "go" - ["github.com/cncf/udpa/go".fetch] - type = "git" - url = "https://github.com/cncf/udpa" - rev = "269d4d468f6f798d803d140c3016ed6fc6b735c5" - sha256 = "0i1jiaw2k3hlwwmg4hap81vb4s1p25xp9kdfww37v0fbgjariccs" - -["github.com/cockroachdb/datadriven"] - sumVersion = "v0.0.0-20190809214429-80d97fb3cbaa" - ["github.com/cockroachdb/datadriven".fetch] - type = "git" - url = "https://github.com/cockroachdb/datadriven" - rev = "80d97fb3cbaa752564320702f409fdb2ef3da0ef" - sha256 = "0rvavka9zhri6r50n8fy98247fl5vycb1hffjrhshsicjv1frmlp" - -["github.com/codahale/hdrhistogram"] - sumVersion = "v0.0.0-20161010025455-3a0bb77429bd" - ["github.com/codahale/hdrhistogram".fetch] - type = "git" - url = "https://github.com/codahale/hdrhistogram" - rev = "3a0bb77429bd3a61596f5e8a3172445844342120" - sha256 = "1zampgfjbxy192cbwdi7g86l1idxaam96d834wncnpfdwgh5kl57" - -["github.com/confio/ics23/go"] - sumVersion = "v0.6.6" - relPath = "go" - ["github.com/confio/ics23/go".fetch] - type = "git" - url = "https://github.com/confio/ics23" - rev = "6cf2f712b5ecccf0a138c29a77b726d57bdaad51" - sha256 = "0r1vk5lvjfri57hd5dk75dfiyzz57qaljshw6sr80aj5v8krzxsn" - -["github.com/containerd/console"] - sumVersion = "v1.0.2" - ["github.com/containerd/console".fetch] - type = "git" - url = "https://github.com/containerd/console" - rev = "2f1e3d2b6afd18e8b2077816c711205a0b4d8769" - sha256 = "0rxwgq578hphs2ldx1gg6c9fq1qm8rgqfx3vgi2sbrsmxn6m2438" - -["github.com/containerd/continuity"] - sumVersion = "v0.1.0" - ["github.com/containerd/continuity".fetch] - type = "git" - url = "https://github.com/containerd/continuity" - rev = "bce1c3f9669b6f3e7f6656ee715b0b4d75fa64a6" - sha256 = "1h756l1xc31sc4zc1d3hmh64kl9qm5vpbbw0c93hrasn51ki96yz" - -["github.com/coreos/bbolt"] - sumVersion = "v1.3.2" - ["github.com/coreos/bbolt".fetch] - type = "git" - url = "https://github.com/coreos/bbolt" - rev = "63597a96ec0ad9e6d43c3fc81e809909e0237461" - sha256 = "13d5l6p6c5wvkr6vn9hkhz9c593qifn7fgx0hg4d6jcvg1y0bnm2" - -["github.com/coreos/etcd"] - sumVersion = "v3.3.13+incompatible" - ["github.com/coreos/etcd".fetch] - type = "git" - url = "https://github.com/coreos/etcd" - rev = "98d308426819d892e149fe45f6fd542464cb1f9d" - sha256 = "1kac4qfr83f2hdz35403f1ald05wc85vvhw79vxb431n61jvyaqy" - -["github.com/coreos/go-etcd"] - sumVersion = "v2.0.0+incompatible" - ["github.com/coreos/go-etcd".fetch] - type = "git" - url = "https://github.com/coreos/go-etcd" - rev = "f02171fbd43c7b9b53ce8679b03235a1ef3c7b12" - sha256 = "1xb34hzaa1lkbq5vkzy9vcz6gqwj7hp6cdbvyack2bf28dwn33jj" - -["github.com/coreos/go-semver"] - sumVersion = "v0.3.0" - ["github.com/coreos/go-semver".fetch] - type = "git" - url = "https://github.com/coreos/go-semver" - rev = "e214231b295a8ea9479f11b70b35d5acf3556d9b" - sha256 = "0770h1mpig2j5sbiha3abnwaw8p6dg9i87r8pc7cf6m4kwml3sc9" - -["github.com/coreos/go-systemd"] - sumVersion = "v0.0.0-20190321100706-95778dfbb74e" - ["github.com/coreos/go-systemd".fetch] - type = "git" - url = "https://github.com/coreos/go-systemd" - rev = "95778dfbb74eb7e4dbaf43bf7d71809650ef8076" - sha256 = "1s3bg9p78wkixn2bqb2p23wbsqfg949ml6crw2b498s71mwh8rcf" - -["github.com/coreos/go-systemd/v22"] - sumVersion = "v22.3.2" - ["github.com/coreos/go-systemd/v22".fetch] - type = "git" - url = "https://github.com/coreos/go-systemd" - rev = "777e73a89cef78631ccaa97f53a9bae67e166186" - sha256 = "1ndi86b8va84ha93njqgafypz4di7yxfd5r5kf1r0s3y3ghcjajq" - -["github.com/coreos/pkg"] - sumVersion = "v0.0.0-20180928190104-399ea9e2e55f" - ["github.com/coreos/pkg".fetch] - type = "git" - url = "https://github.com/coreos/pkg" - rev = "399ea9e2e55f791b6e3d920860dbecb99c3692f0" - sha256 = "0nxbn0m7lr4dg0yrwnvlkfiyg3ndv8vdpssjx7b714nivpc6ar0y" - -["github.com/cosmos/cosmos-sdk"] - sumVersion = "v0.42.10" - ["github.com/cosmos/cosmos-sdk".fetch] - type = "git" - url = "https://github.com/cosmos/cosmos-sdk" - rev = "58270e8a2e67beed4d016bbdbfcc21b7feb192b7" - sha256 = "1y0wcvbkg91dg75cgx25zhm2bib24j1dd2w8hgy8ag6si5il3yw1" - -["github.com/cosmos/go-bip39"] - sumVersion = "v1.0.0" - ["github.com/cosmos/go-bip39".fetch] - type = "git" - url = "https://github.com/cosmos/go-bip39" - rev = "3027fe585f89a39da9b7389bd4e3482e056f6d3f" - sha256 = "0q063bsalxffq41l3f6xlr50xa2985liw6y5niiwnjysdc5rlva2" - -["github.com/cosmos/iavl"] - sumVersion = "v0.17.1" - ["github.com/cosmos/iavl".fetch] - type = "git" - url = "https://github.com/cosmos/iavl" - rev = "8e24bc87fc0702f0994ac3b2b55386235c3dd3cf" - sha256 = "1q5fbk4afkxxlgyj82xfxfmwzcpsaa4hwm431xl8b34xhpdglkdp" - -["github.com/cosmos/ledger-cosmos-go"] - sumVersion = "v0.11.1" - ["github.com/cosmos/ledger-cosmos-go".fetch] - type = "git" - url = "https://github.com/cosmos/ledger-cosmos-go" - rev = "c03f491cbf1740e5ec7919683019c2c84d9fbc10" - sha256 = "0c584nig16mz1i5w1pp741q1ymb1ln70kvxkv3l62rkdymbbwn6a" - -["github.com/cosmos/ledger-go"] - sumVersion = "v0.9.2" - ["github.com/cosmos/ledger-go".fetch] - type = "git" - url = "https://github.com/cosmos/ledger-go" - rev = "1c99b41f1877b58e3517ef93012cc76fe5cd335b" - sha256 = "10vnj13c8diq3bxvf2m46s8ifj4fj1iwsw5hg7i1h55h1v83x0ni" - -["github.com/cpuguy83/go-md2man"] - sumVersion = "v1.0.10" - ["github.com/cpuguy83/go-md2man".fetch] - type = "git" - url = "https://github.com/cpuguy83/go-md2man" - rev = "7762f7e404f8416dfa1d9bb6a8c192aa9acb4d19" - sha256 = "1bqkf2bvy1dns9zd24k81mh2p1zxsx2nhq5cj8dz2vgkv1xkh60i" - -["github.com/cpuguy83/go-md2man/v2"] - sumVersion = "v2.0.0" - ["github.com/cpuguy83/go-md2man/v2".fetch] - type = "git" - url = "https://github.com/cpuguy83/go-md2man" - rev = "f79a8a8ca69da163eee19ab442bedad7a35bba5a" - sha256 = "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv" - -["github.com/creack/pty"] - sumVersion = "v1.1.7" - ["github.com/creack/pty".fetch] - type = "git" - url = "https://github.com/creack/pty" - rev = "2769f65a3a94eb8f876f44a0459d24ae7ad2e488" - sha256 = "1plwwlk1i9b80zv8zdplvv81shfyc9gf0flydnydsh5sr3ib5vrc" - -["github.com/cyphar/filepath-securejoin"] - sumVersion = "v0.2.2" - ["github.com/cyphar/filepath-securejoin".fetch] - type = "git" - url = "https://github.com/cyphar/filepath-securejoin" - rev = "a261ee33d7a517f054effbf451841abaafe3e0fd" - sha256 = "0id32zjb92wm569m29nfrzz5mw9z1glr3klayr6j134pp4h1sgq4" - -["github.com/danieljoos/wincred"] - sumVersion = "v1.0.2" - ["github.com/danieljoos/wincred".fetch] - type = "git" - url = "https://github.com/danieljoos/wincred" - rev = "b892d337201d1400370ebf4fa919941c9ea222ee" - sha256 = "1ym8mygjrf3rw1qka9irw76b2yisr2l5pq2w581s40yldnbfq4lc" - -["github.com/davecgh/go-spew"] - sumVersion = "v1.1.1" - ["github.com/davecgh/go-spew".fetch] - type = "git" - url = "https://github.com/davecgh/go-spew" - rev = "8991bc29aa16c548c550c7ff78260e27b9ab7c73" - sha256 = "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y" - -["github.com/decred/dcrd/lru"] - sumVersion = "v1.0.0" - relPath = "lru" - ["github.com/decred/dcrd/lru".fetch] - type = "git" - url = "https://github.com/decred/dcrd" - rev = "5c3e0d6454001c8d14fcf06be94381d93991aaea" - sha256 = "0m2mxrkbnr4dfan9ljxq9dd5hhqmpx5n9pd4hnwn5mlj4zgv018a" - -["github.com/dgraph-io/badger/v2"] - sumVersion = "v2.2007.2" - ["github.com/dgraph-io/badger/v2".fetch] - type = "git" - url = "https://github.com/dgraph-io/badger" - rev = "d5a25b83fbf4f3f61ff03a9202e36f5b75544426" - sha256 = "0cck8ap61bi56dv070cirkkl6fjavz05kwyxjv08lbfykhlpz3da" - -["github.com/dgraph-io/ristretto"] - sumVersion = "v0.0.3" - ["github.com/dgraph-io/ristretto".fetch] - type = "git" - url = "https://github.com/dgraph-io/ristretto" - rev = "bcb54d096f2303ce80960e125b5991ac4d6325c3" - sha256 = "1v29j6b0r87pf5dwsxi3rxa8yavkl3h79i63rbddfd42p2jyssyg" - -["github.com/dgrijalva/jwt-go"] - sumVersion = "v3.2.0+incompatible" - ["github.com/dgrijalva/jwt-go".fetch] - type = "git" - url = "https://github.com/dgrijalva/jwt-go" - rev = "06ea1031745cb8b3dab3f6a236daf2b0aa468b7e" - sha256 = "08m27vlms74pfy5z79w67f9lk9zkx6a9jd68k3c4msxy75ry36mp" - -["github.com/dgryski/go-farm"] - sumVersion = "v0.0.0-20200201041132-a6ae2369ad13" - ["github.com/dgryski/go-farm".fetch] - type = "git" - url = "https://github.com/dgryski/go-farm" - rev = "a6ae2369ad13dc757768086f0cb902728c7e03e5" - sha256 = "1qbz4a4fv3853ix974x02q1129kc4xxf0c92ib5sdpsq04zjbqv8" - -["github.com/dgryski/go-sip13"] - sumVersion = "v0.0.0-20181026042036-e10d5fee7954" - ["github.com/dgryski/go-sip13".fetch] - type = "git" - url = "https://github.com/dgryski/go-sip13" - rev = "e10d5fee79544bd84105c9329adcc7b745fd588c" - sha256 = "15fyibfas209ljz3f7g07kdmfbl3hhyd9n5n7aq5n5p9m5mn41d6" - -["github.com/docker/go-connections"] - sumVersion = "v0.4.0" - ["github.com/docker/go-connections".fetch] - type = "git" - url = "https://github.com/docker/go-connections" - rev = "7395e3f8aa162843a74ed6d48e79627d9792ac55" - sha256 = "0mv6f6b5nljc17dmwmc28hc0y11pqglz7x0d2mjrwdmfxf64hwqq" - -["github.com/docker/go-units"] - sumVersion = "v0.4.0" - ["github.com/docker/go-units".fetch] - type = "git" - url = "https://github.com/docker/go-units" - rev = "519db1ee28dcc9fd2474ae59fca29a810482bfb1" - sha256 = "0k8gja8ql4pqg5rzmqvka42vjfs6rzablak87whcnqba6qxpimvz" - -["github.com/dustin/go-humanize"] - sumVersion = "v1.0.0" - ["github.com/dustin/go-humanize".fetch] - type = "git" - url = "https://github.com/dustin/go-humanize" - rev = "9f541cc9db5d55bce703bd99987c9d5cb8eea45e" - sha256 = "1kqf1kavdyvjk7f8kx62pnm7fbypn9z1vbf8v2qdh3y7z7a0cbl3" - -["github.com/dvsekhvalnov/jose2go"] - sumVersion = "v0.0.0-20200901110807-248326c1351b" - ["github.com/dvsekhvalnov/jose2go".fetch] - type = "git" - url = "https://github.com/dvsekhvalnov/jose2go" - rev = "248326c1351b716b2820b01a49d53837bfd9ac59" - sha256 = "06zj4n96pa5lnx8pxjhn3vis01fjklhsdqbcbqdv9m4kc7qip27s" - -["github.com/eapache/go-resiliency"] - sumVersion = "v1.1.0" - ["github.com/eapache/go-resiliency".fetch] - type = "git" - url = "https://github.com/eapache/go-resiliency" - rev = "ea41b0fad31007accc7f806884dcdf3da98b79ce" - sha256 = "1zmgw3c4w5r6m2r340n4jc5l5ll3m3nbszqrmrgbqc2xixxyk2gx" - -["github.com/eapache/go-xerial-snappy"] - sumVersion = "v0.0.0-20180814174437-776d5712da21" - ["github.com/eapache/go-xerial-snappy".fetch] - type = "git" - url = "https://github.com/eapache/go-xerial-snappy" - rev = "776d5712da21bc4762676d614db1d8a64f4238b0" - sha256 = "0ncc41dv7xwb1znyzmzh7cvs6j5fzz0f1n8h1v3grl9ma6s1si9d" - -["github.com/eapache/queue"] - sumVersion = "v1.1.0" - ["github.com/eapache/queue".fetch] - type = "git" - url = "https://github.com/eapache/queue" - rev = "44cc805cf13205b55f69e14bcb69867d1ae92f98" - sha256 = "07dp54n94gn3gsvdcki56yqh7py7wqqigxbamhxwgbr05n61fqyg" - -["github.com/edsrzf/mmap-go"] - sumVersion = "v1.0.0" - ["github.com/edsrzf/mmap-go".fetch] - type = "git" - url = "https://github.com/edsrzf/mmap-go" - rev = "188cc3b666ba704534fa4f96e9e61f21f1e1ba7c" - sha256 = "0ajmkk5cj6xmbngx3nhar7672i2vrkwpnbv1f26i5p4f5aydhl4k" - -["github.com/enigmampc/btcutil"] - sumVersion = "v1.0.3-0.20200723161021-e2fb6adb2a25" - ["github.com/enigmampc/btcutil".fetch] - type = "git" - url = "https://github.com/enigmampc/btcutil" - rev = "e2fb6adb2a25f868283c4f243c873ad6b4894974" - sha256 = "0r2gf20acxnrcrch57hvgg8qp8ic96w6bx0j080cfya04xib3dxv" - -["github.com/envoyproxy/go-control-plane"] - sumVersion = "v0.9.4" - ["github.com/envoyproxy/go-control-plane".fetch] - type = "git" - url = "https://github.com/envoyproxy/go-control-plane" - rev = "ba8e577f987f6676343cac84525b92ed1b2d86fe" - sha256 = "0m0crzx70lp7vz13v20wxb1fcfdnzp7h3mkh3bn6a8mbfz6w5asj" - -["github.com/envoyproxy/protoc-gen-validate"] - sumVersion = "v0.1.0" - ["github.com/envoyproxy/protoc-gen-validate".fetch] - type = "git" - url = "https://github.com/envoyproxy/protoc-gen-validate" - rev = "9eff07ddfcb4001aa1aab280648153f46e1a8ddc" - sha256 = "0kxd3wwh3xwqk0r684hsy281xq4y71cd11d4q2hspcjbnlbwh7cy" - -["github.com/facebookgo/ensure"] - sumVersion = "v0.0.0-20160127193407-b4ab57deab51" - ["github.com/facebookgo/ensure".fetch] - type = "git" - url = "https://github.com/facebookgo/ensure" - rev = "b4ab57deab51ee655ae4bd85281f0715a068016d" - sha256 = "19icavc3sg0mdz8151q3vp2vn3ipq53mnb9h9n57w32amyyszl4d" - -["github.com/facebookgo/stack"] - sumVersion = "v0.0.0-20160209184415-751773369052" - ["github.com/facebookgo/stack".fetch] - type = "git" - url = "https://github.com/facebookgo/stack" - rev = "751773369052141c013c6e827a71e8f35c07879c" - sha256 = "07yr05mz7h007ldpij90zjflwgixp148sbyrdlh1fj5bikr4p8m3" - -["github.com/facebookgo/subset"] - sumVersion = "v0.0.0-20150612182917-8dac2c3c4870" - ["github.com/facebookgo/subset".fetch] - type = "git" - url = "https://github.com/facebookgo/subset" - rev = "8dac2c3c48703541e481feddf22975953d4ff842" - sha256 = "0kyc2m5wxjzj4fwspybgn1mgjzhbdfnadpwy9mrw1s05bh21rgai" - -["github.com/fatih/color"] - sumVersion = "v1.7.0" - ["github.com/fatih/color".fetch] - type = "git" - url = "https://github.com/fatih/color" - rev = "5b77d2a35fb0ede96d138fc9a99f5c9b6aef11b4" - sha256 = "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv" - -["github.com/felixge/httpsnoop"] - sumVersion = "v1.0.1" - ["github.com/felixge/httpsnoop".fetch] - type = "git" - url = "https://github.com/felixge/httpsnoop" - rev = "33ec42cfe005395fb4cc4b296781f65d7ffef2c3" - sha256 = "0ncd8lar5zxiwjhsp315s4hsl4bhnm271h49jhyxc66r5yffgmac" - -["github.com/fortytw2/leaktest"] - sumVersion = "v1.3.0" - ["github.com/fortytw2/leaktest".fetch] - type = "git" - url = "https://github.com/fortytw2/leaktest" - rev = "9a23578d06a26ec1b47bfc8965bf5e7011df8bd6" - sha256 = "0487zghyxqzk6zdbhd2j074pcc2l15l4sfg5clrjqwfbql7519wx" - -["github.com/franela/goblin"] - sumVersion = "v0.0.0-20200105215937-c9ffbefa60db" - ["github.com/franela/goblin".fetch] - type = "git" - url = "https://github.com/franela/goblin" - rev = "c9ffbefa60dbcc40777294734ec3664f35a8c838" - sha256 = "0qdhg6i4bcf6inmzq2dbdv0r0c7clw1vd3n2zs4896ig0aws6vff" - -["github.com/franela/goreq"] - sumVersion = "v0.0.0-20171204163338-bcd34c9993f8" - ["github.com/franela/goreq".fetch] - type = "git" - url = "https://github.com/franela/goreq" - rev = "bcd34c9993f899273c74baaa95e15386cd97b6e7" - sha256 = "055a20nc5f1blk2swiwpwqpxd3z495ms1qr6a7cbbss1w3a7a7sb" - -["github.com/frankban/quicktest"] - sumVersion = "v1.11.3" - ["github.com/frankban/quicktest".fetch] - type = "git" - url = "https://github.com/frankban/quicktest" - rev = "e7d1f0b53af1e9c9cf66924bc310190b1db8c339" - sha256 = "0d5njmwkfq2809vlimnlvy8ir6kln0c4cgdwr680fwsclpbr43qs" - -["github.com/fsnotify/fsnotify"] - sumVersion = "v1.4.9" - ["github.com/fsnotify/fsnotify".fetch] - type = "git" - url = "https://github.com/fsnotify/fsnotify" - rev = "45d7d09e39ef4ac08d493309fa031790c15bfe8a" - sha256 = "1i1r72knpbfwwql9frn9bqc3nhfc2ai5m6qllcyr6wban62lr40x" - -["github.com/ghodss/yaml"] - sumVersion = "v1.0.0" - ["github.com/ghodss/yaml".fetch] - type = "git" - url = "https://github.com/ghodss/yaml" - rev = "0ca9ea5df5451ffdf184b4428c902747c2c11cd7" - sha256 = "0skwmimpy7hlh7pva2slpcplnm912rp3igs98xnqmn859kwa5v8g" - -["github.com/go-gl/glfw"] - sumVersion = "v0.0.0-20190409004039-e6da0acd62b1" - ["github.com/go-gl/glfw".fetch] - type = "git" - url = "https://github.com/go-gl/glfw" - rev = "e6da0acd62b1b57ee2799d4d0a76a7d4514dc5bc" - sha256 = "0prvx5r7q8yrhqvnwibv4xz3dayjbq36yajzqvh0z4lqsh4hyhch" - -["github.com/go-gl/glfw/v3.3/glfw"] - sumVersion = "v0.0.0-20200222043503-6f7a984d4dc4" - relPath = "v3.3/glfw" - ["github.com/go-gl/glfw/v3.3/glfw".fetch] - type = "git" - url = "https://github.com/go-gl/glfw" - rev = "6f7a984d4dc470c3f197229ad1991ae9e211bba2" - sha256 = "1nyv7h08qf4dp8w9pmcnrc6vv9bkwj8fil6pz0mkbss5hf4i8xcq" - -["github.com/go-kit/kit"] - sumVersion = "v0.10.0" - ["github.com/go-kit/kit".fetch] - type = "git" - url = "https://github.com/go-kit/kit" - rev = "cc938d52e0cdf4c811ab203f428fcd06f9d9a148" - sha256 = "1cqlrjf90b5pg6sj4nh0qz5wplnsjmcdgrvs6wfdjy5p71f17msa" - -["github.com/go-logfmt/logfmt"] - sumVersion = "v0.5.0" - ["github.com/go-logfmt/logfmt".fetch] - type = "git" - url = "https://github.com/go-logfmt/logfmt" - rev = "3be5f6aae7db841d31dc5e1b3bb7b4cff19200b3" - sha256 = "0mcvgimnf6a15hhpmmv42kzbsn618f0zi2j3np49xkq1113d7yyj" - -["github.com/go-sql-driver/mysql"] - sumVersion = "v1.4.0" - ["github.com/go-sql-driver/mysql".fetch] - type = "git" - url = "https://github.com/go-sql-driver/mysql" - rev = "d523deb1b23d913de5bdada721a6071e71283618" - sha256 = "1jwz2j3vd5hlzmnkh20d4276yd8cxy7pac3x3dfi52jkm82ms99n" - -["github.com/go-stack/stack"] - sumVersion = "v1.8.0" - ["github.com/go-stack/stack".fetch] - type = "git" - url = "https://github.com/go-stack/stack" - rev = "2fee6af1a9795aafbe0253a0cfbdf668e1fb8a9a" - sha256 = "0wk25751ryyvxclyp8jdk5c3ar0cmfr8lrjb66qbg4808x66b96v" - -["github.com/godbus/dbus"] - sumVersion = "v0.0.0-20190726142602-4481cbc300e2" - ["github.com/godbus/dbus".fetch] - type = "git" - url = "https://github.com/godbus/dbus" - rev = "4481cbc300e2df0c0b3cecc18b6c16c6c0bb885d" - sha256 = "0h0cl1r136g0kxbw3i7ggb9mhavpi1yr7d7312iwhkxm93dxkphg" - -["github.com/godbus/dbus/v5"] - sumVersion = "v5.0.4" - ["github.com/godbus/dbus/v5".fetch] - type = "git" - url = "https://github.com/godbus/dbus" - rev = "c88335c0b1d28a30e7fc76d526a06154b85e5d97" - sha256 = "0znax8kskb5gmp5fj75w56bc9p7b22wrdswzlh4d04sprlc471yi" - -["github.com/gogo/gateway"] - sumVersion = "v1.1.0" - ["github.com/gogo/gateway".fetch] - type = "git" - url = "https://github.com/gogo/gateway" - rev = "817b4cf527e834d7d563b7329355c45801d5e02d" - sha256 = "1jj7vr3sdk7yz8jl1kzv8473pkhd388f95byc8pdwrh6y7fh0xrq" - -["github.com/gogo/protobuf"] - sumVersion = "v1.3.3-alpha.regen.1" - vendorPath = "github.com/regen-network/protobuf" - ["github.com/gogo/protobuf".fetch] - type = "git" - url = "https://github.com/regen-network/protobuf" - rev = "8a70ddfdaf94e68497f7b26a6896ad75e03b6616" - sha256 = "0jmhiv9gq0a6brs9p8dk9phafs62yggyhlav07cqwakcq70ss6r2" - -["github.com/golang/glog"] - sumVersion = "v0.0.0-20160126235308-23def4e6c14b" - ["github.com/golang/glog".fetch] - type = "git" - url = "https://github.com/golang/glog" - rev = "23def4e6c14b4da8ac2ed8007337bc5eb5007998" - sha256 = "0jb2834rw5sykfr937fxi8hxi2zy80sj2bdn9b3jb4b26ksqng30" - -["github.com/golang/groupcache"] - sumVersion = "v0.0.0-20200121045136-8c9f03a8e57e" - ["github.com/golang/groupcache".fetch] - type = "git" - url = "https://github.com/golang/groupcache" - rev = "8c9f03a8e57eb486e42badaed3fb287da51807ba" - sha256 = "0vjjr79r32icjzlb05wn02k59av7jx0rn1jijml8r4whlg7dnkfh" - -["github.com/golang/mock"] - sumVersion = "v1.4.4" - ["github.com/golang/mock".fetch] - type = "git" - url = "https://github.com/golang/mock" - rev = "f7b1909c82a8958747e5c87c6a5c3b2eaed8a33d" - sha256 = "1lj0dvd6div4jaq1s0afpwqaq9ah8cxhkq93wii2ably1xmp2l0a" - -["github.com/golang/protobuf"] - sumVersion = "v1.5.2" - ["github.com/golang/protobuf".fetch] - type = "git" - url = "https://github.com/golang/protobuf" - rev = "ae97035608a719c7a1c1c41bed0ae0744bdb0c6f" - sha256 = "1mh5fyim42dn821nsd3afnmgscrzzhn3h8rag635d2jnr23r1zhk" - -["github.com/golang/snappy"] - sumVersion = "v0.0.3-0.20201103224600-674baa8c7fc3" - ["github.com/golang/snappy".fetch] - type = "git" - url = "https://github.com/golang/snappy" - rev = "674baa8c7fc30da5df3074a459494a7e6b427dff" - sha256 = "1dc8sdca0nrqb8wri91mi2xcjm16wyawm4y0fwc5gp24ahjbrg7g" - -["github.com/google/btree"] - sumVersion = "v1.0.0" - ["github.com/google/btree".fetch] - type = "git" - url = "https://github.com/google/btree" - rev = "4030bb1f1f0c35b30ca7009e9ebd06849dd45306" - sha256 = "0ba430m9fbnagacp57krgidsyrgp3ycw5r7dj71brgp5r52g82p6" - -["github.com/google/go-cmp"] - sumVersion = "v0.5.5" - ["github.com/google/go-cmp".fetch] - type = "git" - url = "https://github.com/google/go-cmp" - rev = "8fa37b4dd109f12e42b131e485268768f18bcbf8" - sha256 = "12fmkdhyv5d4is8s57k78j097zb0phlgnrkqc03agiszxlid69x7" - -["github.com/google/gofuzz"] - sumVersion = "v1.1.1-0.20200604201612-c04b05f3adfa" - ["github.com/google/gofuzz".fetch] - type = "git" - url = "https://github.com/google/gofuzz" - rev = "c04b05f3adfa7f64e47bf054350f2336aea32e9d" - sha256 = "0i75fm6pg54zvrgbvjkg46cr03pypqm4w0wv0a349f4k7ff8qv9r" - -["github.com/google/martian"] - sumVersion = "v2.1.0+incompatible" - ["github.com/google/martian".fetch] - type = "git" - url = "https://github.com/google/martian" - rev = "195b986b4b6d4c513582cf4d2b8c4fd7e2494f7e" - sha256 = "197hil6vrjk50b9wvwyzf61csid83whsjj6ik8mc9r2lryxlyyrp" - -["github.com/google/martian/v3"] - sumVersion = "v3.0.0" - ["github.com/google/martian/v3".fetch] - type = "git" - url = "https://github.com/google/martian" - rev = "b99070ab9f10410a3f8d25fae01dd611a6cc79ff" - sha256 = "0ngvs4l6a06s8scnliq9i5pwvwpzfpa5wf9skg0gcvysli1rm3fm" - -["github.com/google/orderedcode"] - sumVersion = "v0.0.1" - ["github.com/google/orderedcode".fetch] - type = "git" - url = "https://github.com/google/orderedcode" - rev = "9a3d15e0d5340bb1ba5db4071afd931e18b6e013" - sha256 = "0sdqfjji2skc1f7fbv9krbrb0cgfz43ksrld333hllgdidi33c9a" - -["github.com/google/pprof"] - sumVersion = "v0.0.0-20200708004538-1a94d8640e99" - ["github.com/google/pprof".fetch] - type = "git" - url = "https://github.com/google/pprof" - rev = "1a94d8640e99342fa76ae6296aaa921d08ac451f" - sha256 = "0isfwwan9vimwsfjml0phwrqv6kb83mkmk063dcb81k09gzzs3wy" - -["github.com/google/renameio"] - sumVersion = "v0.1.0" - ["github.com/google/renameio".fetch] - type = "git" - url = "https://github.com/google/renameio" - rev = "f0e32980c006571efd537032e5f9cd8c1a92819e" - sha256 = "1ki2x5a9nrj17sn092d6n4zr29lfg5ydv4xz5cp58z6cw8ip43jx" - -["github.com/google/uuid"] - sumVersion = "v1.1.2" - ["github.com/google/uuid".fetch] - type = "git" - url = "https://github.com/google/uuid" - rev = "0e4e31197428a347842d152773b4cace4645ca25" - sha256 = "1rbpfa0v0ly9sdnixcxhf79swki54ikgm1zkwwkj64p1ws66syqd" - -["github.com/googleapis/gax-go/v2"] - sumVersion = "v2.0.5" - relPath = "v2" - ["github.com/googleapis/gax-go/v2".fetch] - type = "git" - url = "https://github.com/googleapis/gax-go" - rev = "bd5b16380fd03dc758d11cef74ba2e3bc8b0e8c2" - sha256 = "1lxawwngv6miaqd25s3ba0didfzylbwisd2nz7r4gmbmin6jsjrx" - -["github.com/gopherjs/gopherjs"] - sumVersion = "v0.0.0-20181017120253-0766667cb4d1" - ["github.com/gopherjs/gopherjs".fetch] - type = "git" - url = "https://github.com/gopherjs/gopherjs" - rev = "0766667cb4d1cfb8d5fde1fe210ae41ead3cf589" - sha256 = "13pfc9sxiwjky2lm1xb3i3lcisn8p6mgjk2d927l7r92ysph8dmw" - -["github.com/gorilla/context"] - sumVersion = "v1.1.1" - ["github.com/gorilla/context".fetch] - type = "git" - url = "https://github.com/gorilla/context" - rev = "08b5f424b9271eedf6f9f0ce86cb9396ed337a42" - sha256 = "03p4hn87vcmfih0p9w663qbx9lpsf7i7j3lc7yl7n84la3yz63m4" - -["github.com/gorilla/handlers"] - sumVersion = "v1.5.1" - ["github.com/gorilla/handlers".fetch] - type = "git" - url = "https://github.com/gorilla/handlers" - rev = "d453effd20e6817a8acfd9d278dadd21371da0ba" - sha256 = "15gycdz9lkjnsvvichsbdf25vf6pi1sfn41khhz53iqf300l0w0s" - -["github.com/gorilla/mux"] - sumVersion = "v1.8.0" - ["github.com/gorilla/mux".fetch] - type = "git" - url = "https://github.com/gorilla/mux" - rev = "98cb6bf42e086f6af920b965c38cacc07402d51b" - sha256 = "18f0q9qxgq1yh4ji07mqhiydfcwvi56z9d775v7dc7yckj33kpdk" - -["github.com/gorilla/websocket"] - sumVersion = "v1.4.2" - ["github.com/gorilla/websocket".fetch] - type = "git" - url = "https://github.com/gorilla/websocket" - rev = "b65e62901fc1c0d968042419e74789f6af455eb9" - sha256 = "0mkm9w6kjkrlzab5wh8p4qxkc0icqawjbvr01d2nk6ykylrln40s" - -["github.com/gotestyourself/gotestyourself"] - sumVersion = "v2.2.0+incompatible" - ["github.com/gotestyourself/gotestyourself".fetch] - type = "git" - url = "https://github.com/gotestyourself/gotestyourself" - rev = "7c797b5133e5460410dbb22ba779bf35e6975dea" - sha256 = "0yif3gdyckmf8i54jq0xn00kflla5rhib9sarw66ngnbl7bn9kyl" - -["github.com/gravity-devs/liquidity"] - sumVersion = "v1.2.9" - ["github.com/gravity-devs/liquidity".fetch] - type = "git" - url = "https://github.com/gravity-devs/liquidity" - rev = "e7b6167e06cbc6fa3d3924c855e04115957e43e6" - sha256 = "17s7fjr2j13km32n0zxww7r8plvxpa9wr8lv7gwmgp4krlqiwrdf" - -["github.com/grpc-ecosystem/go-grpc-middleware"] - sumVersion = "v1.3.0" - ["github.com/grpc-ecosystem/go-grpc-middleware".fetch] - type = "git" - url = "https://github.com/grpc-ecosystem/go-grpc-middleware" - rev = "df0f91b29bbbdfc3a686a7a8edbe2b9de2072fdd" - sha256 = "1c9chw2nwj46ayx6cbq1sq21gmfmm3fx1gg579hn7srwywq0xsw0" - -["github.com/grpc-ecosystem/go-grpc-prometheus"] - sumVersion = "v1.2.0" - ["github.com/grpc-ecosystem/go-grpc-prometheus".fetch] - type = "git" - url = "https://github.com/grpc-ecosystem/go-grpc-prometheus" - rev = "c225b8c3b01faf2899099b768856a9e916e5087b" - sha256 = "1lzk54h7np32b3acidg1ggbn8ppbnns0m71gcg9d1qkkdh8zrijl" - -["github.com/grpc-ecosystem/grpc-gateway"] - sumVersion = "v1.16.0" - ["github.com/grpc-ecosystem/grpc-gateway".fetch] - type = "git" - url = "https://github.com/grpc-ecosystem/grpc-gateway" - rev = "094a6fe78b3ca888297d090185cdf30f0e42e157" - sha256 = "0dzq1qbgzz2c6vnh8anx0j3py34sd72p35x6s2wrl001q68am5cc" - -["github.com/grpc-ecosystem/grpc-gateway/v2"] - sumVersion = "v2.0.1" - ["github.com/grpc-ecosystem/grpc-gateway/v2".fetch] - type = "git" - url = "https://github.com/grpc-ecosystem/grpc-gateway" - rev = "5c1639cccb7d6abc747643ed07321b0052b809d5" - sha256 = "0pkdn64bkg4lfmfpx5jqv0bs3n4b9jzj5alms1d8mdi83s9k5c2j" - -["github.com/gsterjov/go-libsecret"] - sumVersion = "v0.0.0-20161001094733-a6f4afe4910c" - ["github.com/gsterjov/go-libsecret".fetch] - type = "git" - url = "https://github.com/gsterjov/go-libsecret" - rev = "a6f4afe4910cad8688db3e0e9b9ac92ad22d54e1" - sha256 = "09zaiadnll83vs22ib89agg7anj0blw5fywvmckxllsgif6ak6v7" - -["github.com/gtank/merlin"] - sumVersion = "v0.1.1" - ["github.com/gtank/merlin".fetch] - type = "git" - url = "https://github.com/gtank/merlin" - rev = "8318aed1a79f2b4c16cf2d7c2f09d991ec0731d1" - sha256 = "1gcj26hiyb87cjvqrdyr4q201c1rknpbahnsvcnz08agaw6gvwxm" - -["github.com/gtank/ristretto255"] - sumVersion = "v0.1.2" - ["github.com/gtank/ristretto255".fetch] - type = "git" - url = "https://github.com/gtank/ristretto255" - rev = "f33454717c935f5c93978e82b7bd1e848768bb91" - sha256 = "0kn4r28zbxf4vqr2if455wqzak38l27wqrwbzpxygrvczm61a2kw" - -["github.com/hashicorp/consul/api"] - sumVersion = "v1.3.0" - relPath = "api" - ["github.com/hashicorp/consul/api".fetch] - type = "git" - url = "https://github.com/hashicorp/consul" - rev = "e8757838a49feeb682c7e6ad6b78694a78b2096b" - sha256 = "1zv84snvrjm74w3v3rr27linsbxj00m73xd047sb78a4766xs2h0" - -["github.com/hashicorp/consul/sdk"] - sumVersion = "v0.3.0" - relPath = "sdk" - ["github.com/hashicorp/consul/sdk".fetch] - type = "git" - url = "https://github.com/hashicorp/consul" - rev = "441d613e1bd96254c78c46ee7c1b35c161fc7295" - sha256 = "1v06ygzsvc9c02yxpxnnm407kd30fc46b2146k5zrk1v8lq0f91j" - -["github.com/hashicorp/errwrap"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/errwrap".fetch] - type = "git" - url = "https://github.com/hashicorp/errwrap" - rev = "8a6fb523712970c966eefc6b39ed2c5e74880354" - sha256 = "0slfb6w3b61xz04r32bi0a1bygc82rjzhqkxj2si2074wynqnr1c" - -["github.com/hashicorp/go-cleanhttp"] - sumVersion = "v0.5.1" - ["github.com/hashicorp/go-cleanhttp".fetch] - type = "git" - url = "https://github.com/hashicorp/go-cleanhttp" - rev = "eda1e5db218aad1db63ca4642c8906b26bcf2744" - sha256 = "07kx3fhryqmaw3czacmm11qwx63js2q8cfq967vphk7xg9q377kk" - -["github.com/hashicorp/go-immutable-radix"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-immutable-radix".fetch] - type = "git" - url = "https://github.com/hashicorp/go-immutable-radix" - rev = "27df80928bb34bb1b0d6d0e01b9e679902e7a6b5" - sha256 = "1v3nmsnk1s8bzpclrhirz7iq0g5xxbw9q5gvrg9ss6w9crs72qr6" - -["github.com/hashicorp/go-msgpack"] - sumVersion = "v0.5.3" - ["github.com/hashicorp/go-msgpack".fetch] - type = "git" - url = "https://github.com/hashicorp/go-msgpack" - rev = "be3a5be7ee2202386d02936a19ae4fbde1c77800" - sha256 = "00jv0ajqd58pkb2yyhlrjp0rv1mvb1ijx3yqjyikcmzvk9jb4h5m" - -["github.com/hashicorp/go-multierror"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-multierror".fetch] - type = "git" - url = "https://github.com/hashicorp/go-multierror" - rev = "886a7fbe3eb1c874d46f623bfa70af45f425b3d1" - sha256 = "00nyn8llqzbfm8aflr9kwsvpzi4kv8v45c141v88xskxp5xf6z49" - -["github.com/hashicorp/go-retryablehttp"] - sumVersion = "v0.5.3" - ["github.com/hashicorp/go-retryablehttp".fetch] - type = "git" - url = "https://github.com/hashicorp/go-retryablehttp" - rev = "357460732517ec3b57c05c51443296bdd6df1874" - sha256 = "008mimxs8a970rdhvgmc5v1wk0gmpcl96mrkwz7wq6ik6fhg1sjl" - -["github.com/hashicorp/go-rootcerts"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-rootcerts".fetch] - type = "git" - url = "https://github.com/hashicorp/go-rootcerts" - rev = "63503fb4e1eca22f9ae0f90b49c5d5538a0e87eb" - sha256 = "0wply5zhj1rcybr932zbwm1i18q5wr7kgkhnz6bw6mk1n9yr8lfj" - -["github.com/hashicorp/go-sockaddr"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-sockaddr".fetch] - type = "git" - url = "https://github.com/hashicorp/go-sockaddr" - rev = "a6a0d2df398f7e0e9f6e43f589c8b51cec0eb6b0" - sha256 = "1yn1xq8ysn0lszmkygz3a9lgpswbz1p91jv7q8l20s4749a22xgi" - -["github.com/hashicorp/go-syslog"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-syslog".fetch] - type = "git" - url = "https://github.com/hashicorp/go-syslog" - rev = "8d1874e3e8d1862b74e0536851e218c4571066a5" - sha256 = "09vccqggz212cg0jir6vv708d6mx0f9w5bxrcdah3h6chgmal6v1" - -["github.com/hashicorp/go-uuid"] - sumVersion = "v1.0.1" - ["github.com/hashicorp/go-uuid".fetch] - type = "git" - url = "https://github.com/hashicorp/go-uuid" - rev = "4f571afc59f3043a65f8fe6bf46d887b10a01d43" - sha256 = "0jvb88m0rq41bwgirsadgw7mnayl27av3gd2vqa3xvxp3fy0hp5k" - -["github.com/hashicorp/go-version"] - sumVersion = "v1.2.0" - ["github.com/hashicorp/go-version".fetch] - type = "git" - url = "https://github.com/hashicorp/go-version" - rev = "ac23dc3fea5d1a983c43f6a0f6e2c13f0195d8bd" - sha256 = "1bwi6y6111xq8ww8kjq0w1cmz15l1h9hb2id6596l8l0ag1vjj1z" - -["github.com/hashicorp/go.net"] - sumVersion = "v0.0.1" - ["github.com/hashicorp/go.net".fetch] - type = "git" - url = "https://github.com/hashicorp/go.net" - rev = "afc3cb3a421746fc66dd55b09a270c750cf536ce" - sha256 = "06arwi95xp5rxyz7rndvhc3wlwg0jn9a5z6djf3yyg5h9zfab9i4" - -["github.com/hashicorp/golang-lru"] - sumVersion = "v0.5.4" - ["github.com/hashicorp/golang-lru".fetch] - type = "git" - url = "https://github.com/hashicorp/golang-lru" - rev = "14eae340515388ca95aa8e7b86f0de668e981f54" - sha256 = "1sdbymypp9vrnzp8ashw0idlxvaq0rb0alwxx3x8g27yjlqi9jfn" - -["github.com/hashicorp/hcl"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/hcl".fetch] - type = "git" - url = "https://github.com/hashicorp/hcl" - rev = "8cb6e5b959231cc1119e43259c4a608f9c51a241" - sha256 = "0q6ml0qqs0yil76mpn4mdx4lp94id8vbv575qm60jzl1ijcl5i66" - -["github.com/hashicorp/logutils"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/logutils".fetch] - type = "git" - url = "https://github.com/hashicorp/logutils" - rev = "a335183dfd075f638afcc820c90591ca3c97eba6" - sha256 = "076wf4sh5p3f953ndqk1cc0x7jhmlqrxak9953rz79rcdw77rjvv" - -["github.com/hashicorp/mdns"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/mdns".fetch] - type = "git" - url = "https://github.com/hashicorp/mdns" - rev = "c31d3f8e4a0a5b46b118c2fd26d9da36467002c9" - sha256 = "0qr4l91hhi97s8a1isnrw3s4q8pjzacqiks870vnwh15v7ig3axd" - -["github.com/hashicorp/memberlist"] - sumVersion = "v0.1.3" - ["github.com/hashicorp/memberlist".fetch] - type = "git" - url = "https://github.com/hashicorp/memberlist" - rev = "a9da52f0668fc4321ec18e9e28dd8141621a808f" - sha256 = "0k1spq7dagvqj3baqw2dhxx1zxrb02y6m3apzr3a7gyirii890g3" - -["github.com/hashicorp/serf"] - sumVersion = "v0.8.2" - ["github.com/hashicorp/serf".fetch] - type = "git" - url = "https://github.com/hashicorp/serf" - rev = "b89a09ebd4b1b570e0076d5097272e67c10ac4f6" - sha256 = "0nrslghvdjhaczr2xp9mn8xgcx1dxl4jgpbk0l61ssmxahpx4iyc" - -["github.com/hpcloud/tail"] - sumVersion = "v1.0.0" - ["github.com/hpcloud/tail".fetch] - type = "git" - url = "https://github.com/hpcloud/tail" - rev = "a30252cb686a21eb2d0b98132633053ec2f7f1e5" - sha256 = "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0" - -["github.com/hudl/fargo"] - sumVersion = "v1.3.0" - ["github.com/hudl/fargo".fetch] - type = "git" - url = "https://github.com/hudl/fargo" - rev = "fce5cf495554be9ef0766f6f5459e2874fb08c89" - sha256 = "1f7pwj793p51nq03jiz834g0qvg502h9asry6nx4pdc10wzx2948" - -["github.com/ianlancetaylor/demangle"] - sumVersion = "v0.0.0-20181102032728-5e5cf60278f6" - ["github.com/ianlancetaylor/demangle".fetch] - type = "git" - url = "https://github.com/ianlancetaylor/demangle" - rev = "5e5cf60278f657d30daa329dd0e7e893b6b8f027" - sha256 = "1fhjk11cip9c3jyj1byz9z77n6n2rlxmyz0xjx1zpn1da3cvri75" - -["github.com/inconshreveable/mousetrap"] - sumVersion = "v1.0.0" - ["github.com/inconshreveable/mousetrap".fetch] - type = "git" - url = "https://github.com/inconshreveable/mousetrap" - rev = "76626ae9c91c4f2a10f34cad8ce83ea42c93bb75" - sha256 = "1mn0kg48xkd74brf48qf5hzp0bc6g8cf5a77w895rl3qnlpfw152" - -["github.com/influxdata/influxdb1-client"] - sumVersion = "v0.0.0-20191209144304-8bf82d3c094d" - ["github.com/influxdata/influxdb1-client".fetch] - type = "git" - url = "https://github.com/influxdata/influxdb1-client" - rev = "8bf82d3c094dc06be9da8e5bf9d3589b6ea032ae" - sha256 = "0cjli7prxfxayx2grianbla5jr0dq28sazk8phbnh61ac5zaya4s" - -["github.com/jessevdk/go-flags"] - sumVersion = "v1.4.0" - ["github.com/jessevdk/go-flags".fetch] - type = "git" - url = "https://github.com/jessevdk/go-flags" - rev = "c6ca198ec95c841fdb89fc0de7496fed11ab854e" - sha256 = "0algnnigph27spgn655zm4723yfjxjjvlf4k14z9drj3682df25a" - -["github.com/jmespath/go-jmespath"] - sumVersion = "v0.0.0-20180206201540-c2b33e8439af" - ["github.com/jmespath/go-jmespath".fetch] - type = "git" - url = "https://github.com/jmespath/go-jmespath" - rev = "c2b33e8439af944379acbdd9c3a5fe0bc44bd8a5" - sha256 = "1r6w7ydx8ydryxk3sfhzsk8m6f1nsik9jg3i1zhi69v4kfl4d5cz" - -["github.com/jmhodges/levigo"] - sumVersion = "v1.0.0" - ["github.com/jmhodges/levigo".fetch] - type = "git" - url = "https://github.com/jmhodges/levigo" - rev = "853d788c5c416eaaee5b044570784a96c7a26975" - sha256 = "1lhh413mmclnkwn2lk1crwzargam2cx5w7k6zj8pgasy62c78iy4" - -["github.com/jonboulle/clockwork"] - sumVersion = "v0.1.0" - ["github.com/jonboulle/clockwork".fetch] - type = "git" - url = "https://github.com/jonboulle/clockwork" - rev = "2eee05ed794112d45db504eb05aa693efd2b8b09" - sha256 = "1pqxhsdavbp1n5grgyx2j6ylvql2fzn2cvpsgkc8li69dil7sibl" - -["github.com/jpillora/backoff"] - sumVersion = "v1.0.0" - ["github.com/jpillora/backoff".fetch] - type = "git" - url = "https://github.com/jpillora/backoff" - rev = "d80867952dff4e2fbfb4280ded4ff94d67790457" - sha256 = "0x90fif28fjyl07lmj2cnxzlgdm632v7rkra7kq1mwjdqgmy04dv" - -["github.com/jrick/logrotate"] - sumVersion = "v1.0.0" - ["github.com/jrick/logrotate".fetch] - type = "git" - url = "https://github.com/jrick/logrotate" - rev = "a93b200c26cbae3bb09dd0dc2c7c7fe1468a034a" - sha256 = "0srl6figwjqpi3nbp7br8sxpmvh4v8lzbny1b4lar4ny0156p5nl" - -["github.com/json-iterator/go"] - sumVersion = "v1.1.10" - ["github.com/json-iterator/go".fetch] - type = "git" - url = "https://github.com/json-iterator/go" - rev = "a1ca0830781e007c66b225121d2cdb3a649421f6" - sha256 = "134zwc2pmf8nd90r8065wsl6vv1mwjl23bs70i08dzhw5h98drr4" - -["github.com/jstemmer/go-junit-report"] - sumVersion = "v0.9.1" - ["github.com/jstemmer/go-junit-report".fetch] - type = "git" - url = "https://github.com/jstemmer/go-junit-report" - rev = "cc1f095d5cc5eca2844f5c5ea7bb37f6b9bf6cac" - sha256 = "1knip80yir1cdsjlb3rzy0a4w3kl4ljpiciaz6hjzwqlfhnv7bkw" - -["github.com/jtolds/gls"] - sumVersion = "v4.20.0+incompatible" - ["github.com/jtolds/gls".fetch] - type = "git" - url = "https://github.com/jtolds/gls" - rev = "b4936e06046bbecbb94cae9c18127ebe510a2cb9" - sha256 = "1k7xd2q2ysv2xsh373qs801v6f359240kx0vrl0ydh7731lngvk6" - -["github.com/julienschmidt/httprouter"] - sumVersion = "v1.3.0" - ["github.com/julienschmidt/httprouter".fetch] - type = "git" - url = "https://github.com/julienschmidt/httprouter" - rev = "4eec211fa4e8df74ed978dc5681612131854144f" - sha256 = "1a6sy0ysqknsjssjh7qg1dqn21xmj9a36c57nrk7srfmab4ffmk1" - -["github.com/keybase/go-keychain"] - sumVersion = "v0.0.0-20190712205309-48d3d31d256d" - ["github.com/keybase/go-keychain".fetch] - type = "git" - url = "https://github.com/keybase/go-keychain" - rev = "48d3d31d256d9922a90b14c518c4b685f321fab2" - sha256 = "1vb4irkbj5s4v8n8dqngmg2w2fbnaz568z731yqryspvvmrki2a1" - -["github.com/kisielk/errcheck"] - sumVersion = "v1.5.0" - ["github.com/kisielk/errcheck".fetch] - type = "git" - url = "https://github.com/kisielk/errcheck" - rev = "ee08a456fc430219ad80ce5af98415bcc027a219" - sha256 = "0ci3jz2px74pfmr42jv7dpx7fdzx08vai4czp9fkiyb0gcaiqsk6" - -["github.com/kisielk/gotool"] - sumVersion = "v1.0.0" - ["github.com/kisielk/gotool".fetch] - type = "git" - url = "https://github.com/kisielk/gotool" - rev = "80517062f582ea3340cd4baf70e86d539ae7d84d" - sha256 = "14af2pa0ssyp8bp2mvdw184s5wcysk6akil3wzxmr05wwy951iwn" - -["github.com/kkdai/bstream"] - sumVersion = "v1.0.0" - ["github.com/kkdai/bstream".fetch] - type = "git" - url = "https://github.com/kkdai/bstream" - rev = "a8d27c5aa8eedad6b6683069d64b96ece63696db" - sha256 = "02brc58hhkkfhgb4yxjv3wshq355w533q7d49qrlfkhk265qph7w" - -["github.com/konsorten/go-windows-terminal-sequences"] - sumVersion = "v1.0.3" - ["github.com/konsorten/go-windows-terminal-sequences".fetch] - type = "git" - url = "https://github.com/konsorten/go-windows-terminal-sequences" - rev = "edb144dfd453055e1e49a3d8b410a660b5a87613" - sha256 = "1yrsd4s8vhjnxhwbigirymz89dn6qfjnhn28i33vvvdgf96j6ypl" - -["github.com/kr/fs"] - sumVersion = "v0.1.0" - ["github.com/kr/fs".fetch] - type = "git" - url = "https://github.com/kr/fs" - rev = "1455def202f6e05b95cc7bfc7e8ae67ae5141eba" - sha256 = "11zg176x9hr9q7fsk95r6q0wf214gg4czy02slax4x56n79g6a7q" - -["github.com/kr/logfmt"] - sumVersion = "v0.0.0-20140226030751-b84e30acd515" - ["github.com/kr/logfmt".fetch] - type = "git" - url = "https://github.com/kr/logfmt" - rev = "b84e30acd515aadc4b783ad4ff83aff3299bdfe0" - sha256 = "02ldzxgznrfdzvghfraslhgp19la1fczcbzh7wm2zdc6lmpd1qq9" - -["github.com/kr/pretty"] - sumVersion = "v0.2.1" - ["github.com/kr/pretty".fetch] - type = "git" - url = "https://github.com/kr/pretty" - rev = "ead452280cd055b2ae8a7f0db5eb37a878d902f7" - sha256 = "0vzfz06y9q8gs2nxx0kys0591vzp78k0fvpb8digi5n15h3b25hy" - -["github.com/kr/pty"] - sumVersion = "v1.1.1" - ["github.com/kr/pty".fetch] - type = "git" - url = "https://github.com/kr/pty" - rev = "282ce0e5322c82529687d609ee670fac7c7d917c" - sha256 = "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6" - -["github.com/kr/text"] - sumVersion = "v0.1.0" - ["github.com/kr/text".fetch] - type = "git" - url = "https://github.com/kr/text" - rev = "e2ffdb16a802fe2bb95e2e35ff34f0e53aeef34f" - sha256 = "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1" - -["github.com/lib/pq"] - sumVersion = "v1.2.0" - ["github.com/lib/pq".fetch] - type = "git" - url = "https://github.com/lib/pq" - rev = "3427c32cb71afc948325f299f040e53c1dd78979" - sha256 = "08j1smm6rassdssdks4yh9aspa1dv1g5nvwimmknspvhx8a7waqz" - -["github.com/libp2p/go-buffer-pool"] - sumVersion = "v0.0.2" - ["github.com/libp2p/go-buffer-pool".fetch] - type = "git" - url = "https://github.com/libp2p/go-buffer-pool" - rev = "c4a5988a1e475884367015e1a2d0bd5fa4c491f4" - sha256 = "01iwby4xq9znlfhcxxvqv03smllsv42j1w3vpqg9n307s3i0pj3m" - -["github.com/lightstep/lightstep-tracer-common/golang/gogo"] - sumVersion = "v0.0.0-20190605223551-bc2310a04743" - relPath = "golang/gogo" - ["github.com/lightstep/lightstep-tracer-common/golang/gogo".fetch] - type = "git" - url = "https://github.com/lightstep/lightstep-tracer-common" - rev = "bc2310a0474352fa2616bdc0a27457b146b136b4" - sha256 = "0j7qycrva0ngf38br0jy9blzjb98ksdfi87b0sb2gnpmsp6sz4l8" - -["github.com/lightstep/lightstep-tracer-go"] - sumVersion = "v0.18.1" - ["github.com/lightstep/lightstep-tracer-go".fetch] - type = "git" - url = "https://github.com/lightstep/lightstep-tracer-go" - rev = "95891af43e111d60f0ae6adaa39c2abe8caad401" - sha256 = "0jfnsv7y11d247xysc61wp8xmgn33fdl17v6g0lxxnklbw41k91y" - -["github.com/magiconair/properties"] - sumVersion = "v1.8.5" - ["github.com/magiconair/properties".fetch] - type = "git" - url = "https://github.com/magiconair/properties" - rev = "291b8266af1000c77a12ae6d4dde1145a028012f" - sha256 = "0v4agnkhc30fblbmhs0gq2bikhdnnmqmpp4phrnza68m04j5hxbn" - -["github.com/mattn/go-colorable"] - sumVersion = "v0.0.9" - ["github.com/mattn/go-colorable".fetch] - type = "git" - url = "https://github.com/mattn/go-colorable" - rev = "167de6bfdfba052fa6b2d3664c8f5272e23c9072" - sha256 = "1nwjmsppsjicr7anq8na6md7b1z84l9ppnlr045hhxjvbkqwalvx" - -["github.com/mattn/go-isatty"] - sumVersion = "v0.0.12" - ["github.com/mattn/go-isatty".fetch] - type = "git" - url = "https://github.com/mattn/go-isatty" - rev = "7b513a986450394f7bbf1476909911b3aa3a55ce" - sha256 = "1dfsh27d52wmz0nmmzm2382pfrs2fcijvh6cgir7jbb4pnigr5w4" - -["github.com/mattn/go-runewidth"] - sumVersion = "v0.0.2" - ["github.com/mattn/go-runewidth".fetch] - type = "git" - url = "https://github.com/mattn/go-runewidth" - rev = "9e777a8366cce605130a531d2cd6363d07ad7317" - sha256 = "0vkrfrz3fzn5n6ix4k8s0cg0b448459sldq8bp4riavsxm932jzb" - -["github.com/matttproud/golang_protobuf_extensions"] - sumVersion = "v1.0.1" - ["github.com/matttproud/golang_protobuf_extensions".fetch] - type = "git" - url = "https://github.com/matttproud/golang_protobuf_extensions" - rev = "c12348ce28de40eed0136aa2b644d0ee0650e56c" - sha256 = "1d0c1isd2lk9pnfq2nk0aih356j30k3h1gi2w0ixsivi5csl7jya" - -["github.com/miekg/dns"] - sumVersion = "v1.0.14" - ["github.com/miekg/dns".fetch] - type = "git" - url = "https://github.com/miekg/dns" - rev = "915ca3d5ffd945235828a097c917311a9d86ebb4" - sha256 = "1qgli6yp59bv6vc6zag84cwxmcxgnyxm1q2f301yyijk3wy5b2ak" - -["github.com/mimoo/StrobeGo"] - sumVersion = "v0.0.0-20181016162300-f8f6d4d2b643" - ["github.com/mimoo/StrobeGo".fetch] - type = "git" - url = "https://github.com/mimoo/StrobeGo" - rev = "f8f6d4d2b6435f46148e8a6dc2248939893f3ece" - sha256 = "1lgxh3p6aqfc049wn3kz1mj9prm4mqpa9m01p27ph8iw5ry5c7la" - -["github.com/minio/highwayhash"] - sumVersion = "v1.0.1" - ["github.com/minio/highwayhash".fetch] - type = "git" - url = "https://github.com/minio/highwayhash" - rev = "86a2a969d04373bf05ca722517d30fb1c9a3e4f9" - sha256 = "0kj2hs82sphag0h25xvprvf2fz3zlinmlif89sk9jp8h518aiahf" - -["github.com/mitchellh/cli"] - sumVersion = "v1.0.0" - ["github.com/mitchellh/cli".fetch] - type = "git" - url = "https://github.com/mitchellh/cli" - rev = "3d22a244be8aa6fb16ac24af0e195c08b7d973aa" - sha256 = "1i9kmr7rcf10d2hji8h4247hmc0nbairv7a0q51393aw2h1bnwg2" - -["github.com/mitchellh/go-homedir"] - sumVersion = "v1.1.0" - ["github.com/mitchellh/go-homedir".fetch] - type = "git" - url = "https://github.com/mitchellh/go-homedir" - rev = "af06845cf3004701891bf4fdb884bfe4920b3727" - sha256 = "0ydzkipf28hwj2bfxqmwlww47khyk6d152xax4bnyh60f4lq3nx1" - -["github.com/mitchellh/go-testing-interface"] - sumVersion = "v1.0.0" - ["github.com/mitchellh/go-testing-interface".fetch] - type = "git" - url = "https://github.com/mitchellh/go-testing-interface" - rev = "6d0b8010fcc857872e42fc6c931227569016843c" - sha256 = "1dl2js8di858bawg7dadlf1qjpkl2g3apziihjyf5imri3znyfpw" - -["github.com/mitchellh/gox"] - sumVersion = "v0.4.0" - ["github.com/mitchellh/gox".fetch] - type = "git" - url = "https://github.com/mitchellh/gox" - rev = "c9740af9c6574448fd48eb30a71f964014c7a837" - sha256 = "1q4fdkw904mrmh1q5z8pfd3r0gcn5dm776kldqawddy93iiwnp8r" - -["github.com/mitchellh/iochan"] - sumVersion = "v1.0.0" - ["github.com/mitchellh/iochan".fetch] - type = "git" - url = "https://github.com/mitchellh/iochan" - rev = "b6e3aadd28864e14dae41ff5c7261455b1242d24" - sha256 = "058n9bbf536f2nw3pbs7pysrg9cqvgkb28z2zf5wjyrzrknyk53g" - -["github.com/mitchellh/mapstructure"] - sumVersion = "v1.3.3" - ["github.com/mitchellh/mapstructure".fetch] - type = "git" - url = "https://github.com/mitchellh/mapstructure" - rev = "9e1e4717f8567d7ead72d070d064ad17d444a67e" - sha256 = "1pzyvzbpd9vs4qvj2hd141hk6ppw9lxygw7sy5770raa9rml1ynl" - -["github.com/moby/sys/mountinfo"] - sumVersion = "v0.4.1" - relPath = "mountinfo" - ["github.com/moby/sys/mountinfo".fetch] - type = "git" - url = "https://github.com/moby/sys" - rev = "b0f1fd7235275d01bd35cc4421e884e522395f45" - sha256 = "1svicfa0gyq8fcbsl475gpr0y5rgv0389d9yq6hzwz2acrdxyxm2" - -["github.com/modern-go/concurrent"] - sumVersion = "v0.0.0-20180306012644-bacd9c7ef1dd" - ["github.com/modern-go/concurrent".fetch] - type = "git" - url = "https://github.com/modern-go/concurrent" - rev = "bacd9c7ef1dd9b15be4a9909b8ac7a4e313eec94" - sha256 = "0s0fxccsyb8icjmiym5k7prcqx36hvgdwl588y0491gi18k5i4zs" - -["github.com/modern-go/reflect2"] - sumVersion = "v1.0.1" - ["github.com/modern-go/reflect2".fetch] - type = "git" - url = "https://github.com/modern-go/reflect2" - rev = "94122c33edd36123c84d5368cfb2b69df93a0ec8" - sha256 = "06a3sablw53n1dqqbr2f53jyksbxdmmk8axaas4yvnhyfi55k4lf" - -["github.com/mrunalp/fileutils"] - sumVersion = "v0.5.0" - ["github.com/mrunalp/fileutils".fetch] - type = "git" - url = "https://github.com/mrunalp/fileutils" - rev = "d7fdd64cc1cabe10bc154ee7d2318b07b7f296ef" - sha256 = "1zrs959gf4zgi6ijwkdn4dcqk0svfblpaikkqy63q30rqz4swm0x" - -["github.com/mtibben/percent"] - sumVersion = "v0.2.1" - ["github.com/mtibben/percent".fetch] - type = "git" - url = "https://github.com/mtibben/percent" - rev = "07b18b68c1413ce9f8137a8cbd4509fac9e15f0c" - sha256 = "1iqivw8pigj259rj5yifibbvic70f9hb7k24a4sa967s4fj6agb6" - -["github.com/mwitkow/go-conntrack"] - sumVersion = "v0.0.0-20190716064945-2f068394615f" - ["github.com/mwitkow/go-conntrack".fetch] - type = "git" - url = "https://github.com/mwitkow/go-conntrack" - rev = "2f068394615f73e460c2f3d2c158b0ad9321cadb" - sha256 = "0ymjmy12ks7smgwmrwsa5kf07d9w5kpk1dn650azlzr61b561aw7" - -["github.com/nats-io/jwt"] - sumVersion = "v0.3.2" - ["github.com/nats-io/jwt".fetch] - type = "git" - url = "https://github.com/nats-io/jwt" - rev = "0c3fc7aed8bb2534e7bfdf0968a75890402d48cd" - sha256 = "0n44ghpz6hnbd2i074ikrj72rd2vnxpg1g3nhv1ly1kr0832khx6" - -["github.com/nats-io/nats-server/v2"] - sumVersion = "v2.1.2" - ["github.com/nats-io/nats-server/v2".fetch] - type = "git" - url = "https://github.com/nats-io/nats-server" - rev = "679bedafd96f85ddfa56a4d5736517c18842047a" - sha256 = "1jxi6d0zbhisxprlynvqw3dl1lz4wwxiy9gnpaqrwx1yi3kvvg62" - -["github.com/nats-io/nats.go"] - sumVersion = "v1.9.1" - ["github.com/nats-io/nats.go".fetch] - type = "git" - url = "https://github.com/nats-io/nats.go" - rev = "6063d679d23ae5b3edb4030d5e89a6e30ea53bc6" - sha256 = "0mmbwri2k2c8q1w0fr0g5s81709lfr6wyarvaf3gibc7cig10pij" - -["github.com/nats-io/nkeys"] - sumVersion = "v0.1.3" - ["github.com/nats-io/nkeys".fetch] - type = "git" - url = "https://github.com/nats-io/nkeys" - rev = "f1930e19b436412202ab130a733187cc6f40ba7e" - sha256 = "1fip0bja471mavvp67bninpd24jviwpnh7w99kchyiy27lbxy4hp" - -["github.com/nats-io/nuid"] - sumVersion = "v1.0.1" - ["github.com/nats-io/nuid".fetch] - type = "git" - url = "https://github.com/nats-io/nuid" - rev = "4b96681fa6d28dd0ab5fe79bac63b3a493d9ee94" - sha256 = "11zbhg4kds5idsya04bwz4plj0mmiigypzppzih731ppbk2ms1zg" - -["github.com/nxadm/tail"] - sumVersion = "v1.4.4" - ["github.com/nxadm/tail".fetch] - type = "git" - url = "https://github.com/nxadm/tail" - rev = "327c577245448d8192115e77a76ea3d6aee88202" - sha256 = "1czmwqii0fc8v3ar5bwqpfanprkxg19waly405zlvcflzvj53wwc" - -["github.com/oklog/oklog"] - sumVersion = "v0.3.2" - ["github.com/oklog/oklog".fetch] - type = "git" - url = "https://github.com/oklog/oklog" - rev = "e3ad1c411c27b4bc18c5facb9331820d141a5a54" - sha256 = "1xnjxhgi0zm51skl533la50h133a245i57wqa3h7fr2lv2jqpzny" - -["github.com/oklog/run"] - sumVersion = "v1.0.0" - ["github.com/oklog/run".fetch] - type = "git" - url = "https://github.com/oklog/run" - rev = "4dadeb3030eda0273a12382bb2348ffc7c9d1a39" - sha256 = "1pbjza4claaj95fpqvvfrysvs10y7dm0pl6qr5lzh6qy1vnhmcgw" - -["github.com/oklog/ulid"] - sumVersion = "v1.3.1" - ["github.com/oklog/ulid".fetch] - type = "git" - url = "https://github.com/oklog/ulid" - rev = "02a8604050d8466dd915307496174adb9be4593a" - sha256 = "0hybwyid820n80axrk863k2py93hbqlq6hxhf84ppmz0qd0ys0gq" - -["github.com/olekukonko/tablewriter"] - sumVersion = "v0.0.0-20170122224234-a0225b3f23b5" - ["github.com/olekukonko/tablewriter".fetch] - type = "git" - url = "https://github.com/olekukonko/tablewriter" - rev = "a0225b3f23b5ce0cbec6d7a66a968f8a59eca9c4" - sha256 = "0bp9r6xzy6d3p7l2hjmvr25y3rp3p8c9xv1agkllkksm45ng6681" - -["github.com/onsi/ginkgo"] - sumVersion = "v1.14.0" - ["github.com/onsi/ginkgo".fetch] - type = "git" - url = "https://github.com/onsi/ginkgo" - rev = "9c254cb251dc962dc20ca91d0279c870095cfcf9" - sha256 = "0nwvz0pqk2jqscq88fhppad4flrr8avkxfgbci4xklbar4g8i32v" - -["github.com/onsi/gomega"] - sumVersion = "v1.10.1" - ["github.com/onsi/gomega".fetch] - type = "git" - url = "https://github.com/onsi/gomega" - rev = "904ac6ab26e9a888bdff3467eea03b6122a1c027" - sha256 = "068mirdbwl9n9dqlvqr489h52wkd90cv1jvng4yp8kv83lhzk2dq" - -["github.com/op/go-logging"] - sumVersion = "v0.0.0-20160315200505-970db520ece7" - ["github.com/op/go-logging".fetch] - type = "git" - url = "https://github.com/op/go-logging" - rev = "970db520ece77730c7e4724c61121037378659d9" - sha256 = "1cpna2x5l071z1vrnk7zipdkka8dzwsjyx7m79xk0lr08rip0kcj" - -["github.com/opencontainers/go-digest"] - sumVersion = "v1.0.0" - ["github.com/opencontainers/go-digest".fetch] - type = "git" - url = "https://github.com/opencontainers/go-digest" - rev = "ea51bea511f75cfa3ef6098cc253c5c3609b037a" - sha256 = "0i5acjajvr6hi9zb7gxwifd8w28y884cv7cx36adj8lngj647xbi" - -["github.com/opencontainers/image-spec"] - sumVersion = "v1.0.1" - ["github.com/opencontainers/image-spec".fetch] - type = "git" - url = "https://github.com/opencontainers/image-spec" - rev = "d60099175f88c47cd379c4738d158884749ed235" - sha256 = "03dvbj3dln8c55v9gp79mgmz2yi2ws3r08iyz2fk41y3i22iaw1q" - -["github.com/opencontainers/runc"] - sumVersion = "v1.0.2" - ["github.com/opencontainers/runc".fetch] - type = "git" - url = "https://github.com/opencontainers/runc" - rev = "52b36a2dd837e8462de8e01458bf02cf9eea47dd" - sha256 = "1bpckghjah0rczciw1a1ab8z718lb2d3k4mjm4zb45lpm3njmrcp" - -["github.com/opencontainers/runtime-spec"] - sumVersion = "v1.0.3-0.20210326190908-1c3f411f0417" - ["github.com/opencontainers/runtime-spec".fetch] - type = "git" - url = "https://github.com/opencontainers/runtime-spec" - rev = "1c3f411f041711bbeecf35ff7e93461ea6789220" - sha256 = "1azk8z41ga8af35c966f06vrq9y9hwz6mkm59r3py5qaamzim3qq" - -["github.com/opencontainers/selinux"] - sumVersion = "v1.8.2" - ["github.com/opencontainers/selinux".fetch] - type = "git" - url = "https://github.com/opencontainers/selinux" - rev = "76bc82e11d854d3e40c08889d13c98abcea72ea2" - sha256 = "1dl1h8nzpyhsfki1dcjphm5h4n52qwilahyl6qlnwgzcc76pwizq" - -["github.com/opentracing-contrib/go-observer"] - sumVersion = "v0.0.0-20170622124052-a52f23424492" - ["github.com/opentracing-contrib/go-observer".fetch] - type = "git" - url = "https://github.com/opentracing-contrib/go-observer" - rev = "a52f2342449246d5bcc273e65cbdcfa5f7d6c63c" - sha256 = "1q7z458m2vh3bzml4x9vm2paffqn1jcgiydbisl0zg2asfniq7k3" - -["github.com/opentracing/basictracer-go"] - sumVersion = "v1.0.0" - ["github.com/opentracing/basictracer-go".fetch] - type = "git" - url = "https://github.com/opentracing/basictracer-go" - rev = "1b32af207119a14b1b231d451df3ed04a72efebf" - sha256 = "0hs969asib4yqj5k755zr0byz2iqvjbs6z1szcnr50q6fihigca0" - -["github.com/opentracing/opentracing-go"] - sumVersion = "v1.1.0" - ["github.com/opentracing/opentracing-go".fetch] - type = "git" - url = "https://github.com/opentracing/opentracing-go" - rev = "659c90643e714681897ec2521c60567dd21da733" - sha256 = "0aj9cbm21zsg1i5l25hz8gn0yf99yxyxcp1gqh3yd5g4knj2cgzf" - -["github.com/openzipkin-contrib/zipkin-go-opentracing"] - sumVersion = "v0.4.5" - ["github.com/openzipkin-contrib/zipkin-go-opentracing".fetch] - type = "git" - url = "https://github.com/openzipkin-contrib/zipkin-go-opentracing" - rev = "223664cff43dfd9f54659ff15dc4bd6e023d0c14" - sha256 = "0mdvx50mw17c926rhhkjg8z54v8h0jvnqahdlpij2kbxi3ncgr7q" - -["github.com/openzipkin/zipkin-go"] - sumVersion = "v0.2.2" - ["github.com/openzipkin/zipkin-go".fetch] - type = "git" - url = "https://github.com/openzipkin/zipkin-go" - rev = "c29478e51bfb2e9c93e0e9f5e015e5993a490399" - sha256 = "18c884anq0pkahmjwyhrdg247wyq33ccxp5k7fcq5gzh8g6dj92s" - -["github.com/ory/dockertest"] - sumVersion = "v3.3.5+incompatible" - ["github.com/ory/dockertest".fetch] - type = "git" - url = "https://github.com/ory/dockertest" - rev = "2b0896a948c60f3207381d9fc259d0fc13227c30" - sha256 = "0fgj60l82sl6chd7i4s7lxqjr9hxkzmkaxnc8h6qbvn42246sy68" - -["github.com/otiai10/copy"] - sumVersion = "v1.6.0" - ["github.com/otiai10/copy".fetch] - type = "git" - url = "https://github.com/otiai10/copy" - rev = "edeb9f37d4d0c28725014fcab6635120197932a1" - sha256 = "1l84qx9n464nh1izgr1kx5xb1ab878b2x803fck0w9gy1bwch25h" - -["github.com/otiai10/curr"] - sumVersion = "v1.0.0" - ["github.com/otiai10/curr".fetch] - type = "git" - url = "https://github.com/otiai10/curr" - rev = "88e2f2cffa0b5f13e90ee963a321bd1b2f715561" - sha256 = "0fpw20adq2wff7l4c87zaavj9jra4d64a8bbjixiiv3bbarim987" - -["github.com/otiai10/mint"] - sumVersion = "v1.3.2" - ["github.com/otiai10/mint".fetch] - type = "git" - url = "https://github.com/otiai10/mint" - rev = "3588d691480a831b1e78b776d3bccd9d5ce6461c" - sha256 = "0448nkhmp1ny64g2d7m5x8inz118zj03j6q0b97q3dszzs7hhan4" - -["github.com/pact-foundation/pact-go"] - sumVersion = "v1.0.4" - ["github.com/pact-foundation/pact-go".fetch] - type = "git" - url = "https://github.com/pact-foundation/pact-go" - rev = "3ce08c8af46b7bc33a06efc9b8807c08806c8af2" - sha256 = "08mnyf1yb6zjqfzs1pdh44drv390lfilhh4vi4asnjk52gknqfn0" - -["github.com/pascaldekloe/goe"] - sumVersion = "v0.1.0" - ["github.com/pascaldekloe/goe".fetch] - type = "git" - url = "https://github.com/pascaldekloe/goe" - rev = "57f6aae5913c64c9bcae5dbdffd33365b5a7f138" - sha256 = "1dqd3mfb4z2vmv6pg6fhgvfc53vhndk24wcl9lj1rz02n6m279fq" - -["github.com/pborman/uuid"] - sumVersion = "v1.2.0" - ["github.com/pborman/uuid".fetch] - type = "git" - url = "https://github.com/pborman/uuid" - rev = "8b1b92947f46224e3b97bb1a3a5b0382be00d31e" - sha256 = "0f146yjqwx2mr110kl8scjhqd08hys7vr5z0d0a3lskb6yy22gfg" - -["github.com/pelletier/go-toml"] - sumVersion = "v1.8.1" - ["github.com/pelletier/go-toml".fetch] - type = "git" - url = "https://github.com/pelletier/go-toml" - rev = "65ca8064882c8c308e5c804c5d5443d409e0738c" - sha256 = "1pi1r9ds0vxjza4qrbk52y98wxrzh1ghwzc9c2v1w6i02pdwdcz9" - -["github.com/performancecopilot/speed"] - sumVersion = "v3.0.0+incompatible" - ["github.com/performancecopilot/speed".fetch] - type = "git" - url = "https://github.com/performancecopilot/speed" - rev = "839069a3ed70162d3bcefb9891c8ca852d877c1c" - sha256 = "1r0l6i80xkx9dcysa7ajvs5ypqkw2k0422k0hbz28fizaq9d8y0m" - -["github.com/petermattis/goid"] - sumVersion = "v0.0.0-20180202154549-b0b1615b78e5" - ["github.com/petermattis/goid".fetch] - type = "git" - url = "https://github.com/petermattis/goid" - rev = "b0b1615b78e5ee59739545bb38426383b2cda4c9" - sha256 = "0ghfxn045r0bbn2vszw897lxzmhnm4k59aypjvpxl0pbzsw9ab2c" - -["github.com/pierrec/lz4"] - sumVersion = "v2.0.5+incompatible" - ["github.com/pierrec/lz4".fetch] - type = "git" - url = "https://github.com/pierrec/lz4" - rev = "ea731401f5c95a8ba30f15787e5e0fb77c60c66b" - sha256 = "0y5rh7z01zycd59nnjpkqq0ydyjmcg9j1xw15q1i600l9j9g617p" - -["github.com/pkg/errors"] - sumVersion = "v0.9.1" - ["github.com/pkg/errors".fetch] - type = "git" - url = "https://github.com/pkg/errors" - rev = "614d223910a179a466c1767a985424175c39b465" - sha256 = "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq" - -["github.com/pkg/profile"] - sumVersion = "v1.2.1" - ["github.com/pkg/profile".fetch] - type = "git" - url = "https://github.com/pkg/profile" - rev = "5b67d428864e92711fcbd2f8629456121a56d91f" - sha256 = "0blqmvgqvdbqmh3fp9pfdxc9w1qfshrr0zy9whj0sn372bw64qnr" - -["github.com/pkg/sftp"] - sumVersion = "v1.10.1" - ["github.com/pkg/sftp".fetch] - type = "git" - url = "https://github.com/pkg/sftp" - rev = "3edd153f213d8d4191a0ee4577c61cca19436632" - sha256 = "0iw6lijdljwh5xw5hsy0b578cr52h6vvm7hbnzlrvciwhh4sfhhp" - -["github.com/pmezard/go-difflib"] - sumVersion = "v1.0.0" - ["github.com/pmezard/go-difflib".fetch] - type = "git" - url = "https://github.com/pmezard/go-difflib" - rev = "792786c7400a136282c1664665ae0a8db921c6c2" - sha256 = "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw" - -["github.com/posener/complete"] - sumVersion = "v1.1.1" - ["github.com/posener/complete".fetch] - type = "git" - url = "https://github.com/posener/complete" - rev = "98eb9847f27ba2008d380a32c98be474dea55bdf" - sha256 = "1nbdiybjizbaxbf5q0xwbq0cjqw4bl6jggvsjzrpif0w86fcjda2" - -["github.com/prometheus/client_golang"] - sumVersion = "v1.10.0" - ["github.com/prometheus/client_golang".fetch] - type = "git" - url = "https://github.com/prometheus/client_golang" - rev = "efe7aa73021f40ba96d167c144941fa5fb7f43e2" - sha256 = "1yih7gpwkf7kraml8xxsgspg9bc96xysy3r9r7xs33qx83dh4wyc" - -["github.com/prometheus/client_model"] - sumVersion = "v0.2.0" - ["github.com/prometheus/client_model".fetch] - type = "git" - url = "https://github.com/prometheus/client_model" - rev = "7bc5445566f0fe75b15de23e6b93886e982d7bf9" - sha256 = "0jffnz94d6ff39fr96b5w8i8yk26pwnrfggzz8jhi8k0yihg2c9d" - -["github.com/prometheus/common"] - sumVersion = "v0.23.0" - ["github.com/prometheus/common".fetch] - type = "git" - url = "https://github.com/prometheus/common" - rev = "b4304c504af1cf993f7b6873c5455e0ac51726a7" - sha256 = "1kj0vlvcmj6wy6v994jv2zim6yxbxybjnp988ljv36lr8i1asgyy" - -["github.com/prometheus/procfs"] - sumVersion = "v0.6.0" - ["github.com/prometheus/procfs".fetch] - type = "git" - url = "https://github.com/prometheus/procfs" - rev = "e971af51d579a49db14657a96eebec39cefb4755" - sha256 = "0czzw37dq0sfq7rivxmxxw5hy287grqnng6q6hfz6mkqmhqgm1m6" - -["github.com/prometheus/tsdb"] - sumVersion = "v0.7.1" - ["github.com/prometheus/tsdb".fetch] - type = "git" - url = "https://github.com/prometheus/tsdb" - rev = "c20450564cc42983bf923c13f3fda42de709ac13" - sha256 = "1c1da8i5byvhh4fp3vqjfb65aaksjskn3ggb8wg9hcfzjrhgpz04" - -["github.com/rakyll/statik"] - sumVersion = "v0.1.7" - ["github.com/rakyll/statik".fetch] - type = "git" - url = "https://github.com/rakyll/statik" - rev = "46bd79c4540341fe472fe71dd2ce0ccd4e635450" - sha256 = "0y0kbzma55vmyqhyrw9ssgvxn6nw7d0zg72a7nz8vp1zly4hs6va" - -["github.com/rcrowley/go-metrics"] - sumVersion = "v0.0.0-20200313005456-10cdbea86bc0" - ["github.com/rcrowley/go-metrics".fetch] - type = "git" - url = "https://github.com/rcrowley/go-metrics" - rev = "10cdbea86bc0b922507ce91d43f4f78a5bea2e8f" - sha256 = "157rfn5kf1mdn65gay38zpv6zam3sfa5a3zkx9wxk77y7w3kam19" - -["github.com/regen-network/cosmos-proto"] - sumVersion = "v0.3.1" - ["github.com/regen-network/cosmos-proto".fetch] - type = "git" - url = "https://github.com/regen-network/cosmos-proto" - rev = "f793b6157c2cfb8c1c797100e1918b2d1eb40615" - sha256 = "05sk9jhk4qz5m4vkj0wr0swhvq9niz7v7bvpxh063vz0y6mmpj05" - -["github.com/rogpeppe/fastuuid"] - sumVersion = "v1.2.0" - ["github.com/rogpeppe/fastuuid".fetch] - type = "git" - url = "https://github.com/rogpeppe/fastuuid" - rev = "10c3923834d38e951ae8f627bfec2dc632c5b6cb" - sha256 = "028acdg63zkxpjz3l639nlhki2l0canr2v5jglrmwa1wpjqcfff8" - -["github.com/rogpeppe/go-internal"] - sumVersion = "v1.3.0" - ["github.com/rogpeppe/go-internal".fetch] - type = "git" - url = "https://github.com/rogpeppe/go-internal" - rev = "438578804ca6f31be148c27683afc419ce47c06e" - sha256 = "0mcdh1licgnnahwml9y2iq6xy5x9xmjw5frcnds2s3wpjyqrl216" - -["github.com/rs/cors"] - sumVersion = "v1.7.0" - ["github.com/rs/cors".fetch] - type = "git" - url = "https://github.com/rs/cors" - rev = "db0fe48135e83b5812a5a31be0eea66984b1b521" - sha256 = "1abz6jxp7bhcwwsgcz9ajkijspkc46s0chrhqspy4czskmmazygi" - -["github.com/rs/xid"] - sumVersion = "v1.2.1" - ["github.com/rs/xid".fetch] - type = "git" - url = "https://github.com/rs/xid" - rev = "15d26544def341f036c5f8dca987a4cbe575032c" - sha256 = "1vgw1dikqw273awcci6pzifs7shkl5ah4l88j1zjbnpgbiwzlx9j" - -["github.com/rs/zerolog"] - sumVersion = "v1.21.0" - ["github.com/rs/zerolog".fetch] - type = "git" - url = "https://github.com/rs/zerolog" - rev = "f2cc3cf8b70aa2b9dbf9320277032131c87f4600" - sha256 = "14hsj9mgfflsj1y64iy7gri5539wdgfwdmsajk0sxypjj4194bhf" - -["github.com/russross/blackfriday"] - sumVersion = "v1.5.2" - ["github.com/russross/blackfriday".fetch] - type = "git" - url = "https://github.com/russross/blackfriday" - rev = "05f3235734ad95d0016f6a23902f06461fcf567a" - sha256 = "0jzbfzcywqcrnym4gxlz6nphmm1grg6wsl4f0r9x384rn83wkj7c" - -["github.com/russross/blackfriday/v2"] - sumVersion = "v2.0.1" - ["github.com/russross/blackfriday/v2".fetch] - type = "git" - url = "https://github.com/russross/blackfriday" - rev = "d3b5b032dc8e8927d31a5071b56e14c89f045135" - sha256 = "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j" - -["github.com/ryanuber/columnize"] - sumVersion = "v0.0.0-20160712163229-9b3edd62028f" - ["github.com/ryanuber/columnize".fetch] - type = "git" - url = "https://github.com/ryanuber/columnize" - rev = "9b3edd62028f107d7cabb19353292afd29311a4e" - sha256 = "1ya1idkbb0a9fjlhkcnh5a9yvpwzwfmbyg7d56lpplwr9rqi1da4" - -["github.com/samuel/go-zookeeper"] - sumVersion = "v0.0.0-20190923202752-2cc03de413da" - ["github.com/samuel/go-zookeeper".fetch] - type = "git" - url = "https://github.com/samuel/go-zookeeper" - rev = "2cc03de413da42869e2db7ce7965d3e978d917eb" - sha256 = "11z2r73q6qk9xy3mzkhdxd7cbfqsdr0105d5m03q4r47fki46hgx" - -["github.com/sasha-s/go-deadlock"] - sumVersion = "v0.2.1-0.20190427202633-1595213edefa" - ["github.com/sasha-s/go-deadlock".fetch] - type = "git" - url = "https://github.com/sasha-s/go-deadlock" - rev = "1595213edefa28ca5047b00340c63557f9c051d0" - sha256 = "06h5g16zlfnw9wvgaqp7jfav3n3pvli6asfcx1hv44sl601wnwk0" - -["github.com/sean-/seed"] - sumVersion = "v0.0.0-20170313163322-e2103e2c3529" - ["github.com/sean-/seed".fetch] - type = "git" - url = "https://github.com/sean-/seed" - rev = "e2103e2c35297fb7e17febb81e49b312087a2372" - sha256 = "0glir8jxi1w7aga2jwdb63pp1h8q4whknili7xixsqzwyy716125" - -["github.com/seccomp/libseccomp-golang"] - sumVersion = "v0.9.1" - ["github.com/seccomp/libseccomp-golang".fetch] - type = "git" - url = "https://github.com/seccomp/libseccomp-golang" - rev = "689e3c1541a84461afc49c1c87352a6cedf72e9c" - sha256 = "022c8prvxz0shrifams7lq4xidvkcqg9xi87wjjcpmbikqi72cna" - -["github.com/shurcooL/sanitized_anchor_name"] - sumVersion = "v1.0.0" - ["github.com/shurcooL/sanitized_anchor_name".fetch] - type = "git" - url = "https://github.com/shurcooL/sanitized_anchor_name" - rev = "7bfe4c7ecddb3666a94b053b422cdd8f5aaa3615" - sha256 = "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f" - -["github.com/sirupsen/logrus"] - sumVersion = "v1.8.1" - ["github.com/sirupsen/logrus".fetch] - type = "git" - url = "https://github.com/sirupsen/logrus" - rev = "bdc0db8ead3853c56b7cd1ac2ba4e11b47d7da6b" - sha256 = "0rvqzic2zz7fpxyizmqxwmhv1m52ii9bgxnqa6km8wsa0l08wh42" - -["github.com/smartystreets/assertions"] - sumVersion = "v0.0.0-20180927180507-b2de0cb4f26d" - ["github.com/smartystreets/assertions".fetch] - type = "git" - url = "https://github.com/smartystreets/assertions" - rev = "b2de0cb4f26d0705483a2f495d89896d0b808573" - sha256 = "1i7ldgavgl35c7gk25p7bvdr282ckng090zr4ch9mk1705akx09y" - -["github.com/smartystreets/goconvey"] - sumVersion = "v1.6.4" - ["github.com/smartystreets/goconvey".fetch] - type = "git" - url = "https://github.com/smartystreets/goconvey" - rev = "505e419363375c0dc132d3ac02632a4ee32199ca" - sha256 = "07zjxwszayal88z1j2bwnqrsa32vg8l4nivks5yfr9j8xfsw7n6m" - -["github.com/snikch/goodman"] - sumVersion = "v0.0.0-20171125024755-10e37e294daa" - ["github.com/snikch/goodman".fetch] - type = "git" - url = "https://github.com/snikch/goodman" - rev = "10e37e294daa3c9a90abded60ff9924bafab3888" - sha256 = "0n6m17lmlfsynd7ja3s3w7pgpi7zdyakqbg4ahzdq9918fwddqmp" - -["github.com/soheilhy/cmux"] - sumVersion = "v0.1.4" - ["github.com/soheilhy/cmux".fetch] - type = "git" - url = "https://github.com/soheilhy/cmux" - rev = "e09e9389d85d8492d313d73d1469c029e710623f" - sha256 = "1f736g68d9vwlyfb6g0fxkr0r875369xafk30cz8kaq5niaqwv0h" - -["github.com/sony/gobreaker"] - sumVersion = "v0.4.1" - ["github.com/sony/gobreaker".fetch] - type = "git" - url = "https://github.com/sony/gobreaker" - rev = "21dbfda1fc5e89b91bd0c835a91c31fe4d461e88" - sha256 = "0iarblm3w2d0p997jsw9bkznfj0wa8d586nh37ii5gnqy41va700" - -["github.com/spaolacci/murmur3"] - sumVersion = "v1.1.0" - ["github.com/spaolacci/murmur3".fetch] - type = "git" - url = "https://github.com/spaolacci/murmur3" - rev = "f09979ecbc725b9e6d41a297405f65e7e8804acc" - sha256 = "1lv3zyz3jy2d76bhvvs8svygx66606iygdvwy5cwc0p5z8yghq25" - -["github.com/spf13/afero"] - sumVersion = "v1.3.4" - ["github.com/spf13/afero".fetch] - type = "git" - url = "https://github.com/spf13/afero" - rev = "799ff74c0fd7e7df974e6ffa1c94e3d206f5673b" - sha256 = "0r158myfm55ig49yimqn44g6sp759q80hdv1iccy1kmm08vkizpi" - -["github.com/spf13/cast"] - sumVersion = "v1.3.1" - ["github.com/spf13/cast".fetch] - type = "git" - url = "https://github.com/spf13/cast" - rev = "1ffadf551085444af981432dd0f6d1160c11ec64" - sha256 = "0lb84788glr0qzrq2ifi36rgvp96qrgywvxrr3ggq5hrbr38hgn1" - -["github.com/spf13/cobra"] - sumVersion = "v1.1.3" - ["github.com/spf13/cobra".fetch] - type = "git" - url = "https://github.com/spf13/cobra" - rev = "8380ddd3132bdf8fd77731725b550c181dda0aa8" - sha256 = "1lnzjsjk37xbrya6w5r0l0a2wak0v0q10npy3k088i84n3gpmz83" - -["github.com/spf13/jwalterweatherman"] - sumVersion = "v1.1.0" - ["github.com/spf13/jwalterweatherman".fetch] - type = "git" - url = "https://github.com/spf13/jwalterweatherman" - rev = "94f6ae3ed3bceceafa716478c5fbf8d29ca601a1" - sha256 = "1ywmkwci5zyd88ijym6f30fj5c0k2yayxarkmnazf5ybljv50q7b" - -["github.com/spf13/pflag"] - sumVersion = "v1.0.5" - ["github.com/spf13/pflag".fetch] - type = "git" - url = "https://github.com/spf13/pflag" - rev = "2e9d26c8c37aae03e3f9d4e90b7116f5accb7cab" - sha256 = "0gpmacngd0gpslnbkzi263f5ishigzgh6pbdv9hp092rnjl4nd31" - -["github.com/spf13/viper"] - sumVersion = "v1.7.1" - ["github.com/spf13/viper".fetch] - type = "git" - url = "https://github.com/spf13/viper" - rev = "3826be313591f83193f048520482a7b3cf17d506" - sha256 = "1bci9wcqj8ghczwnj7wdlqzzbkm24fxpcl580vnrfc67yr5ppi01" - -["github.com/streadway/amqp"] - sumVersion = "v0.0.0-20190827072141-edfb9018d271" - ["github.com/streadway/amqp".fetch] - type = "git" - url = "https://github.com/streadway/amqp" - rev = "edfb9018d2714e4ec54dbaba37dbfef2bdadf0e4" - sha256 = "07icg7x7saawzqb9lm9avw6bizs387xdi27zry03m6z5i1a22zq2" - -["github.com/streadway/handy"] - sumVersion = "v0.0.0-20190108123426-d5acb3125c2a" - ["github.com/streadway/handy".fetch] - type = "git" - url = "https://github.com/streadway/handy" - rev = "d5acb3125c2a6654d2d691e6851674a645333da1" - sha256 = "02jwalahfj2lh1snklh6i5hysjl9npx59q31ihdfrva10dssg30r" - -["github.com/stretchr/objx"] - sumVersion = "v0.2.0" - ["github.com/stretchr/objx".fetch] - type = "git" - url = "https://github.com/stretchr/objx" - rev = "ea4fe68685ee0d3cee7032121851b57e7494e8ea" - sha256 = "0pcdvakxgddaiwcdj73ra4da05a3q4cgwbpm2w75ycq4kzv8ij8k" - -["github.com/stretchr/testify"] - sumVersion = "v1.7.0" - ["github.com/stretchr/testify".fetch] - type = "git" - url = "https://github.com/stretchr/testify" - rev = "acba37e5db06f0093b465a7d47822bf13644b66c" - sha256 = "0ixgjsvafr3513pz3r6pmgk074s2dxkll0dadvl25gkf30rkmh10" - -["github.com/subosito/gotenv"] - sumVersion = "v1.2.0" - ["github.com/subosito/gotenv".fetch] - type = "git" - url = "https://github.com/subosito/gotenv" - rev = "2ef7124db659d49edac6aa459693a15ae36c671a" - sha256 = "0mav91j7r4arjkpq5zcf9j74f6pww8ic53x43wy7kg3ibw31yjs5" - -["github.com/syndtr/gocapability"] - sumVersion = "v0.0.0-20200815063812-42c35b437635" - ["github.com/syndtr/gocapability".fetch] - type = "git" - url = "https://github.com/syndtr/gocapability" - rev = "42c35b4376354fd554efc7ad35e0b7f94e3a0ffb" - sha256 = "00zi0k190ydlm9drnafvj9p4cf6axm858wr71pbmq1p3r94iqws4" - -["github.com/syndtr/goleveldb"] - sumVersion = "v1.0.1-0.20200815110645-5c35d600f0ca" - ["github.com/syndtr/goleveldb".fetch] - type = "git" - url = "https://github.com/syndtr/goleveldb" - rev = "5c35d600f0caac04c20d52438103f1a7aa612598" - sha256 = "0wsqybzip0khzgk4cl23ilm30jnf4yd674dkbq4c26ivak9qkmz7" - -["github.com/tecbot/gorocksdb"] - sumVersion = "v0.0.0-20191217155057-f0fad39f321c" - ["github.com/tecbot/gorocksdb".fetch] - type = "git" - url = "https://github.com/tecbot/gorocksdb" - rev = "f0fad39f321c61bf05fcb4a01fe259606235e712" - sha256 = "0brf99da00jf91hf7w0qqk6yj61zcya9ci7pm8d60q6zl40i87c5" - -["github.com/tendermint/btcd"] - sumVersion = "v0.1.1" - ["github.com/tendermint/btcd".fetch] - type = "git" - url = "https://github.com/tendermint/btcd" - rev = "80daadac05d1cd29571fccf27002d79667a88b58" - sha256 = "16s909z5awvqi060rdj577wzbgziyk88s53x24kv9rzc71rm99x1" - -["github.com/tendermint/crypto"] - sumVersion = "v0.0.0-20191022145703-50d29ede1e15" - ["github.com/tendermint/crypto".fetch] - type = "git" - url = "https://github.com/tendermint/crypto" - rev = "50d29ede1e15ab205c8558ad67b85596ee19d3a0" - sha256 = "0vhyxsypb2q1zpcl464hlsdpap7kc3nj6gdff53xwrln2bg1jjin" - -["github.com/tendermint/go-amino"] - sumVersion = "v0.16.0" - ["github.com/tendermint/go-amino".fetch] - type = "git" - url = "https://github.com/tendermint/go-amino" - rev = "ccb15b138dfd74282be78f5e9059387768b12918" - sha256 = "1zcms3l5fihzg8nf4vhdk18qpn1jkbm3rpkjfpskfcrgzlxk6vi5" - -["github.com/tendermint/tendermint"] - sumVersion = "v0.34.13" - ["github.com/tendermint/tendermint".fetch] - type = "git" - url = "https://github.com/tendermint/tendermint" - rev = "849461aab254014f6b7976710400ea59f83265ce" - sha256 = "0il93a42simg5hs01i8zfccw5s4hgh69rkzj4zpz9w1sv46xnyng" - -["github.com/tendermint/tm-db"] - sumVersion = "v0.6.4" - ["github.com/tendermint/tm-db".fetch] - type = "git" - url = "https://github.com/tendermint/tm-db" - rev = "6f9a08cd4522fb13d8df69b1694587d5015114fc" - sha256 = "1sgjf2vaq554ybc0cwkzn17cz2ibzph2rq0dgaw21c2hym09437x" - -["github.com/tmc/grpc-websocket-proxy"] - sumVersion = "v0.0.0-20190109142713-0ad062ec5ee5" - ["github.com/tmc/grpc-websocket-proxy".fetch] - type = "git" - url = "https://github.com/tmc/grpc-websocket-proxy" - rev = "0ad062ec5ee553a48f6dbd280b7a1b5638e8a113" - sha256 = "1anw4v9wspnw9xf2z5r9w0sszwjklyanl0l85wgg6nxak9gnrqp4" - -["github.com/tv42/httpunix"] - sumVersion = "v0.0.0-20150427012821-b75d8614f926" - ["github.com/tv42/httpunix".fetch] - type = "git" - url = "https://github.com/tv42/httpunix" - rev = "b75d8614f926c077e48d85f1f8f7885b758c6225" - sha256 = "1sd9nnyyjm7n96fa18l0shlnapld4m0yj5ij2ba0l9yaaa2byqm9" - -["github.com/ugorji/go"] - sumVersion = "v1.1.4" - ["github.com/ugorji/go".fetch] - type = "git" - url = "https://github.com/ugorji/go" - rev = "2adff0894ba3bc2eeb9f9aea45fefd49802e1a13" - sha256 = "0ma2qvn5wqvjidpdz74x832a813qnr1cxbx6n6n125ak9b3wbn5w" - -["github.com/ugorji/go/codec"] - sumVersion = "v0.0.0-20181204163529-d75b2dcb6bc8" - relPath = "codec" - ["github.com/ugorji/go/codec".fetch] - type = "git" - url = "https://github.com/ugorji/go" - rev = "d75b2dcb6bc890b13ac61b764f5dc5e5a5591dce" - sha256 = "0di1k35gpq9bp958ywranpbskx2vdwlb38s22vl9rybm3wa5g3ps" - -["github.com/urfave/cli"] - sumVersion = "v1.22.1" - ["github.com/urfave/cli".fetch] - type = "git" - url = "https://github.com/urfave/cli" - rev = "c71fbcefd21552b70cd625b2c54466006e258ad7" - sha256 = "04ymak18flqlfcn8lycmg8r3931al8dvr8f1cg9n4yjaskmg72v8" - -["github.com/vishvananda/netlink"] - sumVersion = "v1.1.0" - ["github.com/vishvananda/netlink".fetch] - type = "git" - url = "https://github.com/vishvananda/netlink" - rev = "f049be6f391489d3f374498fe0c8df8449258372" - sha256 = "1vhl30p1gx636a088ls4h6a0l8jjyfvz79fr5w0qzdrg4qg9h08h" - -["github.com/vishvananda/netns"] - sumVersion = "v0.0.0-20191106174202-0a2b9b5464df" - ["github.com/vishvananda/netns".fetch] - type = "git" - url = "https://github.com/vishvananda/netns" - rev = "0a2b9b5464df8343199164a0321edf3313202f7e" - sha256 = "1k1zb7pzc4r4wicq7ncspf6zsvq298lvpsq963ibj813shg657xw" - -["github.com/xiang90/probing"] - sumVersion = "v0.0.0-20190116061207-43a291ad63a2" - ["github.com/xiang90/probing".fetch] - type = "git" - url = "https://github.com/xiang90/probing" - rev = "43a291ad63a214a207fefbf03c7d9d78b703162b" - sha256 = "1z22ms16j5j42775mf31isanwx2pwr1d8wqw8006dczjv36qnz5i" - -["github.com/xordataexchange/crypt"] - sumVersion = "v0.0.3-0.20170626215501-b2862e3d0a77" - ["github.com/xordataexchange/crypt".fetch] - type = "git" - url = "https://github.com/xordataexchange/crypt" - rev = "b2862e3d0a775f18c7cfe02273500ae307b61218" - sha256 = "04q3856anpzl4gdfgmg7pbp9cx231nkz3ymq2xp27rnmmwhfxr8y" - -["github.com/yuin/goldmark"] - sumVersion = "v1.2.1" - ["github.com/yuin/goldmark".fetch] - type = "git" - url = "https://github.com/yuin/goldmark" - rev = "91e5269fb0f873f91c9a01e98f32de15ca49440f" - sha256 = "12rsnsf65drcp0jfw2jl9w589vsn3pxdk1zh3v9q908iigngrcmy" - -["github.com/zondax/hid"] - sumVersion = "v0.9.0" - ["github.com/zondax/hid".fetch] - type = "git" - url = "https://github.com/zondax/hid" - rev = "302fd402163c34626286195dfa9adac758334acc" - sha256 = "1wnpfn4bd86nz2v9dgb40xpz1ya66vahdkrhb1gj4jyyxdnnhqkh" - -["go.etcd.io/bbolt"] - sumVersion = "v1.3.5" - ["go.etcd.io/bbolt".fetch] - type = "git" - url = "https://github.com/etcd-io/bbolt" - rev = "232d8fc87f50244f9c808f4745759e08a304c029" - sha256 = "1h64gipvcg7060byv5wjlf524kqwj12p3v08kfh4ygv46vpm8p2r" - -["go.etcd.io/etcd"] - sumVersion = "v0.0.0-20191023171146-3cf2f69b5738" - ["go.etcd.io/etcd".fetch] - type = "git" - url = "https://github.com/etcd-io/etcd" - rev = "3cf2f69b5738fb702ba1a935590f36b52b18979b" - sha256 = "1w5jr8shn6whccksmpbcllcr1f8gjgh1dnix5rmnv3wwr5in5cgq" - -["go.opencensus.io"] - sumVersion = "v0.22.4" - ["go.opencensus.io".fetch] - type = "git" - url = "https://github.com/census-instrumentation/opencensus-go" - rev = "5fa069b99bc903d713add0295c7e0a55d34ae573" - sha256 = "10skbvs4yxjm3z10yfg5cj2mdzjsna87qk1icp9xv0iwp8wzq6h0" - -["go.uber.org/atomic"] - sumVersion = "v1.5.0" - ["go.uber.org/atomic".fetch] - type = "git" - url = "https://github.com/uber-go/atomic" - rev = "9dc4df04d0d1c39369750a9f6c32c39560672089" - sha256 = "1ysc6xzafabcn52pbf4dx0j6vrik4n0x5gxfjib5f9jr9ilzcw7z" - -["go.uber.org/multierr"] - sumVersion = "v1.3.0" - ["go.uber.org/multierr".fetch] - type = "git" - url = "https://github.com/uber-go/multierr" - rev = "c3fc3d02ec864719d8e25be2d7dde1e35a36aa27" - sha256 = "0bq3m8qfx76p0jjgs1idb7fn0s6a4jjkldfqldyxdh3nqhyngb4k" - -["go.uber.org/tools"] - sumVersion = "v0.0.0-20190618225709-2cfd321de3ee" - ["go.uber.org/tools".fetch] - type = "git" - url = "https://github.com/uber-go/tools" - rev = "2cfd321de3ee5d5f8a5fda2521d1703478334d98" - sha256 = "0kcsg9pd3vyp5v9dz8xzd9lkpbqrlhr1rv6hg38afq6ifziw319i" - -["go.uber.org/zap"] - sumVersion = "v1.13.0" - ["go.uber.org/zap".fetch] - type = "git" - url = "https://github.com/uber-go/zap" - rev = "33e58d4d0120aa28d4df84cd244838c490846c9d" - sha256 = "11ayasjz1ki1qzl75qrzcnpd718bpms0wcldkd4f4wbplq0g04ck" - -["golang.org/x/crypto"] - sumVersion = "v0.0.0-20201221181555-eec23a3978ad" - ["golang.org/x/crypto".fetch] - type = "git" - url = "https://go.googlesource.com/crypto" - rev = "eec23a3978adcfd26c29f4153eaa3e3d9b2cc53a" - sha256 = "18cf6vhmx7v83ahyil7j8hkwhwf1012bgixglz7a6nc35qwwqb3r" - -["golang.org/x/exp"] - sumVersion = "v0.0.0-20200331195152-e8c3332aa8e5" - ["golang.org/x/exp".fetch] - type = "git" - url = "https://go.googlesource.com/exp" - rev = "e8c3332aa8e5b8e6acb4707c3a7e5979052b20aa" - sha256 = "085mbasmshl64f2d0awrf5k0iyh1aij888cp9aa12ldzp36404rw" - -["golang.org/x/image"] - sumVersion = "v0.0.0-20190802002840-cff245a6509b" - ["golang.org/x/image".fetch] - type = "git" - url = "https://go.googlesource.com/image" - rev = "cff245a6509b8c4de022d0d5b9037c503c5989d6" - sha256 = "0hiznlkiaay30acwvvyq8g6bm32r7bc6gv47pygrcxqpapasbz84" - -["golang.org/x/lint"] - sumVersion = "v0.0.0-20200302205851-738671d3881b" - ["golang.org/x/lint".fetch] - type = "git" - url = "https://go.googlesource.com/lint" - rev = "738671d3881b9731cc63024d5d88cf28db875626" - sha256 = "0jkiz4py59jjnkyxbxifpf7bsar11lbgmj5jiq2kic5k03shkn9c" - -["golang.org/x/mobile"] - sumVersion = "v0.0.0-20190719004257-d2bd2a29d028" - ["golang.org/x/mobile".fetch] - type = "git" - url = "https://go.googlesource.com/mobile" - rev = "d2bd2a29d028cb94031e5e81788b19b371d00eb8" - sha256 = "1nv6vvhnjr01nx9y06q46ww87dppdwpbqrlsfg1xf2587wxl8xiv" - -["golang.org/x/mod"] - sumVersion = "v0.3.0" - ["golang.org/x/mod".fetch] - type = "git" - url = "https://go.googlesource.com/mod" - rev = "859b3ef565e237f9f1a0fb6b55385c497545680d" - sha256 = "0ldgbx2zpprbsfn6p8pfgs4nn87gwbfcv2z0fa7n8alwsq2yw78q" - -["golang.org/x/net"] - sumVersion = "v0.0.0-20210903162142-ad29c8ab022f" - ["golang.org/x/net".fetch] - type = "git" - url = "https://go.googlesource.com/net" - rev = "ad29c8ab022f0f2c6a18c8279b1db2230acfa59b" - sha256 = "14qfyn4n6x7c339771i1s7chb8qx12y9xbrkgszyn0a3vgggzh6x" - -["golang.org/x/oauth2"] - sumVersion = "v0.0.0-20200902213428-5d25da1a8d43" - ["golang.org/x/oauth2".fetch] - type = "git" - url = "https://go.googlesource.com/oauth2" - rev = "5d25da1a8d43b66f2898c444f899c7bcfd6a407e" - sha256 = "14jx8sxshbvnx4fggn12mlmz000zcrd1a73n1455b1wgg1xfzq3n" - -["golang.org/x/sync"] - sumVersion = "v0.0.0-20201207232520-09787c993a3a" - ["golang.org/x/sync".fetch] - type = "git" - url = "https://go.googlesource.com/sync" - rev = "09787c993a3ab68e3d1f5c9b2394ab9433f391be" - sha256 = "1nv4mwi9njkkyc7lwmxrjr8ggfh2cf1c67a9bq85dnss81vpj61y" - -["golang.org/x/sys"] - sumVersion = "v0.0.0-20210903071746-97244b99971b" - ["golang.org/x/sys".fetch] - type = "git" - url = "https://go.googlesource.com/sys" - rev = "97244b99971b253e564db131f988a3fde9c556ca" - sha256 = "08b7iaj5ahr6g09wxagh2l9ndpgmnmsmlghkp33rwhwjkn5scxig" - -["golang.org/x/term"] - sumVersion = "v0.0.0-20201126162022-7de9c90e9dd1" - ["golang.org/x/term".fetch] - type = "git" - url = "https://go.googlesource.com/term" - rev = "7de9c90e9dd184706b838f536a1cbf40a296ddb7" - sha256 = "1ba252xmv6qsvf1w1gcy98mngrj0vd4inbjw0lsklqvva65nljna" - -["golang.org/x/text"] - sumVersion = "v0.3.6" - ["golang.org/x/text".fetch] - type = "git" - url = "https://go.googlesource.com/text" - rev = "e328d63cff14134669501e0e154e4f141c784322" - sha256 = "0wzhvdb059vrp2cczqw422ajrb9sbs4l3qd020hlngj33qfhxah0" - -["golang.org/x/time"] - sumVersion = "v0.0.0-20191024005414-555d28b269f0" - ["golang.org/x/time".fetch] - type = "git" - url = "https://go.googlesource.com/time" - rev = "555d28b269f0569763d25dbe1a237ae74c6bcc82" - sha256 = "1rhl4lyz030kwfsg63yk83yd3ivryv1afmzdz9sxbhcj84ym6h4r" - -["golang.org/x/tools"] - sumVersion = "v0.1.0" - ["golang.org/x/tools".fetch] - type = "git" - url = "https://go.googlesource.com/tools" - rev = "fe37c9e135b934191089b245ac29325091462508" - sha256 = "1asrm22kv5x891qkbpap8alg612k321jbs1akc0vwsan251gm507" - -["golang.org/x/xerrors"] - sumVersion = "v0.0.0-20200804184101-5ec99f83aff1" - ["golang.org/x/xerrors".fetch] - type = "git" - url = "https://go.googlesource.com/xerrors" - rev = "5ec99f83aff198f5fbd629d6c8d8eb38a04218ca" - sha256 = "1dbzc3gmf2haazpv7cgmv97rq40g2xzwbglc17vas8dwhgwgwrzb" - -["google.golang.org/api"] - sumVersion = "v0.30.0" - ["google.golang.org/api".fetch] - type = "git" - url = "https://github.com/googleapis/google-api-go-client" - rev = "dcbe36d62163edc6a7dca06c1d9f34881a2283b7" - sha256 = "1vh5rrc6hvzh1rqawrwr4nyilnr3dgqx1pr2njjzdg0prfmflm5p" - -["google.golang.org/appengine"] - sumVersion = "v1.6.6" - ["google.golang.org/appengine".fetch] - type = "git" - url = "https://github.com/golang/appengine" - rev = "553959209a20f3be281c16dd5be5c740a893978f" - sha256 = "15c38h6fbv06cnkr6yknygfrpibyms2mya4w0l29kaxf42jn1qi5" - -["google.golang.org/genproto"] - sumVersion = "v0.0.0-20210114201628-6edceaf6022f" - ["google.golang.org/genproto".fetch] - type = "git" - url = "https://github.com/googleapis/go-genproto" - rev = "6edceaf6022f0286b66b688465262f636c7f7f43" - sha256 = "0gi8ji5p0wn1hwvaw42rphai51z0xnm0l8ar5n0y3a8d53p1zyma" - -["google.golang.org/grpc"] - sumVersion = "v1.33.2" - ["google.golang.org/grpc".fetch] - type = "git" - url = "https://github.com/grpc/grpc-go" - rev = "56d63285d528c0d33f9bf8c355139d91edc047de" - sha256 = "03yz4nlf4kqbnpw48f0mvcb2f5zzy0vjd5i2iw0hrjspd0238fzk" - -["google.golang.org/grpc/cmd/protoc-gen-go-grpc"] - sumVersion = "v1.0.0" - relPath = "cmd/protoc-gen-go-grpc" - ["google.golang.org/grpc/cmd/protoc-gen-go-grpc".fetch] - type = "git" - url = "https://github.com/grpc/grpc-go" - rev = "13edeeffdea7a41d5aad96c28deb4c7bd01a9397" - sha256 = "0d2cy7qwhn9jj8iycpckadp2x6668ybcxpb52hdak1hp1gcha9pj" - -["google.golang.org/protobuf"] - sumVersion = "v1.26.0" - ["google.golang.org/protobuf".fetch] - type = "git" - url = "https://go.googlesource.com/protobuf" - rev = "f2d1f6cbe10b90d22296ea09a7217081c2798009" - sha256 = "0xq6phaps6d0vcv13ga59gzj4306l0ki9kikhmb52h6pq0iwfqlz" - -["gopkg.in/alecthomas/kingpin.v2"] - sumVersion = "v2.2.6" - ["gopkg.in/alecthomas/kingpin.v2".fetch] - type = "git" - url = "https://gopkg.in/alecthomas/kingpin.v2" - rev = "947dcec5ba9c011838740e680966fd7087a71d0d" - sha256 = "0mndnv3hdngr3bxp7yxfd47cas4prv98sqw534mx7vp38gd88n5r" - -["gopkg.in/check.v1"] - sumVersion = "v1.0.0-20190902080502-41f04d3bba15" - ["gopkg.in/check.v1".fetch] - type = "git" - url = "https://gopkg.in/check.v1" - rev = "41f04d3bba152ddec2103e299fed053415705330" - sha256 = "0vfk9czmlxmp6wndq8k17rhnjxal764mxfhrccza7nwlia760pjy" - -["gopkg.in/cheggaaa/pb.v1"] - sumVersion = "v1.0.25" - ["gopkg.in/cheggaaa/pb.v1".fetch] - type = "git" - url = "https://gopkg.in/cheggaaa/pb.v1" - rev = "2af8bbdea9e99e83b3ac400d8f6b6d1b8cbbf338" - sha256 = "0vxqiw6f3xyv0zy3g4lksf8za0z8i0hvfpw92hqimsy84f79j3dp" - -["gopkg.in/errgo.v2"] - sumVersion = "v2.1.0" - ["gopkg.in/errgo.v2".fetch] - type = "git" - url = "https://gopkg.in/errgo.v2" - rev = "f768c5ab0476c50e978b039312180859c10fe8c0" - sha256 = "065mbihiy7q67wnql0bzl9y1kkvck5ivra68254zbih52jxwrgr2" - -["gopkg.in/fsnotify.v1"] - sumVersion = "v1.4.7" - ["gopkg.in/fsnotify.v1".fetch] - type = "git" - url = "https://gopkg.in/fsnotify.v1" - rev = "c2828203cd70a50dcccfb2761f8b1f8ceef9a8e9" - sha256 = "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g" - -["gopkg.in/gcfg.v1"] - sumVersion = "v1.2.3" - ["gopkg.in/gcfg.v1".fetch] - type = "git" - url = "https://gopkg.in/gcfg.v1" - rev = "61b2c08bc8f6068f7c5ca684372f9a6cb1c45ebe" - sha256 = "165f9wincwnkblp8x6m1f4ch4m8k4gvy5v4x4gqdpmf59kqv5y7s" - -["gopkg.in/ini.v1"] - sumVersion = "v1.61.0" - ["gopkg.in/ini.v1".fetch] - type = "git" - url = "https://gopkg.in/ini.v1" - rev = "fcd0515f91612282aba5f5231a7dd71487e6dd8f" - sha256 = "0lapmfijgjig8aral9g77agmx1vjqx5sa10mcdq5q9j4rirdl1va" - -["gopkg.in/resty.v1"] - sumVersion = "v1.12.0" - ["gopkg.in/resty.v1".fetch] - type = "git" - url = "https://gopkg.in/resty.v1" - rev = "fa5875c0caa5c260ab78acec5a244215a730247f" - sha256 = "062mn735rqzhha5ag07z4gz08hxzrfm2yx067jfmaaxmb6797lmp" - -["gopkg.in/tomb.v1"] - sumVersion = "v1.0.0-20141024135613-dd632973f1e7" - ["gopkg.in/tomb.v1".fetch] - type = "git" - url = "https://gopkg.in/tomb.v1" - rev = "dd632973f1e7218eb1089048e0798ec9ae7dceb8" - sha256 = "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv" - -["gopkg.in/warnings.v0"] - sumVersion = "v0.1.2" - ["gopkg.in/warnings.v0".fetch] - type = "git" - url = "https://gopkg.in/warnings.v0" - rev = "ec4a0fea49c7b46c2aeb0b51aac55779c607e52b" - sha256 = "1kzj50jn708cingn7a13c2wdlzs6qv89dr2h4zj8d09647vlnd81" - -["gopkg.in/yaml.v2"] - sumVersion = "v2.4.0" - ["gopkg.in/yaml.v2".fetch] - type = "git" - url = "https://gopkg.in/yaml.v2" - rev = "7649d4548cb53a614db133b2a8ac1f31859dda8c" - sha256 = "1pbmrpj7gcws34g8vwna4i2nhm9p6235piww36436xhyaa10cldr" - -["gopkg.in/yaml.v3"] - sumVersion = "v3.0.0-20200313102051-9f266ea9e77c" - ["gopkg.in/yaml.v3".fetch] - type = "git" - url = "https://gopkg.in/yaml.v3" - rev = "9f266ea9e77c4c7aab4cf02650570e7c7b3031a5" - sha256 = "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35" - -["gotest.tools"] - sumVersion = "v2.2.0+incompatible" - ["gotest.tools".fetch] - type = "git" - url = "https://github.com/gotestyourself/gotest.tools" - rev = "7c797b5133e5460410dbb22ba779bf35e6975dea" - sha256 = "0yif3gdyckmf8i54jq0xn00kflla5rhib9sarw66ngnbl7bn9kyl" - -["honnef.co/go/tools"] - sumVersion = "v0.0.1-2020.1.4" - ["honnef.co/go/tools".fetch] - type = "git" - url = "https://github.com/dominikh/go-tools" - rev = "3c17a0d920718d58e7fdc0508f211aff0701dd6d" - sha256 = "182j3zzx1bj4j4jiamqn49v9nd3vcrx727f7i9zgcrgmiscvw3mh" - -["rsc.io/binaryregexp"] - sumVersion = "v0.2.0" - ["rsc.io/binaryregexp".fetch] - type = "git" - url = "https://github.com/rsc/binaryregexp" - rev = "857b9542aaa89cfa42a1477b43fa1f24192fe921" - sha256 = "1kar0myy85waw418zslviwx8846zj0m9cmqkxjx0fvgjdi70nc4b" - -["rsc.io/quote/v3"] - sumVersion = "v3.1.0" - relPath = "v3" - ["rsc.io/quote/v3".fetch] - type = "git" - url = "https://github.com/rsc/quote" - rev = "0406d7298882187f4c75f75fa85cc808a64bcef1" - sha256 = "0nvv97hwwrl1mx5gzsbdm1ndnwpg3m7i2jb10ig9wily7zmvki0i" - -["rsc.io/sampler"] - sumVersion = "v1.3.0" - ["rsc.io/sampler".fetch] - type = "git" - url = "https://github.com/rsc/sampler" - rev = "0cc034b51e57ed7832d4c67d526f75a900996e5c" - sha256 = "0byxk2ynba50py805kcvbvjzh59l1r308i1xgyzpw6lff4xx9xjh" - -["sigs.k8s.io/yaml"] - sumVersion = "v1.1.0" - ["sigs.k8s.io/yaml".fetch] - type = "git" - url = "https://github.com/kubernetes-sigs/yaml" - rev = "fd68e9863619f6ec2fdd8625fe1f02e7c877e480" - sha256 = "1p7hvjdr5jsyk7nys1g1pmgnf3ys6n320i6hds85afppk81k01kb" - -["sourcegraph.com/sourcegraph/appdash"] - sumVersion = "v0.0.0-20190731080439-ebfcffb1b5c0" - ["sourcegraph.com/sourcegraph/appdash".fetch] - type = "git" - url = "https://github.com/sourcegraph/appdash" - rev = "ebfcffb1b5c00031ce797183546746715a3cfe87" - sha256 = "1xlff68pa7jchg1xr2nkrkk94mrd0ba2z38968j7swlfyf8rkk3d" diff --git a/resources/gaia5/last-synced.narHash b/resources/gaia5/last-synced.narHash deleted file mode 100644 index ee99978a..00000000 --- a/resources/gaia5/last-synced.narHash +++ /dev/null @@ -1 +0,0 @@ -sha256-NfR9GRBNBlm5hB3lFea+Vlf4dkapZIZg0sZuyOX2cn8= diff --git a/resources/gaia6/default.nix b/resources/gaia6/default.nix deleted file mode 100644 index def9049e..00000000 --- a/resources/gaia6/default.nix +++ /dev/null @@ -1,23 +0,0 @@ -{ pkgs, gaia6-src, ledgerSupport ? false }: -let - pname = "gaia"; - version = "v6.0.1"; - tendermint-version = (fromTOML (builtins.readFile ./go-modules.toml))."github.com/tendermint/tendermint".sumVersion; -in -pkgs.buildGoApplication { - inherit version pname; - src = "${gaia6-src}"; - modules = ./go-modules.toml; - preCheck = '' - export HOME="$(mktemp -d)" - ''; - buildFlags = "-tags netgo" + pkgs.lib.optionalString ledgerSupport ",ledger"; - buildFlagsArray = '' - -ldflags= - -X github.com/cosmos/cosmos-sdk/version.Name=${pname} - -X github.com/cosmos/cosmos-sdk/version.AppName=gaiad - -X github.com/cosmos/cosmos-sdk/version.Version=${version} - -X github.com/cosmos/cosmos-sdk/version.Commit=${gaia6-src.rev} - -X github.com/tendermint/tendermint/version.TMCoreSemVer=${tendermint-version} - ''; -} diff --git a/resources/gaia6/go-modules.toml b/resources/gaia6/go-modules.toml deleted file mode 100644 index f46d1c38..00000000 --- a/resources/gaia6/go-modules.toml +++ /dev/null @@ -1,4818 +0,0 @@ -["4d63.com/gochecknoglobals"] - sumVersion = "v0.0.0-20201008074935-acfc0b28355a" - ["4d63.com/gochecknoglobals".fetch] - type = "git" - url = "https://github.com/leighmcculloch/gochecknoglobals" - rev = "acfc0b28355a2084eb4b6a354c7c05d7945059f5" - sha256 = "1vk1zd04s8npi1dbidpmhymypb9y30i7zfq7g4sjxz1nqp8wms7w" - -["bazil.org/fuse"] - sumVersion = "v0.0.0-20160811212531-371fbbdaa898" - ["bazil.org/fuse".fetch] - type = "git" - url = "https://github.com/bazil/fuse" - rev = "371fbbdaa8987b715bdd21d6adc4c9b20155f748" - sha256 = "1x5p301py7mcxgwklfm6pqqkzssln0nfzllng49pnk60m03ilp4w" - -["bitbucket.org/creachadair/shell"] - sumVersion = "v0.0.6" - ["bitbucket.org/creachadair/shell".fetch] - type = "git" - url = "https://bitbucket.org/creachadair/shell.git" - rev = "b260a13921a4d50f6eaf363c47edfb151c2cbc0c" - sha256 = "03wg7mnaxzknx6bj4l2d22j36zbz8hqxrqdc5asy0bm3jb1ddif2" - -["cloud.google.com/go"] - sumVersion = "v0.81.0" - ["cloud.google.com/go".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "a9e5bdc4191b4b9282b3b53c549e89ccd183c9b6" - sha256 = "15jgynqb5pbxqbj3a7ii970yn4srsw1dbxzxnhpkfkmplalpgyh3" - -["cloud.google.com/go/bigquery"] - sumVersion = "v1.8.0" - relPath = "bigquery" - ["cloud.google.com/go/bigquery".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "0aa265f094062dbc111a6906d279fbb88a6cc761" - sha256 = "1127ha4r0xjsfl04mdb134b6kvpc6yz5bx4bba8m1jmb4k3vyg3j" - -["cloud.google.com/go/datastore"] - sumVersion = "v1.1.0" - relPath = "datastore" - ["cloud.google.com/go/datastore".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "d96ccb2ba7586bb79a416471882d347754a78ce5" - sha256 = "18f1l28665x1a8j8a5bh2i7wb2vrwj050d1g5qda50isgqaybixd" - -["cloud.google.com/go/firestore"] - sumVersion = "v1.1.0" - relPath = "firestore" - ["cloud.google.com/go/firestore".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "20091f47d3c522ea545f358dd9ac1cdb326bba6f" - sha256 = "0slvm0vx5f8l2vs4k9k8jv8qnz6z9dzq25xmrhza82cj9j51ghvb" - -["cloud.google.com/go/pubsub"] - sumVersion = "v1.5.0" - relPath = "pubsub" - ["cloud.google.com/go/pubsub".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "34780b6fce10bf13168ba254f594f810c4dc4983" - sha256 = "0cjnfc7d4ghbqcypa5v12z1yqyj07arbb7mgasz8sy72rdpnf561" - -["cloud.google.com/go/spanner"] - sumVersion = "v1.7.0" - relPath = "spanner" - ["cloud.google.com/go/spanner".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "25a5f07e5bab2a2fbaa1e9cef1f01429f2d01b46" - sha256 = "17szh5px9mw57if74z8cb5bdyzvf2cw0iqc9xigmrpgzmrg3izp8" - -["cloud.google.com/go/storage"] - sumVersion = "v1.10.0" - relPath = "storage" - ["cloud.google.com/go/storage".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "3f2988d48e253a8e290b8c0e821284eead1131a0" - sha256 = "10fp6galzz8jwx35159xdcrwsqaz95xw78iwv1z5n67vhglwi5nf" - -["contrib.go.opencensus.io/exporter/stackdriver"] - sumVersion = "v0.13.4" - ["contrib.go.opencensus.io/exporter/stackdriver".fetch] - type = "git" - url = "https://github.com/census-ecosystem/opencensus-go-exporter-stackdriver" - rev = "0fc2674ae49bc91ffa3b9880ad66f56155ff5616" - sha256 = "1y320lqyxfh9xps1fcblr23ws7lwk4q2cdmy0g5pqxfzi8lhll1l" - -["dmitri.shuralyov.com/gpu/mtl"] - sumVersion = "v0.0.0-20190408044501-666a987793e9" - ["dmitri.shuralyov.com/gpu/mtl".fetch] - type = "git" - url = "https://dmitri.shuralyov.com/gpu/mtl" - rev = "666a987793e9432fbb48592aa2f3bf3463685dfa" - sha256 = "1isd03hgiwcf2ld1rlp0plrnfz7r4i7c5q4kb6hkcd22axnmrv0z" - -["filippo.io/edwards25519"] - sumVersion = "v1.0.0-beta.2" - ["filippo.io/edwards25519".fetch] - type = "git" - url = "https://github.com/FiloSottile/edwards25519" - rev = "6944ac7e84c8dffcf51f4e1b0bc2d75a822549e5" - sha256 = "1fv6mssk1r96jbkbb413kxmcf87xz2knyx1bivdam2aa3mhxrim5" - -["github.com/99designs/keyring"] - sumVersion = "v1.1.6" - ["github.com/99designs/keyring".fetch] - type = "git" - url = "https://github.com/99designs/keyring" - rev = "68286ee5140ad1c5cce93fcc054e6cc90015b0ea" - sha256 = "08rcdqpxaa9n348q10fw40q4gxpjajkyrighykk71i7mxzwkcgwn" - -["github.com/Antonboom/errname"] - sumVersion = "v0.1.4" - ["github.com/Antonboom/errname".fetch] - type = "git" - url = "https://github.com/Antonboom/errname" - rev = "aefe8f8fa884b42290e734657221a8279bdb8417" - sha256 = "15jkw6i68wici9bc9yxyns9vjfijnwvz4f7i8n8nqkz81ka2wiqf" - -["github.com/Azure/azure-pipeline-go"] - sumVersion = "v0.2.2" - ["github.com/Azure/azure-pipeline-go".fetch] - type = "git" - url = "https://github.com/Azure/azure-pipeline-go" - rev = "232aee85e8e3a6223a11c0943f7df2ae0fac00e4" - sha256 = "1agn2nzmm1dkwggm4w7h4bnrav4n5jrl0vqbqy2s49vqlr8zirn6" - -["github.com/Azure/azure-storage-blob-go"] - sumVersion = "v0.7.0" - ["github.com/Azure/azure-storage-blob-go".fetch] - type = "git" - url = "https://github.com/Azure/azure-storage-blob-go" - rev = "3efca72bd11c050222deab57e25ea90df03b9692" - sha256 = "03lxg2v7gjl49cli818g9rnkz6818zvwhw8zm8z16y6cjmj8qmzv" - -["github.com/Azure/go-ansiterm"] - sumVersion = "v0.0.0-20210617225240-d185dfc1b5a1" - ["github.com/Azure/go-ansiterm".fetch] - type = "git" - url = "https://github.com/Azure/go-ansiterm" - rev = "d185dfc1b5a126116ea5a19e148e29d16b4574c9" - sha256 = "1y54b1fx80qlyvv2915xrryb9vcc8nnbsdkxszhxjg8bcg85ps5c" - -["github.com/Azure/go-autorest/autorest"] - sumVersion = "v0.9.0" - relPath = "autorest" - ["github.com/Azure/go-autorest/autorest".fetch] - type = "git" - url = "https://github.com/Azure/go-autorest" - rev = "85d9c035382e5537c3c76e84ca5b82c5f09825e9" - sha256 = "01fg6x3a6as2kh0km8kvjzjalq7xiqa17hnsdwawzlpnfpqgslvq" - -["github.com/Azure/go-autorest/autorest/adal"] - sumVersion = "v0.8.0" - relPath = "autorest/adal" - ["github.com/Azure/go-autorest/autorest/adal".fetch] - type = "git" - url = "https://github.com/Azure/go-autorest" - rev = "740293c019d8314ce3378d456b4327fa646297e6" - sha256 = "1ga12qs31v95010jdn8raw0mf2kvlxhfl8z856y7dn2x3fviv7r4" - -["github.com/Azure/go-autorest/autorest/date"] - sumVersion = "v0.2.0" - relPath = "autorest/date" - ["github.com/Azure/go-autorest/autorest/date".fetch] - type = "git" - url = "https://github.com/Azure/go-autorest" - rev = "5bd9621f41a06b08038be5c0522971a35316d5ef" - sha256 = "0fifmqljld72v0g545qqljmynhjgg8jm0ying35wzni0m7cg6n4y" - -["github.com/Azure/go-autorest/autorest/mocks"] - sumVersion = "v0.3.0" - relPath = "autorest/mocks" - ["github.com/Azure/go-autorest/autorest/mocks".fetch] - type = "git" - url = "https://github.com/Azure/go-autorest" - rev = "5bd9621f41a06b08038be5c0522971a35316d5ef" - sha256 = "0fifmqljld72v0g545qqljmynhjgg8jm0ying35wzni0m7cg6n4y" - -["github.com/Azure/go-autorest/logger"] - sumVersion = "v0.1.0" - relPath = "logger" - ["github.com/Azure/go-autorest/logger".fetch] - type = "git" - url = "https://github.com/Azure/go-autorest" - rev = "4bb4e3c99dd98a53e3d65a6f28aa05e2d435cb24" - sha256 = "1w94wxjjkiv8m44rcdm1af9h0ap2r8kpp9198cxpxj8d5xxkaxpz" - -["github.com/Azure/go-autorest/tracing"] - sumVersion = "v0.5.0" - relPath = "tracing" - ["github.com/Azure/go-autorest/tracing".fetch] - type = "git" - url = "https://github.com/Azure/go-autorest" - rev = "5e7a399d8bbf4953ab0c8e3167d7fd535fd74ce1" - sha256 = "0n482cjr2pk6ql6awcnn6llrnygjzakihbjaahgmylf3znwil7jp" - -["github.com/BurntSushi/toml"] - sumVersion = "v0.4.1" - ["github.com/BurntSushi/toml".fetch] - type = "git" - url = "https://github.com/BurntSushi/toml" - rev = "641c3cf2148ad11ca058c000eab0453dd5d67954" - sha256 = "0bz7q3v4m2rq5z47q81bvb4lw6ss2r1x3phgr43a6nls9x5kcpp1" - -["github.com/BurntSushi/xgb"] - sumVersion = "v0.0.0-20160522181843-27f122750802" - ["github.com/BurntSushi/xgb".fetch] - type = "git" - url = "https://github.com/BurntSushi/xgb" - rev = "27f122750802c950b2c869a5b63dafcf590ced95" - sha256 = "18lp2x8f5bljvlz0r7xn744f0c9rywjsb9ifiszqqdcpwhsa0kvj" - -["github.com/ChainSafe/go-schnorrkel"] - sumVersion = "v0.0.0-20200405005733-88cbf1b4c40d" - ["github.com/ChainSafe/go-schnorrkel".fetch] - type = "git" - url = "https://github.com/ChainSafe/go-schnorrkel" - rev = "88cbf1b4c40de64a5ea4863476c6c8ae5433c594" - sha256 = "09ncxdzy4scwmgj96lq83a40bb29nkws1y9x0nim86l9x5jmgi4b" - -["github.com/DataDog/datadog-go"] - sumVersion = "v3.2.0+incompatible" - ["github.com/DataDog/datadog-go".fetch] - type = "git" - url = "https://github.com/DataDog/datadog-go" - rev = "8bfdc335936a79b55b3e2c1080930bc5a3eb57f2" - sha256 = "1m8anll166rwcprjyv3bb0l450p35m0gzn6fs7bcd3ck2s527k7x" - -["github.com/DataDog/zstd"] - sumVersion = "v1.4.5" - ["github.com/DataDog/zstd".fetch] - type = "git" - url = "https://github.com/DataDog/zstd" - rev = "0e71ac6221c995a831bb393da70730c3d3a07091" - sha256 = "0xhgh7nzxq3lzba7w7v3w5mb4nb799v5xh5ylml0hk21ricm7g9s" - -["github.com/Djarvur/go-err113"] - sumVersion = "v0.0.0-20210108212216-aea10b59be24" - ["github.com/Djarvur/go-err113".fetch] - type = "git" - url = "https://github.com/Djarvur/go-err113" - rev = "aea10b59be24dbccef6788e95bb147053c8c774c" - sha256 = "0scsahyv6agld712mlczdv6hnd7ja76xfmr3a0pyf1z5zwqp4fha" - -["github.com/Knetic/govaluate"] - sumVersion = "v3.0.1-0.20171022003610-9aa49832a739+incompatible" - ["github.com/Knetic/govaluate".fetch] - type = "git" - url = "https://github.com/Knetic/govaluate" - rev = "9aa49832a739dcd78a5542ff189fb82c3e423116" - sha256 = "12klijhq4fckzbhv0cwygbazj6lvhmdqksha9y6jgfmwzv51kwv5" - -["github.com/Masterminds/goutils"] - sumVersion = "v1.1.0" - ["github.com/Masterminds/goutils".fetch] - type = "git" - url = "https://github.com/Masterminds/goutils" - rev = "41ac8693c5c10a92ea1ff5ac3a7f95646f6123b0" - sha256 = "180px47gj936qyk5bkv5mbbgiil9abdjq6kwkf7sq70vyi9mcfiq" - -["github.com/Masterminds/semver"] - sumVersion = "v1.5.0" - ["github.com/Masterminds/semver".fetch] - type = "git" - url = "https://github.com/Masterminds/semver" - rev = "805c489aa98f412e79eb308a37996bf9d8b1c91e" - sha256 = "1i169xscsxsh8lsw8bz2apnsqixld37xdnfh36i30xy5wnf0iwfx" - -["github.com/Masterminds/sprig"] - sumVersion = "v2.22.0+incompatible" - ["github.com/Masterminds/sprig".fetch] - type = "git" - url = "https://github.com/Masterminds/sprig" - rev = "e4c0945838d570720d876a6ad9b4568ed32317b4" - sha256 = "09dzwhj4zh3p6f1jhyic16n4qdnvpamz7hyk9fycpm4b1jfq63gd" - -["github.com/Microsoft/go-winio"] - sumVersion = "v0.5.0" - ["github.com/Microsoft/go-winio".fetch] - type = "git" - url = "https://github.com/Microsoft/go-winio" - rev = "58dba89befbca5b5a2c944f84642f5b0540bcfd5" - sha256 = "123p5by5craqigydfqj0hchplcv75zz81xzj5s3ixq624qjbg0z5" - -["github.com/Nvveen/Gotty"] - sumVersion = "v0.0.0-20120604004816-cd527374f1e5" - ["github.com/Nvveen/Gotty".fetch] - type = "git" - url = "https://github.com/Nvveen/Gotty" - rev = "cd527374f1e5bff4938207604a14f2e38a9cf512" - sha256 = "1ylvr1p6p036ns3g3wdz8f92f69symshkc8j54fa6gpg4hyk0k6q" - -["github.com/OneOfOne/xxhash"] - sumVersion = "v1.2.2" - ["github.com/OneOfOne/xxhash".fetch] - type = "git" - url = "https://github.com/OneOfOne/xxhash" - rev = "6def279d2ce6c81a79dd1c1be580f03bb216fb8a" - sha256 = "1mjfhrwhvxa48rycjnqpqzm521i38h1hdyz6pdwmhd7xb8j6gwi6" - -["github.com/OpenPeeDeeP/depguard"] - sumVersion = "v1.0.1" - ["github.com/OpenPeeDeeP/depguard".fetch] - type = "git" - url = "https://github.com/OpenPeeDeeP/depguard" - rev = "2c5871f4f2dd78afab3c5075f292cdadb1f1d2d8" - sha256 = "1lg3pq9mg55zpv3k431nnpx3pz13aja7vs18hw236jl2yb1ga1vw" - -["github.com/Shopify/sarama"] - sumVersion = "v1.19.0" - ["github.com/Shopify/sarama".fetch] - type = "git" - url = "https://github.com/Shopify/sarama" - rev = "ec843464b50d4c8b56403ec9d589cf41ea30e722" - sha256 = "0q1z3pvcd011yprwzws2s293v4cjvsszhai6vnfrahjcbsz79q0z" - -["github.com/Shopify/toxiproxy"] - sumVersion = "v2.1.4+incompatible" - ["github.com/Shopify/toxiproxy".fetch] - type = "git" - url = "https://github.com/Shopify/toxiproxy" - rev = "49b4ea27da29ae83ad3bfe7f7f090d18cbee1dc3" - sha256 = "07yhsvscdv1qjfc2fyyh9qsrrdwrrw04wadk5gaq4qddcway7vig" - -["github.com/StackExchange/wmi"] - sumVersion = "v1.2.1" - ["github.com/StackExchange/wmi".fetch] - type = "git" - url = "https://github.com/StackExchange/wmi" - rev = "441642c1665945335b93778e496324884ce569e7" - sha256 = "0ijhmr8sl768vkxslvw7fprav6srw4ivp32rzg3ydj8nc1wh86nl" - -["github.com/VictoriaMetrics/fastcache"] - sumVersion = "v1.5.7" - ["github.com/VictoriaMetrics/fastcache".fetch] - type = "git" - url = "https://github.com/VictoriaMetrics/fastcache" - rev = "2c7a92dc306a8b0402608403e97ae9c3cb3c2328" - sha256 = "19fsx8ha2kdjbsinlllz70fj96z6xhvn38x8qrmml0abmsf5z60k" - -["github.com/VividCortex/gohistogram"] - sumVersion = "v1.0.0" - ["github.com/VividCortex/gohistogram".fetch] - type = "git" - url = "https://github.com/VividCortex/gohistogram" - rev = "51564d9861991fb0ad0f531c99ef602d0f9866e6" - sha256 = "1ykpvrkri3mzc0z77kdva93ylh0bqg7jq3i024r3iv0i6bwx3rnf" - -["github.com/Workiva/go-datastructures"] - sumVersion = "v1.0.52" - ["github.com/Workiva/go-datastructures".fetch] - type = "git" - url = "https://github.com/Workiva/go-datastructures" - rev = "0819bcaf26091e7c33585441f8961854c2400faa" - sha256 = "0qsj9r3md4n9nxmlvg6cgysivm4ay905ivbk5vi5csnykwnamqmk" - -["github.com/Zilliqa/gozilliqa-sdk"] - sumVersion = "v1.2.1-0.20201201074141-dd0ecada1be6" - ["github.com/Zilliqa/gozilliqa-sdk".fetch] - type = "git" - url = "https://github.com/Zilliqa/gozilliqa-sdk" - rev = "dd0ecada1be6987976b9f3b557dbb4de305ecf5b" - sha256 = "06hzp118gzkbfvmzpwsqd4iky9br99lxgidgs5xnxwhzhli017w1" - -["github.com/adlio/schema"] - sumVersion = "v1.1.13" - ["github.com/adlio/schema".fetch] - type = "git" - url = "https://github.com/adlio/schema" - rev = "158666f4977057e9c8000a43995556d43f18fc8e" - sha256 = "18myq29vi5l3l1yzmpvam29m8lb6pgihs2a3gxpip9m38cz72rsf" - -["github.com/aead/siphash"] - sumVersion = "v1.0.1" - ["github.com/aead/siphash".fetch] - type = "git" - url = "https://github.com/aead/siphash" - rev = "83563a290f60225eb120d724600b9690c3fb536f" - sha256 = "01kd1z82sc4nh3nj9c25aryyp396s7jrqc2kz9d7qq1vy2hdbznc" - -["github.com/afex/hystrix-go"] - sumVersion = "v0.0.0-20180502004556-fa1af6a1f4f5" - ["github.com/afex/hystrix-go".fetch] - type = "git" - url = "https://github.com/afex/hystrix-go" - rev = "fa1af6a1f4f56e0e50d427fe901cd604d8c6fb8a" - sha256 = "0zlj0330j816flvwvis4d4vv1gigpxlghph7awbc9jb7ggf2qssn" - -["github.com/alecthomas/template"] - sumVersion = "v0.0.0-20190718012654-fb15b899a751" - ["github.com/alecthomas/template".fetch] - type = "git" - url = "https://github.com/alecthomas/template" - rev = "fb15b899a75114aa79cc930e33c46b577cc664b1" - sha256 = "1vlasv4dgycydh5wx6jdcvz40zdv90zz1h7836z7lhsi2ymvii26" - -["github.com/alecthomas/units"] - sumVersion = "v0.0.0-20190924025748-f65c72e2690d" - ["github.com/alecthomas/units".fetch] - type = "git" - url = "https://github.com/alecthomas/units" - rev = "f65c72e2690dc4b403c8bd637baf4611cd4c069b" - sha256 = "04jyqm7m3m01ppfy1f9xk4qvrwvs78q9zml6llyf2b3v5k6b2bbc" - -["github.com/alexkohler/prealloc"] - sumVersion = "v1.0.0" - ["github.com/alexkohler/prealloc".fetch] - type = "git" - url = "https://github.com/alexkohler/prealloc" - rev = "77a5b5dd9799c465ee170120588411b74218d5bb" - sha256 = "011i8yqzyjgwj17k44xvvg4bxfv8z20s0416r2d3yf4s3wqqygpq" - -["github.com/allegro/bigcache"] - sumVersion = "v1.2.1-0.20190218064605-e24eb225f156" - ["github.com/allegro/bigcache".fetch] - type = "git" - url = "https://github.com/allegro/bigcache" - rev = "e24eb225f15679bbe54f91bfa7da3b00e59b9768" - sha256 = "1ha36q4km0i1klhpxywkfc8w77ldddl7nvqg0wl0ixy17j20na7m" - -["github.com/andybalholm/brotli"] - sumVersion = "v1.0.0" - ["github.com/andybalholm/brotli".fetch] - type = "git" - url = "https://github.com/andybalholm/brotli" - rev = "b60f0d972eeb79a5fba5fb60f1e0568bc8c97e42" - sha256 = "13znsij8np519qjnbc06366dnyxkwbm48m15p60ls2sppdd83f7k" - -["github.com/antihax/optional"] - sumVersion = "v1.0.0" - ["github.com/antihax/optional".fetch] - type = "git" - url = "https://github.com/antihax/optional" - rev = "c3f0ba9c1a592b971d66b2787679af55b5c58f21" - sha256 = "1ix08vl49qxr58rc6201cl97g1yznhhkwvqldslawind99js4rj0" - -["github.com/aokoli/goutils"] - sumVersion = "v1.0.1" - ["github.com/aokoli/goutils".fetch] - type = "git" - url = "https://github.com/aokoli/goutils" - rev = "3391d3790d23d03408670993e957e8f408993c34" - sha256 = "1yj4yjfwylica31sgj69ygb04p9xxi22kgfxd0j5f58zr8vwww2n" - -["github.com/apache/thrift"] - sumVersion = "v0.13.0" - ["github.com/apache/thrift".fetch] - type = "git" - url = "https://github.com/apache/thrift" - rev = "cecee50308fc7e6f77f55b3fd906c1c6c471fa2f" - sha256 = "17ckl7p7s3ga33yrjisilsimp80ansqxl54wvpkv0j7vx2zvc13y" - -["github.com/aristanetworks/goarista"] - sumVersion = "v0.0.0-20170210015632-ea17b1a17847" - ["github.com/aristanetworks/goarista".fetch] - type = "git" - url = "https://github.com/aristanetworks/goarista" - rev = "ea17b1a17847fb6e4c0a91de0b674704693469b0" - sha256 = "02q3dhrgcbdx2826vs7gwrnw6yg9kwcyqyhrvnyf5fj5wfdqzdmp" - -["github.com/armon/circbuf"] - sumVersion = "v0.0.0-20150827004946-bbbad097214e" - ["github.com/armon/circbuf".fetch] - type = "git" - url = "https://github.com/armon/circbuf" - rev = "bbbad097214e2918d8543d5201d12bfd7bca254d" - sha256 = "1idpr0lzb2px2p3wgfq2276yl7jpaz43df6n91kf790404s4zmk3" - -["github.com/armon/consul-api"] - sumVersion = "v0.0.0-20180202201655-eb2c6b5be1b6" - ["github.com/armon/consul-api".fetch] - type = "git" - url = "https://github.com/armon/consul-api" - rev = "eb2c6b5be1b66bab83016e0b05f01b8d5496ffbd" - sha256 = "1j6fdr1sg36qy4n4xjl7brq739fpm5npq98cmvklzjc9qrx98nk9" - -["github.com/armon/go-metrics"] - sumVersion = "v0.3.9" - ["github.com/armon/go-metrics".fetch] - type = "git" - url = "https://github.com/armon/go-metrics" - rev = "f792dbc8f4b651df89dc7098fce61ca56a0a2bee" - sha256 = "0sbnzw7sdjcf2l6nsxynpv99m6sza1zyakl82by37sqhn60hj9is" - -["github.com/armon/go-radix"] - sumVersion = "v0.0.0-20180808171621-7fddfc383310" - ["github.com/armon/go-radix".fetch] - type = "git" - url = "https://github.com/armon/go-radix" - rev = "7fddfc383310abc091d79a27f116d30cf0424032" - sha256 = "0y8chspn14n9xpsfb9gxnnf819rfpriaz64v81p7873a42kkhxb4" - -["github.com/aryann/difflib"] - sumVersion = "v0.0.0-20170710044230-e206f873d14a" - ["github.com/aryann/difflib".fetch] - type = "git" - url = "https://github.com/aryann/difflib" - rev = "e206f873d14a916d3d26c40ab667bca123f365a3" - sha256 = "00zb9sx6l6b2zq614x45zlyshl20zjhwfj8r5krw4f9y0mx3n2dm" - -["github.com/ashanbrown/forbidigo"] - sumVersion = "v1.2.0" - ["github.com/ashanbrown/forbidigo".fetch] - type = "git" - url = "https://github.com/ashanbrown/forbidigo" - rev = "f30240a5170c8f6a62cf603ea541c0ff2008a6be" - sha256 = "01c3wkzsr54cjrqfmjw2wxij66znjrs9l58mv9i6qxka3dhl62xr" - -["github.com/ashanbrown/makezero"] - sumVersion = "v0.0.0-20210520155254-b6261585ddde" - ["github.com/ashanbrown/makezero".fetch] - type = "git" - url = "https://github.com/ashanbrown/makezero" - rev = "b6261585ddde940da3aa0123bac3b77cd87577f7" - sha256 = "0x9cvkrvjs0mssg740cspr8l941sv7hpmr60qcqb8ghv0wj12jgh" - -["github.com/aws/aws-lambda-go"] - sumVersion = "v1.13.3" - ["github.com/aws/aws-lambda-go".fetch] - type = "git" - url = "https://github.com/aws/aws-lambda-go" - rev = "b5b7267d297de263cc5b61f8c37543daa9c95ffd" - sha256 = "049zq6gr9xdjjsxd3yimawqlh2ibfkj2434cnjm4x93ph62hppm9" - -["github.com/aws/aws-sdk-go"] - sumVersion = "v1.36.30" - ["github.com/aws/aws-sdk-go".fetch] - type = "git" - url = "https://github.com/aws/aws-sdk-go" - rev = "c69138922cc4f28b2678532d711cd1bafcb975e7" - sha256 = "0vbfqbcwg02hvq50f0flz1q9pqxhjcpfb4a5xywcvddbf4izr4yl" - -["github.com/aws/aws-sdk-go-v2"] - sumVersion = "v0.18.0" - ["github.com/aws/aws-sdk-go-v2".fetch] - type = "git" - url = "https://github.com/aws/aws-sdk-go-v2" - rev = "b0e297c21991cec8a5d645714ea400caa790cb43" - sha256 = "00nrd8bs80w5k0ms31gqjpnl2mf0jav4hr8m54w8a7l13w5szy7s" - -["github.com/beorn7/perks"] - sumVersion = "v1.0.1" - ["github.com/beorn7/perks".fetch] - type = "git" - url = "https://github.com/beorn7/perks" - rev = "37c8de3658fcb183f997c4e13e8337516ab753e6" - sha256 = "17n4yygjxa6p499dj3yaqzfww2g7528165cl13haj97hlx94dgl7" - -["github.com/bgentry/speakeasy"] - sumVersion = "v0.1.0" - ["github.com/bgentry/speakeasy".fetch] - type = "git" - url = "https://github.com/bgentry/speakeasy" - rev = "4aabc24848ce5fd31929f7d1e4ea74d3709c14cd" - sha256 = "02dfrj0wyphd3db9zn2mixqxwiz1ivnyc5xc7gkz58l5l27nzp8s" - -["github.com/bits-and-blooms/bitset"] - sumVersion = "v1.2.0" - ["github.com/bits-and-blooms/bitset".fetch] - type = "git" - url = "https://github.com/bits-and-blooms/bitset" - rev = "59de210119f50cedaa42d175dc88b6335fcf63f6" - sha256 = "0r9f7lvz6znl7yr6njg77m8hj472yhdshf1qaybwyw7j8as6c4r3" - -["github.com/bketelsen/crypt"] - sumVersion = "v0.0.4" - ["github.com/bketelsen/crypt".fetch] - type = "git" - url = "https://github.com/bketelsen/crypt" - rev = "3f0829aaee54a3e9eabd45afbf68257a5cf754f7" - sha256 = "0fyfcvy73zskd1p1mv0cn03anxkkr5gvlawsc87znqk60hdypq3v" - -["github.com/bkielbasa/cyclop"] - sumVersion = "v1.2.0" - ["github.com/bkielbasa/cyclop".fetch] - type = "git" - url = "https://github.com/bkielbasa/cyclop" - rev = "eff218d674761de1166873cf3633e52c164be838" - sha256 = "1ww35mnyjl53h84iyv5c5wccp8ss7pvyjv5gafkibcz061kx751c" - -["github.com/bombsimon/wsl/v3"] - sumVersion = "v3.3.0" - ["github.com/bombsimon/wsl/v3".fetch] - type = "git" - url = "https://github.com/bombsimon/wsl" - rev = "6d756b6381469ac99373f3f65fc0da95e87e98a0" - sha256 = "14p7cx7a4jmya9a88gxvm9d87zi8alvqahjh79gy2k90p0p551aj" - -["github.com/btcsuite/btcd"] - sumVersion = "v0.22.0-beta" - ["github.com/btcsuite/btcd".fetch] - type = "git" - url = "https://github.com/btcsuite/btcd" - rev = "63438c6d3661a7dec09013f7731035abdf1eb4bc" - sha256 = "0rcsd3wcs0cii8qq0573h9fi1x92i8c1gzdvifnkm2r0ndl4knla" - -["github.com/btcsuite/btclog"] - sumVersion = "v0.0.0-20170628155309-84c8d2346e9f" - ["github.com/btcsuite/btclog".fetch] - type = "git" - url = "https://github.com/btcsuite/btclog" - rev = "84c8d2346e9fc8c7b947e243b9c24e6df9fd206a" - sha256 = "02dl46wcnfpg9sqvg0ipipkpnd7lrf4fnvb9zy56jqa7mfcwc7wk" - -["github.com/btcsuite/btcutil"] - sumVersion = "v1.0.3-0.20201208143702-a53e38424cce" - ["github.com/btcsuite/btcutil".fetch] - type = "git" - url = "https://github.com/btcsuite/btcutil" - rev = "a53e38424cce1c9de2062b69364efd35fd428d15" - sha256 = "1izjvgi0d5wnknfwdnqa196hn4vj1n5ga7swbhcfsgghk2zngwr4" - -["github.com/btcsuite/go-socks"] - sumVersion = "v0.0.0-20170105172521-4720035b7bfd" - ["github.com/btcsuite/go-socks".fetch] - type = "git" - url = "https://github.com/btcsuite/go-socks" - rev = "4720035b7bfd2a9bb130b1c184f8bbe41b6f0d0f" - sha256 = "18cv2icj059lq4s99p6yh91hlas5f2gi3f1p4c10sjgwrs933d7b" - -["github.com/btcsuite/goleveldb"] - sumVersion = "v1.0.0" - ["github.com/btcsuite/goleveldb".fetch] - type = "git" - url = "https://github.com/btcsuite/goleveldb" - rev = "3fd0373267b6461dbefe91cef614278064d05465" - sha256 = "0kwllw5yflpn362xbsqphbm10qcy08v3zqs15zbyp4mkjjk0bl9z" - -["github.com/btcsuite/snappy-go"] - sumVersion = "v1.0.0" - ["github.com/btcsuite/snappy-go".fetch] - type = "git" - url = "https://github.com/btcsuite/snappy-go" - rev = "b3db38edf0a9a11a115eb6b022d8c946024a9ac0" - sha256 = "0b2536a58l6advb0ag9ywz7i5cdzclvmm3x796jydv1yrbj5x2vk" - -["github.com/btcsuite/websocket"] - sumVersion = "v0.0.0-20150119174127-31079b680792" - ["github.com/btcsuite/websocket".fetch] - type = "git" - url = "https://github.com/btcsuite/websocket" - rev = "31079b6807923eb23992c421b114992b95131b55" - sha256 = "0xpkf257ml6fpfdgv7hxxc41n0d5yxxm3njm50qpzp7j71l9cjwa" - -["github.com/btcsuite/winsvc"] - sumVersion = "v1.0.0" - ["github.com/btcsuite/winsvc".fetch] - type = "git" - url = "https://github.com/btcsuite/winsvc" - rev = "f8fb11f83f7e860e3769a08e6811d1b399a43722" - sha256 = "0nsw8y86a5hzr2a3j6ch9myrpccj5bnsgaxpgajhzfk5d31xlw1z" - -["github.com/casbin/casbin/v2"] - sumVersion = "v2.1.2" - ["github.com/casbin/casbin/v2".fetch] - type = "git" - url = "https://github.com/casbin/casbin" - rev = "31a4cf3e119fdace8f02263315e83ca37a3fcc18" - sha256 = "175y7v4wlr26g23k551676zq3n3cxv8wjm3zsfhyxy3liikg7899" - -["github.com/cenkalti/backoff"] - sumVersion = "v2.2.1+incompatible" - ["github.com/cenkalti/backoff".fetch] - type = "git" - url = "https://github.com/cenkalti/backoff" - rev = "5267b6dd4d2666b980a911bf235efa276222cbe2" - sha256 = "1mf4lsl3rbb8kk42x0mrhzzy4ikqy0jf6nxpzhkr02rdgwh6rjk8" - -["github.com/census-instrumentation/opencensus-proto"] - sumVersion = "v0.2.1" - ["github.com/census-instrumentation/opencensus-proto".fetch] - type = "git" - url = "https://github.com/census-instrumentation/opencensus-proto" - rev = "d89fa54de508111353cb0b06403c00569be780d8" - sha256 = "19fcx3sc99i5dsklny6r073z5j20vlwn2xqm6di1q3b1xwchzqfj" - -["github.com/cespare/cp"] - sumVersion = "v0.1.0" - ["github.com/cespare/cp".fetch] - type = "git" - url = "https://github.com/cespare/cp" - rev = "165db2f241fd235aec29ba6d9b1ccd5f1c14637c" - sha256 = "1x76x985q9av29smybpc3g4az2qjmzqw181vp9z38wpbips31nm9" - -["github.com/cespare/xxhash"] - sumVersion = "v1.1.0" - ["github.com/cespare/xxhash".fetch] - type = "git" - url = "https://github.com/cespare/xxhash" - rev = "569f7c8abf1f58d9043ab804d364483cb1c853b6" - sha256 = "1qyzlcdcayavfazvi03izx83fvip8h36kis44zr2sg7xf6sx6l4x" - -["github.com/cespare/xxhash/v2"] - sumVersion = "v2.1.1" - ["github.com/cespare/xxhash/v2".fetch] - type = "git" - url = "https://github.com/cespare/xxhash" - rev = "d7df74196a9e781ede915320c11c378c1b2f3a1f" - sha256 = "0rl5rs8546zj1vzggv38w93wx0b5dvav7yy5hzxa8kw7iikv1cgr" - -["github.com/charithe/durationcheck"] - sumVersion = "v0.0.8" - ["github.com/charithe/durationcheck".fetch] - type = "git" - url = "https://github.com/charithe/durationcheck" - rev = "b884a93f92ceca38d1230c18b015b79aa04db74b" - sha256 = "0lg5w1p1ilb76sql6jv8x0wpaxwc17hshjnnilikfa75n7rn2sya" - -["github.com/chavacava/garif"] - sumVersion = "v0.0.0-20210405164556-e8a0a408d6af" - ["github.com/chavacava/garif".fetch] - type = "git" - url = "https://github.com/chavacava/garif" - rev = "e8a0a408d6af0f30eb79e2114600ce31d1a0e371" - sha256 = "07cbl8x9cpai8k4086qmdq9r2wy97khvi0pkwl7bh8r9m3q4msiv" - -["github.com/checkpoint-restore/go-criu/v5"] - sumVersion = "v5.0.0" - ["github.com/checkpoint-restore/go-criu/v5".fetch] - type = "git" - url = "https://github.com/checkpoint-restore/go-criu" - rev = "885cc36edb02fc5afeed0759885b473c16d249d8" - sha256 = "07dal5a9y43azkkh61jf6s81h7anbl17drkh2mal9mzcsi8wa2z8" - -["github.com/chzyer/logex"] - sumVersion = "v1.1.10" - ["github.com/chzyer/logex".fetch] - type = "git" - url = "https://github.com/chzyer/logex" - rev = "cd112f618178aaaf4ea8592c8839f5276145d9cf" - sha256 = "08pbjj3wx9acavlwyr055isa8a5hnmllgdv5k6ra60l5y1brmlq4" - -["github.com/chzyer/readline"] - sumVersion = "v0.0.0-20180603132655-2972be24d48e" - ["github.com/chzyer/readline".fetch] - type = "git" - url = "https://github.com/chzyer/readline" - rev = "2972be24d48e78746da79ba8e24e8b488c9880de" - sha256 = "104q8dazj8yf6b089jjr82fy9h1g80zyyzvp3g8b44a7d8ngjj6r" - -["github.com/chzyer/test"] - sumVersion = "v0.0.0-20180213035817-a1ea475d72b1" - ["github.com/chzyer/test".fetch] - type = "git" - url = "https://github.com/chzyer/test" - rev = "a1ea475d72b168a29f44221e0ad031a842642302" - sha256 = "0rns2aqk22i9xsgyap0pq8wi4cfaxsri4d9q6xxhhyma8jjsnj2k" - -["github.com/cilium/ebpf"] - sumVersion = "v0.6.2" - ["github.com/cilium/ebpf".fetch] - type = "git" - url = "https://github.com/cilium/ebpf" - rev = "ca492085341e0e917f48ec30704d5054c5d42ca8" - sha256 = "0x64sg0kyc8bbsp75dpv8g2jfmpdldsshf9ni49jh6rgsnnqhpf8" - -["github.com/circonus-labs/circonus-gometrics"] - sumVersion = "v2.3.1+incompatible" - ["github.com/circonus-labs/circonus-gometrics".fetch] - type = "git" - url = "https://github.com/circonus-labs/circonus-gometrics" - rev = "9eb673b3d5f6bf1c932ae7596831eefb0c0c3c2f" - sha256 = "0s2wir711h0k2h8xsypgpzshccnx8jkwjfni7n32l7wd8yng9ngs" - -["github.com/circonus-labs/circonusllhist"] - sumVersion = "v0.1.3" - ["github.com/circonus-labs/circonusllhist".fetch] - type = "git" - url = "https://github.com/circonus-labs/circonusllhist" - rev = "87d4d00b35adeefe4911ece727838749e0fab113" - sha256 = "127js92p5gx84vfj3vdmf7nn6dmqmkrxg927z0jh91fdkipmmv3i" - -["github.com/clbanning/x2j"] - sumVersion = "v0.0.0-20191024224557-825249438eec" - ["github.com/clbanning/x2j".fetch] - type = "git" - url = "https://github.com/clbanning/x2j" - rev = "825249438eec392bc87b980fb635b336e496a888" - sha256 = "1khqy1m22vnyw0x24i4bwd37zvgzj25q139mh79bddj1rw5hf7hy" - -["github.com/cloudflare/cloudflare-go"] - sumVersion = "v0.10.2-0.20190916151808-a80f83b9add9" - ["github.com/cloudflare/cloudflare-go".fetch] - type = "git" - url = "https://github.com/cloudflare/cloudflare-go" - rev = "a80f83b9add9d67ca4098ccbf42cd865ebb36ffb" - sha256 = "07q34xpgw1p091v2mmf64s2lx1gi7wxn7mnzr9182sxa7xp0bj52" - -["github.com/cncf/udpa/go"] - sumVersion = "v0.0.0-20191209042840-269d4d468f6f" - relPath = "go" - ["github.com/cncf/udpa/go".fetch] - type = "git" - url = "https://github.com/cncf/udpa" - rev = "269d4d468f6f798d803d140c3016ed6fc6b735c5" - sha256 = "0i1jiaw2k3hlwwmg4hap81vb4s1p25xp9kdfww37v0fbgjariccs" - -["github.com/cockroachdb/datadriven"] - sumVersion = "v0.0.0-20190809214429-80d97fb3cbaa" - ["github.com/cockroachdb/datadriven".fetch] - type = "git" - url = "https://github.com/cockroachdb/datadriven" - rev = "80d97fb3cbaa752564320702f409fdb2ef3da0ef" - sha256 = "0rvavka9zhri6r50n8fy98247fl5vycb1hffjrhshsicjv1frmlp" - -["github.com/codahale/hdrhistogram"] - sumVersion = "v0.0.0-20161010025455-3a0bb77429bd" - ["github.com/codahale/hdrhistogram".fetch] - type = "git" - url = "https://github.com/codahale/hdrhistogram" - rev = "3a0bb77429bd3a61596f5e8a3172445844342120" - sha256 = "1zampgfjbxy192cbwdi7g86l1idxaam96d834wncnpfdwgh5kl57" - -["github.com/coinbase/rosetta-sdk-go"] - sumVersion = "v0.6.10" - ["github.com/coinbase/rosetta-sdk-go".fetch] - type = "git" - url = "https://github.com/coinbase/rosetta-sdk-go" - rev = "9ba330f0a51ab41c1c8738a040eb2b28894b82d9" - sha256 = "0idsqyxjdvb2j7h97g5jyr7nniphwcd8pjgw969fvrg08rjm7qr7" - -["github.com/confio/ics23/go"] - sumVersion = "v0.6.6" - relPath = "go" - ["github.com/confio/ics23/go".fetch] - type = "git" - url = "https://github.com/confio/ics23" - rev = "6cf2f712b5ecccf0a138c29a77b726d57bdaad51" - sha256 = "0r1vk5lvjfri57hd5dk75dfiyzz57qaljshw6sr80aj5v8krzxsn" - -["github.com/containerd/console"] - sumVersion = "v1.0.2" - ["github.com/containerd/console".fetch] - type = "git" - url = "https://github.com/containerd/console" - rev = "2f1e3d2b6afd18e8b2077816c711205a0b4d8769" - sha256 = "0rxwgq578hphs2ldx1gg6c9fq1qm8rgqfx3vgi2sbrsmxn6m2438" - -["github.com/containerd/continuity"] - sumVersion = "v0.1.0" - ["github.com/containerd/continuity".fetch] - type = "git" - url = "https://github.com/containerd/continuity" - rev = "bce1c3f9669b6f3e7f6656ee715b0b4d75fa64a6" - sha256 = "1h756l1xc31sc4zc1d3hmh64kl9qm5vpbbw0c93hrasn51ki96yz" - -["github.com/coreos/bbolt"] - sumVersion = "v1.3.2" - ["github.com/coreos/bbolt".fetch] - type = "git" - url = "https://github.com/coreos/bbolt" - rev = "63597a96ec0ad9e6d43c3fc81e809909e0237461" - sha256 = "13d5l6p6c5wvkr6vn9hkhz9c593qifn7fgx0hg4d6jcvg1y0bnm2" - -["github.com/coreos/etcd"] - sumVersion = "v3.3.13+incompatible" - ["github.com/coreos/etcd".fetch] - type = "git" - url = "https://github.com/coreos/etcd" - rev = "98d308426819d892e149fe45f6fd542464cb1f9d" - sha256 = "1kac4qfr83f2hdz35403f1ald05wc85vvhw79vxb431n61jvyaqy" - -["github.com/coreos/go-etcd"] - sumVersion = "v2.0.0+incompatible" - ["github.com/coreos/go-etcd".fetch] - type = "git" - url = "https://github.com/coreos/go-etcd" - rev = "f02171fbd43c7b9b53ce8679b03235a1ef3c7b12" - sha256 = "1xb34hzaa1lkbq5vkzy9vcz6gqwj7hp6cdbvyack2bf28dwn33jj" - -["github.com/coreos/go-semver"] - sumVersion = "v0.3.0" - ["github.com/coreos/go-semver".fetch] - type = "git" - url = "https://github.com/coreos/go-semver" - rev = "e214231b295a8ea9479f11b70b35d5acf3556d9b" - sha256 = "0770h1mpig2j5sbiha3abnwaw8p6dg9i87r8pc7cf6m4kwml3sc9" - -["github.com/coreos/go-systemd"] - sumVersion = "v0.0.0-20190620071333-e64a0ec8b42a" - ["github.com/coreos/go-systemd".fetch] - type = "git" - url = "https://github.com/coreos/go-systemd" - rev = "e64a0ec8b42a61e2a9801dc1d0abe539dea79197" - sha256 = "0jf705z62hy1230ryw9z3686g31v5yc16izcjzcasbawgv5c000v" - -["github.com/coreos/go-systemd/v22"] - sumVersion = "v22.3.2" - ["github.com/coreos/go-systemd/v22".fetch] - type = "git" - url = "https://github.com/coreos/go-systemd" - rev = "777e73a89cef78631ccaa97f53a9bae67e166186" - sha256 = "1ndi86b8va84ha93njqgafypz4di7yxfd5r5kf1r0s3y3ghcjajq" - -["github.com/coreos/pkg"] - sumVersion = "v0.0.0-20180928190104-399ea9e2e55f" - ["github.com/coreos/pkg".fetch] - type = "git" - url = "https://github.com/coreos/pkg" - rev = "399ea9e2e55f791b6e3d920860dbecb99c3692f0" - sha256 = "0nxbn0m7lr4dg0yrwnvlkfiyg3ndv8vdpssjx7b714nivpc6ar0y" - -["github.com/cosmos/cosmos-sdk"] - sumVersion = "v0.44.2" - ["github.com/cosmos/cosmos-sdk".fetch] - type = "git" - url = "https://github.com/cosmos/cosmos-sdk" - rev = "68ab790a761e80d3674f821794cf18ccbfed45ee" - sha256 = "13rkaadk0kp3n9xyfaffqs3sh7n017nl9s2pca6i3hdf6h8s03a0" - -["github.com/cosmos/go-bip39"] - sumVersion = "v1.0.0" - ["github.com/cosmos/go-bip39".fetch] - type = "git" - url = "https://github.com/cosmos/go-bip39" - rev = "3027fe585f89a39da9b7389bd4e3482e056f6d3f" - sha256 = "0q063bsalxffq41l3f6xlr50xa2985liw6y5niiwnjysdc5rlva2" - -["github.com/cosmos/iavl"] - sumVersion = "v0.17.1" - ["github.com/cosmos/iavl".fetch] - type = "git" - url = "https://github.com/cosmos/iavl" - rev = "8e24bc87fc0702f0994ac3b2b55386235c3dd3cf" - sha256 = "1q5fbk4afkxxlgyj82xfxfmwzcpsaa4hwm431xl8b34xhpdglkdp" - -["github.com/cosmos/ibc-go/v2"] - sumVersion = "v2.0.3" - ["github.com/cosmos/ibc-go/v2".fetch] - type = "git" - url = "https://github.com/cosmos/ibc-go" - rev = "b9e1306bc0275fd204e90c5664e3c1bb5e4acbec" - sha256 = "0cfbhwpw1dkbw8jxxci1jr7cdclqs8b0z86hzshdgmspivk9prq2" - -["github.com/cosmos/ledger-cosmos-go"] - sumVersion = "v0.11.1" - ["github.com/cosmos/ledger-cosmos-go".fetch] - type = "git" - url = "https://github.com/cosmos/ledger-cosmos-go" - rev = "c03f491cbf1740e5ec7919683019c2c84d9fbc10" - sha256 = "0c584nig16mz1i5w1pp741q1ymb1ln70kvxkv3l62rkdymbbwn6a" - -["github.com/cosmos/ledger-go"] - sumVersion = "v0.9.2" - ["github.com/cosmos/ledger-go".fetch] - type = "git" - url = "https://github.com/cosmos/ledger-go" - rev = "1c99b41f1877b58e3517ef93012cc76fe5cd335b" - sha256 = "10vnj13c8diq3bxvf2m46s8ifj4fj1iwsw5hg7i1h55h1v83x0ni" - -["github.com/cpuguy83/go-md2man"] - sumVersion = "v1.0.10" - ["github.com/cpuguy83/go-md2man".fetch] - type = "git" - url = "https://github.com/cpuguy83/go-md2man" - rev = "7762f7e404f8416dfa1d9bb6a8c192aa9acb4d19" - sha256 = "1bqkf2bvy1dns9zd24k81mh2p1zxsx2nhq5cj8dz2vgkv1xkh60i" - -["github.com/cpuguy83/go-md2man/v2"] - sumVersion = "v2.0.0" - ["github.com/cpuguy83/go-md2man/v2".fetch] - type = "git" - url = "https://github.com/cpuguy83/go-md2man" - rev = "f79a8a8ca69da163eee19ab442bedad7a35bba5a" - sha256 = "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv" - -["github.com/creack/pty"] - sumVersion = "v1.1.9" - ["github.com/creack/pty".fetch] - type = "git" - url = "https://github.com/creack/pty" - rev = "3a6a957789163cacdfe0e291617a1c8e80612c11" - sha256 = "1v52599qq76dwq742mffakzj6mxqqccv2szn3hjicjld56nmd2d3" - -["github.com/cyphar/filepath-securejoin"] - sumVersion = "v0.2.2" - ["github.com/cyphar/filepath-securejoin".fetch] - type = "git" - url = "https://github.com/cyphar/filepath-securejoin" - rev = "a261ee33d7a517f054effbf451841abaafe3e0fd" - sha256 = "0id32zjb92wm569m29nfrzz5mw9z1glr3klayr6j134pp4h1sgq4" - -["github.com/daixiang0/gci"] - sumVersion = "v0.2.9" - ["github.com/daixiang0/gci".fetch] - type = "git" - url = "https://github.com/daixiang0/gci" - rev = "59beec6e2fe1fd299a96d9182071dbb529b936fc" - sha256 = "0pz4pi57m2lb2whh2iwxbgcxjd8d7mi6zw648l19hcw3g8wckkrp" - -["github.com/danieljoos/wincred"] - sumVersion = "v1.0.2" - ["github.com/danieljoos/wincred".fetch] - type = "git" - url = "https://github.com/danieljoos/wincred" - rev = "b892d337201d1400370ebf4fa919941c9ea222ee" - sha256 = "1ym8mygjrf3rw1qka9irw76b2yisr2l5pq2w581s40yldnbfq4lc" - -["github.com/davecgh/go-spew"] - sumVersion = "v1.1.1" - ["github.com/davecgh/go-spew".fetch] - type = "git" - url = "https://github.com/davecgh/go-spew" - rev = "8991bc29aa16c548c550c7ff78260e27b9ab7c73" - sha256 = "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y" - -["github.com/deckarep/golang-set"] - sumVersion = "v0.0.0-20180603214616-504e848d77ea" - ["github.com/deckarep/golang-set".fetch] - type = "git" - url = "https://github.com/deckarep/golang-set" - rev = "504e848d77ea4752b3057b8fb46da0e7f746ccf3" - sha256 = "0n0dgz82vvwpxh2fp3d9ciawzrwv0w3hsnkk4y7z64pxp27r4k7n" - -["github.com/decred/dcrd/lru"] - sumVersion = "v1.0.0" - relPath = "lru" - ["github.com/decred/dcrd/lru".fetch] - type = "git" - url = "https://github.com/decred/dcrd" - rev = "5c3e0d6454001c8d14fcf06be94381d93991aaea" - sha256 = "0m2mxrkbnr4dfan9ljxq9dd5hhqmpx5n9pd4hnwn5mlj4zgv018a" - -["github.com/denis-tingajkin/go-header"] - sumVersion = "v0.4.2" - ["github.com/denis-tingajkin/go-header".fetch] - type = "git" - url = "https://github.com/denis-tingajkin/go-header" - rev = "5c90e44d1198ad5015300e930829fe83a0899652" - sha256 = "1y6yzfy9xmga1k7y042hw48h1ygsjw1jd8m7fjs3r7ij1kcihr3k" - -["github.com/desertbit/timer"] - sumVersion = "v0.0.0-20180107155436-c41aec40b27f" - ["github.com/desertbit/timer".fetch] - type = "git" - url = "https://github.com/desertbit/timer" - rev = "c41aec40b27f0eeb2b94300fffcd624c69b02990" - sha256 = "1jsy04ga79xbdfn0xqzs7q8gyh2sz9jpfqdsb210m6188yscxck9" - -["github.com/dgraph-io/badger/v2"] - sumVersion = "v2.2007.2" - ["github.com/dgraph-io/badger/v2".fetch] - type = "git" - url = "https://github.com/dgraph-io/badger" - rev = "d5a25b83fbf4f3f61ff03a9202e36f5b75544426" - sha256 = "0cck8ap61bi56dv070cirkkl6fjavz05kwyxjv08lbfykhlpz3da" - -["github.com/dgraph-io/ristretto"] - sumVersion = "v0.0.3" - ["github.com/dgraph-io/ristretto".fetch] - type = "git" - url = "https://github.com/dgraph-io/ristretto" - rev = "bcb54d096f2303ce80960e125b5991ac4d6325c3" - sha256 = "1v29j6b0r87pf5dwsxi3rxa8yavkl3h79i63rbddfd42p2jyssyg" - -["github.com/dgrijalva/jwt-go"] - sumVersion = "v3.2.0+incompatible" - ["github.com/dgrijalva/jwt-go".fetch] - type = "git" - url = "https://github.com/dgrijalva/jwt-go" - rev = "06ea1031745cb8b3dab3f6a236daf2b0aa468b7e" - sha256 = "08m27vlms74pfy5z79w67f9lk9zkx6a9jd68k3c4msxy75ry36mp" - -["github.com/dgryski/go-farm"] - sumVersion = "v0.0.0-20200201041132-a6ae2369ad13" - ["github.com/dgryski/go-farm".fetch] - type = "git" - url = "https://github.com/dgryski/go-farm" - rev = "a6ae2369ad13dc757768086f0cb902728c7e03e5" - sha256 = "1qbz4a4fv3853ix974x02q1129kc4xxf0c92ib5sdpsq04zjbqv8" - -["github.com/dgryski/go-sip13"] - sumVersion = "v0.0.0-20181026042036-e10d5fee7954" - ["github.com/dgryski/go-sip13".fetch] - type = "git" - url = "https://github.com/dgryski/go-sip13" - rev = "e10d5fee79544bd84105c9329adcc7b745fd588c" - sha256 = "15fyibfas209ljz3f7g07kdmfbl3hhyd9n5n7aq5n5p9m5mn41d6" - -["github.com/dlclark/regexp2"] - sumVersion = "v1.2.0" - ["github.com/dlclark/regexp2".fetch] - type = "git" - url = "https://github.com/dlclark/regexp2" - rev = "92c702aa5812963ef9193a9624191932d44073d7" - sha256 = "011l1prsywvhhi0yc7qmpsca1cwavmawyyld5kjzi0ff9ghvj4ng" - -["github.com/docker/docker"] - sumVersion = "v1.4.2-0.20180625184442-8e610b2b55bf" - ["github.com/docker/docker".fetch] - type = "git" - url = "https://github.com/docker/docker" - rev = "8e610b2b55bfd1bfa9436ab110d311f5e8a74dcb" - sha256 = "00d27aj6c2vi9q0djy9pqk3h8fqp066vffqckil43qq1c5b83c1j" - -["github.com/docker/go-connections"] - sumVersion = "v0.4.0" - ["github.com/docker/go-connections".fetch] - type = "git" - url = "https://github.com/docker/go-connections" - rev = "7395e3f8aa162843a74ed6d48e79627d9792ac55" - sha256 = "0mv6f6b5nljc17dmwmc28hc0y11pqglz7x0d2mjrwdmfxf64hwqq" - -["github.com/docker/go-units"] - sumVersion = "v0.4.0" - ["github.com/docker/go-units".fetch] - type = "git" - url = "https://github.com/docker/go-units" - rev = "519db1ee28dcc9fd2474ae59fca29a810482bfb1" - sha256 = "0k8gja8ql4pqg5rzmqvka42vjfs6rzablak87whcnqba6qxpimvz" - -["github.com/dop251/goja"] - sumVersion = "v0.0.0-20200721192441-a695b0cdd498" - ["github.com/dop251/goja".fetch] - type = "git" - url = "https://github.com/dop251/goja" - rev = "a695b0cdd4987b22f979a6f4d4ea30689058441a" - sha256 = "1s9358a30gmmbizvavd977n1zyla46bpxb2ymmr6qmmixw8ry4zv" - -["github.com/dustin/go-humanize"] - sumVersion = "v1.0.0" - ["github.com/dustin/go-humanize".fetch] - type = "git" - url = "https://github.com/dustin/go-humanize" - rev = "9f541cc9db5d55bce703bd99987c9d5cb8eea45e" - sha256 = "1kqf1kavdyvjk7f8kx62pnm7fbypn9z1vbf8v2qdh3y7z7a0cbl3" - -["github.com/dvsekhvalnov/jose2go"] - sumVersion = "v0.0.0-20200901110807-248326c1351b" - ["github.com/dvsekhvalnov/jose2go".fetch] - type = "git" - url = "https://github.com/dvsekhvalnov/jose2go" - rev = "248326c1351b716b2820b01a49d53837bfd9ac59" - sha256 = "06zj4n96pa5lnx8pxjhn3vis01fjklhsdqbcbqdv9m4kc7qip27s" - -["github.com/dvyukov/go-fuzz"] - sumVersion = "v0.0.0-20200318091601-be3528f3a813" - ["github.com/dvyukov/go-fuzz".fetch] - type = "git" - url = "https://github.com/dvyukov/go-fuzz" - rev = "be3528f3a81351d8a438aed216130e1e7da39f7c" - sha256 = "1sxl62r8c13p4sm60c77mzcn6dlxbbk6c2nmic6j8z55dx4nlg1a" - -["github.com/eapache/go-resiliency"] - sumVersion = "v1.1.0" - ["github.com/eapache/go-resiliency".fetch] - type = "git" - url = "https://github.com/eapache/go-resiliency" - rev = "ea41b0fad31007accc7f806884dcdf3da98b79ce" - sha256 = "1zmgw3c4w5r6m2r340n4jc5l5ll3m3nbszqrmrgbqc2xixxyk2gx" - -["github.com/eapache/go-xerial-snappy"] - sumVersion = "v0.0.0-20180814174437-776d5712da21" - ["github.com/eapache/go-xerial-snappy".fetch] - type = "git" - url = "https://github.com/eapache/go-xerial-snappy" - rev = "776d5712da21bc4762676d614db1d8a64f4238b0" - sha256 = "0ncc41dv7xwb1znyzmzh7cvs6j5fzz0f1n8h1v3grl9ma6s1si9d" - -["github.com/eapache/queue"] - sumVersion = "v1.1.0" - ["github.com/eapache/queue".fetch] - type = "git" - url = "https://github.com/eapache/queue" - rev = "44cc805cf13205b55f69e14bcb69867d1ae92f98" - sha256 = "07dp54n94gn3gsvdcki56yqh7py7wqqigxbamhxwgbr05n61fqyg" - -["github.com/edsrzf/mmap-go"] - sumVersion = "v1.0.0" - ["github.com/edsrzf/mmap-go".fetch] - type = "git" - url = "https://github.com/edsrzf/mmap-go" - rev = "188cc3b666ba704534fa4f96e9e61f21f1e1ba7c" - sha256 = "0ajmkk5cj6xmbngx3nhar7672i2vrkwpnbv1f26i5p4f5aydhl4k" - -["github.com/enigmampc/btcutil"] - sumVersion = "v1.0.3-0.20200723161021-e2fb6adb2a25" - ["github.com/enigmampc/btcutil".fetch] - type = "git" - url = "https://github.com/enigmampc/btcutil" - rev = "e2fb6adb2a25f868283c4f243c873ad6b4894974" - sha256 = "0r2gf20acxnrcrch57hvgg8qp8ic96w6bx0j080cfya04xib3dxv" - -["github.com/envoyproxy/go-control-plane"] - sumVersion = "v0.9.4" - ["github.com/envoyproxy/go-control-plane".fetch] - type = "git" - url = "https://github.com/envoyproxy/go-control-plane" - rev = "ba8e577f987f6676343cac84525b92ed1b2d86fe" - sha256 = "0m0crzx70lp7vz13v20wxb1fcfdnzp7h3mkh3bn6a8mbfz6w5asj" - -["github.com/envoyproxy/protoc-gen-validate"] - sumVersion = "v0.1.0" - ["github.com/envoyproxy/protoc-gen-validate".fetch] - type = "git" - url = "https://github.com/envoyproxy/protoc-gen-validate" - rev = "9eff07ddfcb4001aa1aab280648153f46e1a8ddc" - sha256 = "0kxd3wwh3xwqk0r684hsy281xq4y71cd11d4q2hspcjbnlbwh7cy" - -["github.com/esimonov/ifshort"] - sumVersion = "v1.0.2" - ["github.com/esimonov/ifshort".fetch] - type = "git" - url = "https://github.com/esimonov/ifshort" - rev = "c1bcdfa3aa300993b7bb252edfa1c126fe303d09" - sha256 = "1kqq3js0rhhdircwamyr0b6l7b01flgvj4ny5x4g51vz8m1z36jj" - -["github.com/ethereum/go-ethereum"] - sumVersion = "v1.9.25" - ["github.com/ethereum/go-ethereum".fetch] - type = "git" - url = "https://github.com/ethereum/go-ethereum" - rev = "e7872729012a4871397307b12cc3f4772ffcbec6" - sha256 = "1gilb29gcjw8x3s9krbq9cf6kzvq5cvkad4wc20g91a3i2hd7daf" - -["github.com/ettle/strcase"] - sumVersion = "v0.1.1" - ["github.com/ettle/strcase".fetch] - type = "git" - url = "https://github.com/ettle/strcase" - rev = "693d0d408811c431fde27311cd013dcf5061676b" - sha256 = "0g1d52dfh5nqs9ikjbd9vgrs554s3nsb6df9dllggikya46a1p8l" - -["github.com/facebookgo/ensure"] - sumVersion = "v0.0.0-20200202191622-63f1cf65ac4c" - ["github.com/facebookgo/ensure".fetch] - type = "git" - url = "https://github.com/facebookgo/ensure" - rev = "63f1cf65ac4cf1f4bd7e93292149a456001b0e0b" - sha256 = "05vi49g2967i5awcb1z69i2n5b5hwn06682kw90x81hbxlr0px36" - -["github.com/facebookgo/stack"] - sumVersion = "v0.0.0-20160209184415-751773369052" - ["github.com/facebookgo/stack".fetch] - type = "git" - url = "https://github.com/facebookgo/stack" - rev = "751773369052141c013c6e827a71e8f35c07879c" - sha256 = "07yr05mz7h007ldpij90zjflwgixp148sbyrdlh1fj5bikr4p8m3" - -["github.com/facebookgo/subset"] - sumVersion = "v0.0.0-20200203212716-c811ad88dec4" - ["github.com/facebookgo/subset".fetch] - type = "git" - url = "https://github.com/facebookgo/subset" - rev = "c811ad88dec4edb3d7af0a88b34e6865d7460ba2" - sha256 = "1sjczgmq26mgqvh7267saypnn4sfdjx467wsm1pgdhyss77mc650" - -["github.com/fatih/color"] - sumVersion = "v1.12.0" - ["github.com/fatih/color".fetch] - type = "git" - url = "https://github.com/fatih/color" - rev = "cf452350f542986d689fb53db88dbb0212f141db" - sha256 = "0r6r4vh9aiz8ny2whvpq288x8shkyvpj38g5pqw5840ryq38chig" - -["github.com/fatih/structtag"] - sumVersion = "v1.2.0" - ["github.com/fatih/structtag".fetch] - type = "git" - url = "https://github.com/fatih/structtag" - rev = "72c94723f1e6825195e0d8e9857fca28cd23d835" - sha256 = "09a9pycvkf384v5f47ff4q33bjbzpx6kbkn23za1gcwc96466sk3" - -["github.com/felixge/httpsnoop"] - sumVersion = "v1.0.1" - ["github.com/felixge/httpsnoop".fetch] - type = "git" - url = "https://github.com/felixge/httpsnoop" - rev = "33ec42cfe005395fb4cc4b296781f65d7ffef2c3" - sha256 = "0ncd8lar5zxiwjhsp315s4hsl4bhnm271h49jhyxc66r5yffgmac" - -["github.com/fjl/memsize"] - sumVersion = "v0.0.0-20180418122429-ca190fb6ffbc" - ["github.com/fjl/memsize".fetch] - type = "git" - url = "https://github.com/fjl/memsize" - rev = "ca190fb6ffbc076ff49197b7168a760f30182d2e" - sha256 = "02vz4mfsajpsjk9nwrb6djs5zd9f70iqxf6z3x7h7kq5lqc2wfjc" - -["github.com/fortytw2/leaktest"] - sumVersion = "v1.3.0" - ["github.com/fortytw2/leaktest".fetch] - type = "git" - url = "https://github.com/fortytw2/leaktest" - rev = "9a23578d06a26ec1b47bfc8965bf5e7011df8bd6" - sha256 = "0487zghyxqzk6zdbhd2j074pcc2l15l4sfg5clrjqwfbql7519wx" - -["github.com/franela/goblin"] - sumVersion = "v0.0.0-20200105215937-c9ffbefa60db" - ["github.com/franela/goblin".fetch] - type = "git" - url = "https://github.com/franela/goblin" - rev = "c9ffbefa60dbcc40777294734ec3664f35a8c838" - sha256 = "0qdhg6i4bcf6inmzq2dbdv0r0c7clw1vd3n2zs4896ig0aws6vff" - -["github.com/franela/goreq"] - sumVersion = "v0.0.0-20171204163338-bcd34c9993f8" - ["github.com/franela/goreq".fetch] - type = "git" - url = "https://github.com/franela/goreq" - rev = "bcd34c9993f899273c74baaa95e15386cd97b6e7" - sha256 = "055a20nc5f1blk2swiwpwqpxd3z495ms1qr6a7cbbss1w3a7a7sb" - -["github.com/frankban/quicktest"] - sumVersion = "v1.11.3" - ["github.com/frankban/quicktest".fetch] - type = "git" - url = "https://github.com/frankban/quicktest" - rev = "e7d1f0b53af1e9c9cf66924bc310190b1db8c339" - sha256 = "0d5njmwkfq2809vlimnlvy8ir6kln0c4cgdwr680fwsclpbr43qs" - -["github.com/fsnotify/fsnotify"] - sumVersion = "v1.5.1" - ["github.com/fsnotify/fsnotify".fetch] - type = "git" - url = "https://github.com/fsnotify/fsnotify" - rev = "466b39d216616549a37ee93c7c47775f6a010790" - sha256 = "0xpdprvab4zgn5igymc5468hk5s429cqyxml9xjsk0cn53rikj87" - -["github.com/fullstorydev/grpcurl"] - sumVersion = "v1.6.0" - ["github.com/fullstorydev/grpcurl".fetch] - type = "git" - url = "https://github.com/fullstorydev/grpcurl" - rev = "2108c8f0b319c4182d718308ad3d6eb669a20a35" - sha256 = "03x9yj8c39vdwjk31nghk8j3h80bi8a1ns5fn2aglygkwnhsz33l" - -["github.com/fzipp/gocyclo"] - sumVersion = "v0.3.1" - ["github.com/fzipp/gocyclo".fetch] - type = "git" - url = "https://github.com/fzipp/gocyclo" - rev = "39f24b305784dc1d91c39229afd889a161000c9b" - sha256 = "1rimdrhmy6nkzh7ydpx6139hh9ml6rdqg5gvkpy2l1x9mhanvan0" - -["github.com/gballet/go-libpcsclite"] - sumVersion = "v0.0.0-20190607065134-2772fd86a8ff" - ["github.com/gballet/go-libpcsclite".fetch] - type = "git" - url = "https://github.com/gballet/go-libpcsclite" - rev = "2772fd86a8ff4306d2749f610a386bfee9e0d727" - sha256 = "1j7389jcjdsb73c30cial688m3r2wypspn8zhy5mvm3c9xqnigin" - -["github.com/ghodss/yaml"] - sumVersion = "v1.0.0" - ["github.com/ghodss/yaml".fetch] - type = "git" - url = "https://github.com/ghodss/yaml" - rev = "0ca9ea5df5451ffdf184b4428c902747c2c11cd7" - sha256 = "0skwmimpy7hlh7pva2slpcplnm912rp3igs98xnqmn859kwa5v8g" - -["github.com/gin-contrib/sse"] - sumVersion = "v0.1.0" - ["github.com/gin-contrib/sse".fetch] - type = "git" - url = "https://github.com/gin-contrib/sse" - rev = "54d8467d122d380a14768b6b4e5cd7ca4755938f" - sha256 = "072nq91a65n5xvwslqjyvydfd0mfpnvb3vwjyfvmzm1ym96wr1nd" - -["github.com/gin-gonic/gin"] - sumVersion = "v1.6.3" - ["github.com/gin-gonic/gin".fetch] - type = "git" - url = "https://github.com/gin-gonic/gin" - rev = "6a8b8b6651a228590bbc42145483ff864f4f6e89" - sha256 = "18k0ydx88xh100xp1ff0zpjk2n233rv7qxijbsrrsgqrq9z83w3l" - -["github.com/go-critic/go-critic"] - sumVersion = "v0.5.6" - ["github.com/go-critic/go-critic".fetch] - type = "git" - url = "https://github.com/go-critic/go-critic" - rev = "3d8144d7f9920a1f186297e8c53222d2ad71ee8a" - sha256 = "1qqinwy88rr2i4rypvpclcp73dg2602fcx2qh9cr83wnsf7d6a3r" - -["github.com/go-gl/glfw"] - sumVersion = "v0.0.0-20190409004039-e6da0acd62b1" - ["github.com/go-gl/glfw".fetch] - type = "git" - url = "https://github.com/go-gl/glfw" - rev = "e6da0acd62b1b57ee2799d4d0a76a7d4514dc5bc" - sha256 = "0prvx5r7q8yrhqvnwibv4xz3dayjbq36yajzqvh0z4lqsh4hyhch" - -["github.com/go-gl/glfw/v3.3/glfw"] - sumVersion = "v0.0.0-20200222043503-6f7a984d4dc4" - relPath = "v3.3/glfw" - ["github.com/go-gl/glfw/v3.3/glfw".fetch] - type = "git" - url = "https://github.com/go-gl/glfw" - rev = "6f7a984d4dc470c3f197229ad1991ae9e211bba2" - sha256 = "1nyv7h08qf4dp8w9pmcnrc6vv9bkwj8fil6pz0mkbss5hf4i8xcq" - -["github.com/go-kit/kit"] - sumVersion = "v0.10.0" - ["github.com/go-kit/kit".fetch] - type = "git" - url = "https://github.com/go-kit/kit" - rev = "cc938d52e0cdf4c811ab203f428fcd06f9d9a148" - sha256 = "1cqlrjf90b5pg6sj4nh0qz5wplnsjmcdgrvs6wfdjy5p71f17msa" - -["github.com/go-kit/log"] - sumVersion = "v0.1.0" - ["github.com/go-kit/log".fetch] - type = "git" - url = "https://github.com/go-kit/log" - rev = "63376a29a92260f7b256eedf2fae39e28161114d" - sha256 = "1giv2pdswp02zk82rqfda2qpazqs4z5agnnfxxasghlsiry170r1" - -["github.com/go-logfmt/logfmt"] - sumVersion = "v0.5.0" - ["github.com/go-logfmt/logfmt".fetch] - type = "git" - url = "https://github.com/go-logfmt/logfmt" - rev = "3be5f6aae7db841d31dc5e1b3bb7b4cff19200b3" - sha256 = "0mcvgimnf6a15hhpmmv42kzbsn618f0zi2j3np49xkq1113d7yyj" - -["github.com/go-ole/go-ole"] - sumVersion = "v1.2.5" - ["github.com/go-ole/go-ole".fetch] - type = "git" - url = "https://github.com/go-ole/go-ole" - rev = "9f1c1d07a2d46919f666f69f6a324bacba498a6a" - sha256 = "1561h2srxgp4kx7l4q2dsvsh47h8k8ps3xnwjzg76yjvgfsqrlnw" - -["github.com/go-playground/assert/v2"] - sumVersion = "v2.0.1" - ["github.com/go-playground/assert/v2".fetch] - type = "git" - url = "https://github.com/go-playground/assert" - rev = "8eb943fbae8448cf47383208d8d0c396e26011a9" - sha256 = "1cl9c4s405zddzrj36hhs0a18g02zscdl46fyipp6k91mhvai8wz" - -["github.com/go-playground/locales"] - sumVersion = "v0.13.0" - ["github.com/go-playground/locales".fetch] - type = "git" - url = "https://github.com/go-playground/locales" - rev = "9f105231d3a5f6877a2bf8321dfa15ea6f844b1b" - sha256 = "0qydcpkvss3mf8mk3xzg6a34n8i69aydrigcl2apifrkx72jw7pf" - -["github.com/go-playground/universal-translator"] - sumVersion = "v0.17.0" - ["github.com/go-playground/universal-translator".fetch] - type = "git" - url = "https://github.com/go-playground/universal-translator" - rev = "f87b1403479a348651dbf5f07f5cc6e5fcf07008" - sha256 = "1zdiaisb32iv4x93cpbqrgx8ll7sxh4hcd2iibpswy4bwvjbjlz6" - -["github.com/go-playground/validator/v10"] - sumVersion = "v10.2.0" - ["github.com/go-playground/validator/v10".fetch] - type = "git" - url = "https://github.com/go-playground/validator" - rev = "c68441b7f4748b48ad9a0c9a79d346019730e207" - sha256 = "0pfbn06n7ll7slp36vvv94gf8ylm6mynp332r5q7j78nca1bjb5b" - -["github.com/go-redis/redis"] - sumVersion = "v6.15.8+incompatible" - ["github.com/go-redis/redis".fetch] - type = "git" - url = "https://github.com/go-redis/redis" - rev = "2aca83490d09584301390a787777fbe5a0fc4a96" - sha256 = "1da7rs6jrr394d6kicwhncznaiwkm3dlipmbnf6a33qlv8ywnf5z" - -["github.com/go-sourcemap/sourcemap"] - sumVersion = "v2.1.2+incompatible" - ["github.com/go-sourcemap/sourcemap".fetch] - type = "git" - url = "https://github.com/go-sourcemap/sourcemap" - rev = "b019cc30c1eaa584753491b0d8f8c1534bf1eb44" - sha256 = "03k44fdrnknba05f7cd58lq4rzk7jdpiqksmc0wxrdzwschrbgw8" - -["github.com/go-sql-driver/mysql"] - sumVersion = "v1.5.0" - ["github.com/go-sql-driver/mysql".fetch] - type = "git" - url = "https://github.com/go-sql-driver/mysql" - rev = "17ef3dd9d98b69acec3e85878995ada9533a9370" - sha256 = "11x0m9yf3kdnf6981182r824psgxwfaqhn3x3in4yiidp0w0hk3v" - -["github.com/go-stack/stack"] - sumVersion = "v1.8.0" - ["github.com/go-stack/stack".fetch] - type = "git" - url = "https://github.com/go-stack/stack" - rev = "2fee6af1a9795aafbe0253a0cfbdf668e1fb8a9a" - sha256 = "0wk25751ryyvxclyp8jdk5c3ar0cmfr8lrjb66qbg4808x66b96v" - -["github.com/go-task/slim-sprig"] - sumVersion = "v0.0.0-20210107165309-348f09dbbbc0" - ["github.com/go-task/slim-sprig".fetch] - type = "git" - url = "https://github.com/go-task/slim-sprig" - rev = "348f09dbbbc0ff8b922a311da7a90cd014b69aa3" - sha256 = "16i1w4sm1h8wd132gdaq1z0asj9nc36zs8b3q9jy5kcbjzidl34f" - -["github.com/go-toolsmith/astcast"] - sumVersion = "v1.0.0" - ["github.com/go-toolsmith/astcast".fetch] - type = "git" - url = "https://github.com/go-toolsmith/astcast" - rev = "a6cb19f07b66b859a53f3f2be6e4c3bba892db7e" - sha256 = "1kwxrg0kvmp3900wx2vss8d07cfs31x3rw1gdyw230gmplp7aisx" - -["github.com/go-toolsmith/astcopy"] - sumVersion = "v1.0.0" - ["github.com/go-toolsmith/astcopy".fetch] - type = "git" - url = "https://github.com/go-toolsmith/astcopy" - rev = "245af3020944a15e09072c8ad3883c1451d1fdef" - sha256 = "0r9bx913gn5r8xnqyq0wvgxa9ffznpw6rc5mvbv99cq1slndp1y1" - -["github.com/go-toolsmith/astequal"] - sumVersion = "v1.0.0" - ["github.com/go-toolsmith/astequal".fetch] - type = "git" - url = "https://github.com/go-toolsmith/astequal" - rev = "dcb477bfacd6e00a13c6d63bfc73db28dd343160" - sha256 = "03rpz2pvg70yadlyj0745mbzg3hjzkfhxc9rzs6d07w489bp48q6" - -["github.com/go-toolsmith/astfmt"] - sumVersion = "v1.0.0" - ["github.com/go-toolsmith/astfmt".fetch] - type = "git" - url = "https://github.com/go-toolsmith/astfmt" - rev = "0d74c731079884bda287cf8df9ce7b92e688af8c" - sha256 = "0n4vbmy3fya8vi0s1qc7nbq928ff293idzps09pjfvbjn0184j4k" - -["github.com/go-toolsmith/astinfo"] - sumVersion = "v0.0.0-20180906194353-9809ff7efb21" - ["github.com/go-toolsmith/astinfo".fetch] - type = "git" - url = "https://github.com/go-toolsmith/astinfo" - rev = "9809ff7efb211e704a852623a50258071168e9bd" - sha256 = "14vkdn9q84ymfziabpk06729d7q9dc1b6ql3b9313bqwbyjf2pby" - -["github.com/go-toolsmith/astp"] - sumVersion = "v1.0.0" - ["github.com/go-toolsmith/astp".fetch] - type = "git" - url = "https://github.com/go-toolsmith/astp" - rev = "6373270dee65bfb0479f2acd16d4c8e9d5db13f8" - sha256 = "19ycnp2g0vr59wrg01dc29333gizdpdhb01dq5wp6rhihqcrh1ga" - -["github.com/go-toolsmith/pkgload"] - sumVersion = "v1.0.0" - ["github.com/go-toolsmith/pkgload".fetch] - type = "git" - url = "https://github.com/go-toolsmith/pkgload" - rev = "1759eb21c731bfa0dc81091556b35584f07d49e8" - sha256 = "0hgwaqn8mf1pqn1plchjqripa8xn5g7z61qpby59f74y9rj95dnh" - -["github.com/go-toolsmith/strparse"] - sumVersion = "v1.0.0" - ["github.com/go-toolsmith/strparse".fetch] - type = "git" - url = "https://github.com/go-toolsmith/strparse" - rev = "830b6daa1241714c12a9b9a4a56849fe2f93aedc" - sha256 = "1lxglj4gcw62gp83qm9n1qj2yyam4wb7phx6y8zfkh6wv4chwzw9" - -["github.com/go-toolsmith/typep"] - sumVersion = "v1.0.2" - ["github.com/go-toolsmith/typep".fetch] - type = "git" - url = "https://github.com/go-toolsmith/typep" - rev = "14dc03ca05da56f81516643e3ab22095f519aec4" - sha256 = "0gmrvxw9jlwj55kwv22qwbr6f4l54d1766hsmx1n8y03qz5wk7p1" - -["github.com/go-xmlfmt/xmlfmt"] - sumVersion = "v0.0.0-20191208150333-d5b6f63a941b" - ["github.com/go-xmlfmt/xmlfmt".fetch] - type = "git" - url = "https://github.com/go-xmlfmt/xmlfmt" - rev = "d5b6f63a941b0964ef2778c7ac69dfd6b3ae231d" - sha256 = "1gh2lqcfqx53ksa9rzzpbr142zcxg9zycf9ifjnlbqiddjcpy63a" - -["github.com/gobwas/glob"] - sumVersion = "v0.2.3" - ["github.com/gobwas/glob".fetch] - type = "git" - url = "https://github.com/gobwas/glob" - rev = "5ccd90ef52e1e632236f7326478d4faa74f99438" - sha256 = "0jxk1x806zn5x86342s72dq2qy64ksb3zrvrlgir2avjhwb18n6z" - -["github.com/gobwas/httphead"] - sumVersion = "v0.0.0-20180130184737-2c6c146eadee" - ["github.com/gobwas/httphead".fetch] - type = "git" - url = "https://github.com/gobwas/httphead" - rev = "2c6c146eadee0b69f856f87e3e9f1d0cd6aad2f5" - sha256 = "0j7nlrf79cafl8ap69ri2c7v3psr2y133cr2wn735z7yn3dz3kss" - -["github.com/gobwas/pool"] - sumVersion = "v0.2.0" - ["github.com/gobwas/pool".fetch] - type = "git" - url = "https://github.com/gobwas/pool" - rev = "fa3125c39d7eca32e1387bb69b1b38dcb31b1e0b" - sha256 = "1avpa8c75j1y4hs7awazrjjy7w0pjfw80l424ddn5zyizvh7s67i" - -["github.com/gobwas/ws"] - sumVersion = "v1.0.2" - ["github.com/gobwas/ws".fetch] - type = "git" - url = "https://github.com/gobwas/ws" - rev = "05baaea2bbcfe8963301c62d9931c882d59595cd" - sha256 = "070mfcjbfb40bglc9aw9zjvd4jb1hp3l1s12ww6mjlwbjcg0mm9s" - -["github.com/godbus/dbus"] - sumVersion = "v0.0.0-20190726142602-4481cbc300e2" - ["github.com/godbus/dbus".fetch] - type = "git" - url = "https://github.com/godbus/dbus" - rev = "4481cbc300e2df0c0b3cecc18b6c16c6c0bb885d" - sha256 = "0h0cl1r136g0kxbw3i7ggb9mhavpi1yr7d7312iwhkxm93dxkphg" - -["github.com/godbus/dbus/v5"] - sumVersion = "v5.0.4" - ["github.com/godbus/dbus/v5".fetch] - type = "git" - url = "https://github.com/godbus/dbus" - rev = "c88335c0b1d28a30e7fc76d526a06154b85e5d97" - sha256 = "0znax8kskb5gmp5fj75w56bc9p7b22wrdswzlh4d04sprlc471yi" - -["github.com/gofrs/flock"] - sumVersion = "v0.8.1" - ["github.com/gofrs/flock".fetch] - type = "git" - url = "https://github.com/gofrs/flock" - rev = "6f010d1acea74a32f2f2066bfe324c08bbee30e3" - sha256 = "1mni91ivw277ib3499b58nsyzyz0a239r7b9hvnkiy1i6qkcjvd6" - -["github.com/gogo/gateway"] - sumVersion = "v1.1.0" - ["github.com/gogo/gateway".fetch] - type = "git" - url = "https://github.com/gogo/gateway" - rev = "817b4cf527e834d7d563b7329355c45801d5e02d" - sha256 = "1jj7vr3sdk7yz8jl1kzv8473pkhd388f95byc8pdwrh6y7fh0xrq" - -["github.com/gogo/protobuf"] - sumVersion = "v1.3.3-alpha.regen.1" - vendorPath = "github.com/regen-network/protobuf" - ["github.com/gogo/protobuf".fetch] - type = "git" - url = "https://github.com/regen-network/protobuf" - rev = "8a70ddfdaf94e68497f7b26a6896ad75e03b6616" - sha256 = "0jmhiv9gq0a6brs9p8dk9phafs62yggyhlav07cqwakcq70ss6r2" - -["github.com/golang/glog"] - sumVersion = "v0.0.0-20160126235308-23def4e6c14b" - ["github.com/golang/glog".fetch] - type = "git" - url = "https://github.com/golang/glog" - rev = "23def4e6c14b4da8ac2ed8007337bc5eb5007998" - sha256 = "0jb2834rw5sykfr937fxi8hxi2zy80sj2bdn9b3jb4b26ksqng30" - -["github.com/golang/groupcache"] - sumVersion = "v0.0.0-20200121045136-8c9f03a8e57e" - ["github.com/golang/groupcache".fetch] - type = "git" - url = "https://github.com/golang/groupcache" - rev = "8c9f03a8e57eb486e42badaed3fb287da51807ba" - sha256 = "0vjjr79r32icjzlb05wn02k59av7jx0rn1jijml8r4whlg7dnkfh" - -["github.com/golang/mock"] - sumVersion = "v1.6.0" - ["github.com/golang/mock".fetch] - type = "git" - url = "https://github.com/golang/mock" - rev = "aba2ff9a6844d5e3289e8472d3217d5b3090f083" - sha256 = "1hara8j0x431njjhqxfrg1png7xa1gbrpwza6ya4mwlx76hppap4" - -["github.com/golang/protobuf"] - sumVersion = "v1.5.2" - ["github.com/golang/protobuf".fetch] - type = "git" - url = "https://github.com/golang/protobuf" - rev = "ae97035608a719c7a1c1c41bed0ae0744bdb0c6f" - sha256 = "1mh5fyim42dn821nsd3afnmgscrzzhn3h8rag635d2jnr23r1zhk" - -["github.com/golang/snappy"] - sumVersion = "v0.0.3" - ["github.com/golang/snappy".fetch] - type = "git" - url = "https://github.com/golang/snappy" - rev = "674baa8c7fc30da5df3074a459494a7e6b427dff" - sha256 = "1dc8sdca0nrqb8wri91mi2xcjm16wyawm4y0fwc5gp24ahjbrg7g" - -["github.com/golangci/check"] - sumVersion = "v0.0.0-20180506172741-cfe4005ccda2" - ["github.com/golangci/check".fetch] - type = "git" - url = "https://github.com/golangci/check" - rev = "cfe4005ccda277a820149d44d6ededc400cc99a2" - sha256 = "0l0kpg6hg1vby0blhfmvzs7giphiwssrbgjg7kzkn18ggmagxykh" - -["github.com/golangci/dupl"] - sumVersion = "v0.0.0-20180902072040-3e9179ac440a" - ["github.com/golangci/dupl".fetch] - type = "git" - url = "https://github.com/golangci/dupl" - rev = "3e9179ac440a0386ac7cc9a085fc44397c6b9bbc" - sha256 = "1p5cfj5iykn17q0qq9115szm7kr96zx13kj74mdycxgzjgysxr7l" - -["github.com/golangci/go-misc"] - sumVersion = "v0.0.0-20180628070357-927a3d87b613" - ["github.com/golangci/go-misc".fetch] - type = "git" - url = "https://github.com/golangci/go-misc" - rev = "927a3d87b613e9f6f0fb7ef8bb8de8b83c30a5a2" - sha256 = "0207nw3pkf2nfpz621vlyngslh3sybdk4s6vsl45zwycrml6vb6b" - -["github.com/golangci/gofmt"] - sumVersion = "v0.0.0-20190930125516-244bba706f1a" - ["github.com/golangci/gofmt".fetch] - type = "git" - url = "https://github.com/golangci/gofmt" - rev = "244bba706f1af52a02a156282f7473162611fba1" - sha256 = "09x9gh6vqkzn9asm2ds87x6lx2hqbcpn9669czfgp71m39y7qik8" - -["github.com/golangci/golangci-lint"] - sumVersion = "v1.42.1" - ["github.com/golangci/golangci-lint".fetch] - type = "git" - url = "https://github.com/golangci/golangci-lint" - rev = "54f4301ddfc884a7eac5b6ebf68868d6078279d3" - sha256 = "0yihxbqdh3hjl5anr1fdn93c3jbhgyfv5xr6z2ipyxi8ms66a6ln" - -["github.com/golangci/lint-1"] - sumVersion = "v0.0.0-20191013205115-297bf364a8e0" - ["github.com/golangci/lint-1".fetch] - type = "git" - url = "https://github.com/golangci/lint-1" - rev = "297bf364a8e08e6077dc53d696253160314cf7b8" - sha256 = "15paiv9mbgkl3s8g0ld12dh33q5d59x847bqkhl7mg85alz8vsxc" - -["github.com/golangci/maligned"] - sumVersion = "v0.0.0-20180506175553-b1d89398deca" - ["github.com/golangci/maligned".fetch] - type = "git" - url = "https://github.com/golangci/maligned" - rev = "b1d89398deca2fd3f8578e5a9551e819bd01ca5f" - sha256 = "05l2lim7p0as3js5v4yz46xjnh2k2zcgy69wl472gr9cg1bkxgvq" - -["github.com/golangci/misspell"] - sumVersion = "v0.3.5" - ["github.com/golangci/misspell".fetch] - type = "git" - url = "https://github.com/golangci/misspell" - rev = "950f5d19e77066a2353d9a22e89f8f889d1d7012" - sha256 = "0aw65fck7ras852ipcbc559g0xiay3rib6qm68hy821nkgs0yala" - -["github.com/golangci/revgrep"] - sumVersion = "v0.0.0-20210208091834-cd28932614b5" - ["github.com/golangci/revgrep".fetch] - type = "git" - url = "https://github.com/golangci/revgrep" - rev = "cd28932614b5632011a177e3b83853c02e29ca91" - sha256 = "0vh8vw4rg321l3bkgii17vdqdjjahqh8bfmf2qylpbxv4fry3i29" - -["github.com/golangci/unconvert"] - sumVersion = "v0.0.0-20180507085042-28b1c447d1f4" - ["github.com/golangci/unconvert".fetch] - type = "git" - url = "https://github.com/golangci/unconvert" - rev = "28b1c447d1f4a810737ee6ab40ea6c1d0ceae4ad" - sha256 = "1vdig163lkpkf38vngms2xkrc3rl1dnn227gdcdyfji1cxw4kcda" - -["github.com/google/btree"] - sumVersion = "v1.0.0" - ["github.com/google/btree".fetch] - type = "git" - url = "https://github.com/google/btree" - rev = "4030bb1f1f0c35b30ca7009e9ebd06849dd45306" - sha256 = "0ba430m9fbnagacp57krgidsyrgp3ycw5r7dj71brgp5r52g82p6" - -["github.com/google/certificate-transparency-go"] - sumVersion = "v1.1.1" - ["github.com/google/certificate-transparency-go".fetch] - type = "git" - url = "https://github.com/google/certificate-transparency-go" - rev = "aa25a91f9f9e4cf3f4950bd151a50e78701d5f0d" - sha256 = "0ajdhxrvlzwxbxvvc23cnha9f6gwc7xm7yg1lnpmzcg38d10g969" - -["github.com/google/go-cmp"] - sumVersion = "v0.5.5" - ["github.com/google/go-cmp".fetch] - type = "git" - url = "https://github.com/google/go-cmp" - rev = "8fa37b4dd109f12e42b131e485268768f18bcbf8" - sha256 = "12fmkdhyv5d4is8s57k78j097zb0phlgnrkqc03agiszxlid69x7" - -["github.com/google/gofuzz"] - sumVersion = "v1.2.0" - ["github.com/google/gofuzz".fetch] - type = "git" - url = "https://github.com/google/gofuzz" - rev = "379e164120fbc98885a8f494b5aa41ba94f64c56" - sha256 = "19bykk6y9d1ivylxchkx1r1d02xrh3wfvvd02zvr5qv5ippv78ag" - -["github.com/google/martian"] - sumVersion = "v2.1.0+incompatible" - ["github.com/google/martian".fetch] - type = "git" - url = "https://github.com/google/martian" - rev = "195b986b4b6d4c513582cf4d2b8c4fd7e2494f7e" - sha256 = "197hil6vrjk50b9wvwyzf61csid83whsjj6ik8mc9r2lryxlyyrp" - -["github.com/google/martian/v3"] - sumVersion = "v3.1.0" - ["github.com/google/martian/v3".fetch] - type = "git" - url = "https://github.com/google/martian" - rev = "dacbe1a1813d1e1b8f44f17b03ffe0cd9fb5ba54" - sha256 = "1pr9akggfzj2vw11l7ry4sij0hqslpc3gwx4ynbzyvbjhvh64sbc" - -["github.com/google/orderedcode"] - sumVersion = "v0.0.1" - ["github.com/google/orderedcode".fetch] - type = "git" - url = "https://github.com/google/orderedcode" - rev = "9a3d15e0d5340bb1ba5db4071afd931e18b6e013" - sha256 = "0sdqfjji2skc1f7fbv9krbrb0cgfz43ksrld333hllgdidi33c9a" - -["github.com/google/pprof"] - sumVersion = "v0.0.0-20210226084205-cbba55b83ad5" - ["github.com/google/pprof".fetch] - type = "git" - url = "https://github.com/google/pprof" - rev = "cbba55b83ad56c9286566b96b0c82cead332b729" - sha256 = "0drr44nqq0s3jillcrl8qa7sklxybs083lvashdh2ad62hrs31l7" - -["github.com/google/renameio"] - sumVersion = "v0.1.0" - ["github.com/google/renameio".fetch] - type = "git" - url = "https://github.com/google/renameio" - rev = "f0e32980c006571efd537032e5f9cd8c1a92819e" - sha256 = "1ki2x5a9nrj17sn092d6n4zr29lfg5ydv4xz5cp58z6cw8ip43jx" - -["github.com/google/trillian"] - sumVersion = "v1.3.11" - ["github.com/google/trillian".fetch] - type = "git" - url = "https://github.com/google/trillian" - rev = "2053c7648b44d5de45863c3ad12550b511ad6a14" - sha256 = "1lh19wba90y91l5jj8ilzjqxgmqqqdvyn7pzrwvmzv7iiy18wcmh" - -["github.com/google/uuid"] - sumVersion = "v1.2.0" - ["github.com/google/uuid".fetch] - type = "git" - url = "https://github.com/google/uuid" - rev = "bfb86fa49a73e4194d93bea18d7acfe3694438ce" - sha256 = "08wqig98w23cg2ngjijhgm6s0mdayb95awa3cn3bs69lg20gryac" - -["github.com/googleapis/gax-go/v2"] - sumVersion = "v2.0.5" - relPath = "v2" - ["github.com/googleapis/gax-go/v2".fetch] - type = "git" - url = "https://github.com/googleapis/gax-go" - rev = "bd5b16380fd03dc758d11cef74ba2e3bc8b0e8c2" - sha256 = "1lxawwngv6miaqd25s3ba0didfzylbwisd2nz7r4gmbmin6jsjrx" - -["github.com/gookit/color"] - sumVersion = "v1.4.2" - ["github.com/gookit/color".fetch] - type = "git" - url = "https://github.com/gookit/color" - rev = "971acbd594ad519d6a65af5c03a124f533ef3a42" - sha256 = "0pid7yyjd5zbpkgxqhilbfcxyqwx6hzd9sgwk0l2jn3qf0cvzxfi" - -["github.com/gopherjs/gopherjs"] - sumVersion = "v0.0.0-20181017120253-0766667cb4d1" - ["github.com/gopherjs/gopherjs".fetch] - type = "git" - url = "https://github.com/gopherjs/gopherjs" - rev = "0766667cb4d1cfb8d5fde1fe210ae41ead3cf589" - sha256 = "13pfc9sxiwjky2lm1xb3i3lcisn8p6mgjk2d927l7r92ysph8dmw" - -["github.com/gordonklaus/ineffassign"] - sumVersion = "v0.0.0-20210225214923-2e10b2664254" - ["github.com/gordonklaus/ineffassign".fetch] - type = "git" - url = "https://github.com/gordonklaus/ineffassign" - rev = "2e10b26642541670df2672e035b2de19fcb04cab" - sha256 = "0a2ssajs0q78ck0ss63rvkj3x8r6wc8vl10pg760qpw9ykbld5kl" - -["github.com/gorhill/cronexpr"] - sumVersion = "v0.0.0-20180427100037-88b0669f7d75" - ["github.com/gorhill/cronexpr".fetch] - type = "git" - url = "https://github.com/gorhill/cronexpr" - rev = "88b0669f7d75f171bd612b874e52b95c190218df" - sha256 = "0hc7xdfclp2qgkr1581jb3ckjvl34nxmqrnraci5jzmqx5av9j1r" - -["github.com/gorilla/context"] - sumVersion = "v1.1.1" - ["github.com/gorilla/context".fetch] - type = "git" - url = "https://github.com/gorilla/context" - rev = "08b5f424b9271eedf6f9f0ce86cb9396ed337a42" - sha256 = "03p4hn87vcmfih0p9w663qbx9lpsf7i7j3lc7yl7n84la3yz63m4" - -["github.com/gorilla/handlers"] - sumVersion = "v1.5.1" - ["github.com/gorilla/handlers".fetch] - type = "git" - url = "https://github.com/gorilla/handlers" - rev = "d453effd20e6817a8acfd9d278dadd21371da0ba" - sha256 = "15gycdz9lkjnsvvichsbdf25vf6pi1sfn41khhz53iqf300l0w0s" - -["github.com/gorilla/mux"] - sumVersion = "v1.8.0" - ["github.com/gorilla/mux".fetch] - type = "git" - url = "https://github.com/gorilla/mux" - rev = "98cb6bf42e086f6af920b965c38cacc07402d51b" - sha256 = "18f0q9qxgq1yh4ji07mqhiydfcwvi56z9d775v7dc7yckj33kpdk" - -["github.com/gorilla/websocket"] - sumVersion = "v1.4.2" - ["github.com/gorilla/websocket".fetch] - type = "git" - url = "https://github.com/gorilla/websocket" - rev = "b65e62901fc1c0d968042419e74789f6af455eb9" - sha256 = "0mkm9w6kjkrlzab5wh8p4qxkc0icqawjbvr01d2nk6ykylrln40s" - -["github.com/gostaticanalysis/analysisutil"] - sumVersion = "v0.4.1" - ["github.com/gostaticanalysis/analysisutil".fetch] - type = "git" - url = "https://github.com/gostaticanalysis/analysisutil" - rev = "2f839a036bd8444fb6741f7a8297a130aa86e35a" - sha256 = "04fwjbzkjzaf0i95mzqinkmwazn900c7x246nin5ihd24qxgjw9g" - -["github.com/gostaticanalysis/comment"] - sumVersion = "v1.4.1" - ["github.com/gostaticanalysis/comment".fetch] - type = "git" - url = "https://github.com/gostaticanalysis/comment" - rev = "95f35d9526d5baa1cae08f5c028a441954c44992" - sha256 = "1zlxva7icsc0ldf0r290hb9qinmq5z0vkgjpmkr7cwrmnzamj589" - -["github.com/gostaticanalysis/forcetypeassert"] - sumVersion = "v0.0.0-20200621232751-01d4955beaa5" - ["github.com/gostaticanalysis/forcetypeassert".fetch] - type = "git" - url = "https://github.com/gostaticanalysis/forcetypeassert" - rev = "01d4955beaa5d7ef4d59ff7ea1df2eb49c7ea604" - sha256 = "00sigmsxp5mhlymxgxgny8hzlxni25pq4k9b9ics700hmyidksc9" - -["github.com/gostaticanalysis/nilerr"] - sumVersion = "v0.1.1" - ["github.com/gostaticanalysis/nilerr".fetch] - type = "git" - url = "https://github.com/gostaticanalysis/nilerr" - rev = "7a8ff9e3218a17de54619ed310fca8824b8274c0" - sha256 = "0dz1k7l6jcdamy3i0q976n13lydxx9dpc0sv3zl1j7sm6sysv76x" - -["github.com/gotestyourself/gotestyourself"] - sumVersion = "v2.2.0+incompatible" - ["github.com/gotestyourself/gotestyourself".fetch] - type = "git" - url = "https://github.com/gotestyourself/gotestyourself" - rev = "7c797b5133e5460410dbb22ba779bf35e6975dea" - sha256 = "0yif3gdyckmf8i54jq0xn00kflla5rhib9sarw66ngnbl7bn9kyl" - -["github.com/graph-gophers/graphql-go"] - sumVersion = "v0.0.0-20191115155744-f33e81362277" - ["github.com/graph-gophers/graphql-go".fetch] - type = "git" - url = "https://github.com/graph-gophers/graphql-go" - rev = "f33e813622776db7efec756a9e951bef40932197" - sha256 = "12vbls1kvn3lfgj86y4r258x6papgcj3h4pcg4xbdi5l2cy1idmy" - -["github.com/gravity-devs/liquidity"] - sumVersion = "v1.4.4" - ["github.com/gravity-devs/liquidity".fetch] - type = "git" - url = "https://github.com/gravity-devs/liquidity" - rev = "fb546029b2481dd07b8086ef9bc97e62032bbc31" - sha256 = "06hf1hxwnvr00gnkfx3a3cj9w8mz7q6mjjxjc92z9gms3mzhypwc" - -["github.com/gregjones/httpcache"] - sumVersion = "v0.0.0-20190611155906-901d90724c79" - ["github.com/gregjones/httpcache".fetch] - type = "git" - url = "https://github.com/gregjones/httpcache" - rev = "901d90724c7919163f472a9812253fb26761123d" - sha256 = "05r0xq51vfb55di11m7iv19341d73f7in33vq1ihcqs1nffdwiq0" - -["github.com/grpc-ecosystem/go-grpc-middleware"] - sumVersion = "v1.3.0" - ["github.com/grpc-ecosystem/go-grpc-middleware".fetch] - type = "git" - url = "https://github.com/grpc-ecosystem/go-grpc-middleware" - rev = "df0f91b29bbbdfc3a686a7a8edbe2b9de2072fdd" - sha256 = "1c9chw2nwj46ayx6cbq1sq21gmfmm3fx1gg579hn7srwywq0xsw0" - -["github.com/grpc-ecosystem/go-grpc-prometheus"] - sumVersion = "v1.2.0" - ["github.com/grpc-ecosystem/go-grpc-prometheus".fetch] - type = "git" - url = "https://github.com/grpc-ecosystem/go-grpc-prometheus" - rev = "c225b8c3b01faf2899099b768856a9e916e5087b" - sha256 = "1lzk54h7np32b3acidg1ggbn8ppbnns0m71gcg9d1qkkdh8zrijl" - -["github.com/grpc-ecosystem/grpc-gateway"] - sumVersion = "v1.16.0" - ["github.com/grpc-ecosystem/grpc-gateway".fetch] - type = "git" - url = "https://github.com/grpc-ecosystem/grpc-gateway" - rev = "094a6fe78b3ca888297d090185cdf30f0e42e157" - sha256 = "0dzq1qbgzz2c6vnh8anx0j3py34sd72p35x6s2wrl001q68am5cc" - -["github.com/grpc-ecosystem/grpc-gateway/v2"] - sumVersion = "v2.0.1" - ["github.com/grpc-ecosystem/grpc-gateway/v2".fetch] - type = "git" - url = "https://github.com/grpc-ecosystem/grpc-gateway" - rev = "5c1639cccb7d6abc747643ed07321b0052b809d5" - sha256 = "0pkdn64bkg4lfmfpx5jqv0bs3n4b9jzj5alms1d8mdi83s9k5c2j" - -["github.com/gsterjov/go-libsecret"] - sumVersion = "v0.0.0-20161001094733-a6f4afe4910c" - ["github.com/gsterjov/go-libsecret".fetch] - type = "git" - url = "https://github.com/gsterjov/go-libsecret" - rev = "a6f4afe4910cad8688db3e0e9b9ac92ad22d54e1" - sha256 = "09zaiadnll83vs22ib89agg7anj0blw5fywvmckxllsgif6ak6v7" - -["github.com/gtank/merlin"] - sumVersion = "v0.1.1" - ["github.com/gtank/merlin".fetch] - type = "git" - url = "https://github.com/gtank/merlin" - rev = "8318aed1a79f2b4c16cf2d7c2f09d991ec0731d1" - sha256 = "1gcj26hiyb87cjvqrdyr4q201c1rknpbahnsvcnz08agaw6gvwxm" - -["github.com/gtank/ristretto255"] - sumVersion = "v0.1.2" - ["github.com/gtank/ristretto255".fetch] - type = "git" - url = "https://github.com/gtank/ristretto255" - rev = "f33454717c935f5c93978e82b7bd1e848768bb91" - sha256 = "0kn4r28zbxf4vqr2if455wqzak38l27wqrwbzpxygrvczm61a2kw" - -["github.com/hashicorp/consul/api"] - sumVersion = "v1.3.0" - relPath = "api" - ["github.com/hashicorp/consul/api".fetch] - type = "git" - url = "https://github.com/hashicorp/consul" - rev = "e8757838a49feeb682c7e6ad6b78694a78b2096b" - sha256 = "1zv84snvrjm74w3v3rr27linsbxj00m73xd047sb78a4766xs2h0" - -["github.com/hashicorp/consul/sdk"] - sumVersion = "v0.3.0" - relPath = "sdk" - ["github.com/hashicorp/consul/sdk".fetch] - type = "git" - url = "https://github.com/hashicorp/consul" - rev = "441d613e1bd96254c78c46ee7c1b35c161fc7295" - sha256 = "1v06ygzsvc9c02yxpxnnm407kd30fc46b2146k5zrk1v8lq0f91j" - -["github.com/hashicorp/errwrap"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/errwrap".fetch] - type = "git" - url = "https://github.com/hashicorp/errwrap" - rev = "8a6fb523712970c966eefc6b39ed2c5e74880354" - sha256 = "0slfb6w3b61xz04r32bi0a1bygc82rjzhqkxj2si2074wynqnr1c" - -["github.com/hashicorp/go-cleanhttp"] - sumVersion = "v0.5.1" - ["github.com/hashicorp/go-cleanhttp".fetch] - type = "git" - url = "https://github.com/hashicorp/go-cleanhttp" - rev = "eda1e5db218aad1db63ca4642c8906b26bcf2744" - sha256 = "07kx3fhryqmaw3czacmm11qwx63js2q8cfq967vphk7xg9q377kk" - -["github.com/hashicorp/go-immutable-radix"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-immutable-radix".fetch] - type = "git" - url = "https://github.com/hashicorp/go-immutable-radix" - rev = "27df80928bb34bb1b0d6d0e01b9e679902e7a6b5" - sha256 = "1v3nmsnk1s8bzpclrhirz7iq0g5xxbw9q5gvrg9ss6w9crs72qr6" - -["github.com/hashicorp/go-msgpack"] - sumVersion = "v0.5.3" - ["github.com/hashicorp/go-msgpack".fetch] - type = "git" - url = "https://github.com/hashicorp/go-msgpack" - rev = "be3a5be7ee2202386d02936a19ae4fbde1c77800" - sha256 = "00jv0ajqd58pkb2yyhlrjp0rv1mvb1ijx3yqjyikcmzvk9jb4h5m" - -["github.com/hashicorp/go-multierror"] - sumVersion = "v1.1.1" - ["github.com/hashicorp/go-multierror".fetch] - type = "git" - url = "https://github.com/hashicorp/go-multierror" - rev = "9974e9ec57696378079ecc3accd3d6f29401b3a0" - sha256 = "0l4s41skdpifndn9s8y6s9vzgghdzg4z8z0lld9qjr28888wzp00" - -["github.com/hashicorp/go-retryablehttp"] - sumVersion = "v0.5.3" - ["github.com/hashicorp/go-retryablehttp".fetch] - type = "git" - url = "https://github.com/hashicorp/go-retryablehttp" - rev = "357460732517ec3b57c05c51443296bdd6df1874" - sha256 = "008mimxs8a970rdhvgmc5v1wk0gmpcl96mrkwz7wq6ik6fhg1sjl" - -["github.com/hashicorp/go-rootcerts"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-rootcerts".fetch] - type = "git" - url = "https://github.com/hashicorp/go-rootcerts" - rev = "63503fb4e1eca22f9ae0f90b49c5d5538a0e87eb" - sha256 = "0wply5zhj1rcybr932zbwm1i18q5wr7kgkhnz6bw6mk1n9yr8lfj" - -["github.com/hashicorp/go-sockaddr"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-sockaddr".fetch] - type = "git" - url = "https://github.com/hashicorp/go-sockaddr" - rev = "a6a0d2df398f7e0e9f6e43f589c8b51cec0eb6b0" - sha256 = "1yn1xq8ysn0lszmkygz3a9lgpswbz1p91jv7q8l20s4749a22xgi" - -["github.com/hashicorp/go-syslog"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-syslog".fetch] - type = "git" - url = "https://github.com/hashicorp/go-syslog" - rev = "8d1874e3e8d1862b74e0536851e218c4571066a5" - sha256 = "09vccqggz212cg0jir6vv708d6mx0f9w5bxrcdah3h6chgmal6v1" - -["github.com/hashicorp/go-uuid"] - sumVersion = "v1.0.1" - ["github.com/hashicorp/go-uuid".fetch] - type = "git" - url = "https://github.com/hashicorp/go-uuid" - rev = "4f571afc59f3043a65f8fe6bf46d887b10a01d43" - sha256 = "0jvb88m0rq41bwgirsadgw7mnayl27av3gd2vqa3xvxp3fy0hp5k" - -["github.com/hashicorp/go-version"] - sumVersion = "v1.2.0" - ["github.com/hashicorp/go-version".fetch] - type = "git" - url = "https://github.com/hashicorp/go-version" - rev = "ac23dc3fea5d1a983c43f6a0f6e2c13f0195d8bd" - sha256 = "1bwi6y6111xq8ww8kjq0w1cmz15l1h9hb2id6596l8l0ag1vjj1z" - -["github.com/hashicorp/go.net"] - sumVersion = "v0.0.1" - ["github.com/hashicorp/go.net".fetch] - type = "git" - url = "https://github.com/hashicorp/go.net" - rev = "afc3cb3a421746fc66dd55b09a270c750cf536ce" - sha256 = "06arwi95xp5rxyz7rndvhc3wlwg0jn9a5z6djf3yyg5h9zfab9i4" - -["github.com/hashicorp/golang-lru"] - sumVersion = "v0.5.4" - ["github.com/hashicorp/golang-lru".fetch] - type = "git" - url = "https://github.com/hashicorp/golang-lru" - rev = "14eae340515388ca95aa8e7b86f0de668e981f54" - sha256 = "1sdbymypp9vrnzp8ashw0idlxvaq0rb0alwxx3x8g27yjlqi9jfn" - -["github.com/hashicorp/hcl"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/hcl".fetch] - type = "git" - url = "https://github.com/hashicorp/hcl" - rev = "8cb6e5b959231cc1119e43259c4a608f9c51a241" - sha256 = "0q6ml0qqs0yil76mpn4mdx4lp94id8vbv575qm60jzl1ijcl5i66" - -["github.com/hashicorp/logutils"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/logutils".fetch] - type = "git" - url = "https://github.com/hashicorp/logutils" - rev = "a335183dfd075f638afcc820c90591ca3c97eba6" - sha256 = "076wf4sh5p3f953ndqk1cc0x7jhmlqrxak9953rz79rcdw77rjvv" - -["github.com/hashicorp/mdns"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/mdns".fetch] - type = "git" - url = "https://github.com/hashicorp/mdns" - rev = "c31d3f8e4a0a5b46b118c2fd26d9da36467002c9" - sha256 = "0qr4l91hhi97s8a1isnrw3s4q8pjzacqiks870vnwh15v7ig3axd" - -["github.com/hashicorp/memberlist"] - sumVersion = "v0.1.3" - ["github.com/hashicorp/memberlist".fetch] - type = "git" - url = "https://github.com/hashicorp/memberlist" - rev = "a9da52f0668fc4321ec18e9e28dd8141621a808f" - sha256 = "0k1spq7dagvqj3baqw2dhxx1zxrb02y6m3apzr3a7gyirii890g3" - -["github.com/hashicorp/serf"] - sumVersion = "v0.8.2" - ["github.com/hashicorp/serf".fetch] - type = "git" - url = "https://github.com/hashicorp/serf" - rev = "b89a09ebd4b1b570e0076d5097272e67c10ac4f6" - sha256 = "0nrslghvdjhaczr2xp9mn8xgcx1dxl4jgpbk0l61ssmxahpx4iyc" - -["github.com/hdevalence/ed25519consensus"] - sumVersion = "v0.0.0-20210204194344-59a8610d2b87" - ["github.com/hdevalence/ed25519consensus".fetch] - type = "git" - url = "https://github.com/hdevalence/ed25519consensus" - rev = "59a8610d2b877a977e021f711e382bc0e757bf48" - sha256 = "0nw0i884mbya2sdijrhlfnx3ymhdl3jcxk36g6mqk1d91p5b40s2" - -["github.com/holiman/uint256"] - sumVersion = "v1.1.1" - ["github.com/holiman/uint256".fetch] - type = "git" - url = "https://github.com/holiman/uint256" - rev = "99b79c80738390408ef1a47f0e26812ef5506c02" - sha256 = "13v6rnwv1mivqxfmnmj57jg6is81p04gspmykc8slcc1ryvs1qdh" - -["github.com/hpcloud/tail"] - sumVersion = "v1.0.0" - ["github.com/hpcloud/tail".fetch] - type = "git" - url = "https://github.com/hpcloud/tail" - rev = "a30252cb686a21eb2d0b98132633053ec2f7f1e5" - sha256 = "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0" - -["github.com/huandu/xstrings"] - sumVersion = "v1.2.0" - ["github.com/huandu/xstrings".fetch] - type = "git" - url = "https://github.com/huandu/xstrings" - rev = "f02667b379e2fb5916c3cda2cf31e0eb885d79f8" - sha256 = "0bn1kac5vcspxdpx4bygr4gngdbk67pnbqc04b0f7a4ny25n10iq" - -["github.com/hudl/fargo"] - sumVersion = "v1.3.0" - ["github.com/hudl/fargo".fetch] - type = "git" - url = "https://github.com/hudl/fargo" - rev = "fce5cf495554be9ef0766f6f5459e2874fb08c89" - sha256 = "1f7pwj793p51nq03jiz834g0qvg502h9asry6nx4pdc10wzx2948" - -["github.com/huin/goupnp"] - sumVersion = "v1.0.0" - ["github.com/huin/goupnp".fetch] - type = "git" - url = "https://github.com/huin/goupnp" - rev = "656e61dfadd241c7cbdd22a023fa81ecb6860ea8" - sha256 = "12f7rigf1f4xh1an1qis61xkj5s1r8ygk48zahf3n4gaqxmgm7i6" - -["github.com/huin/goutil"] - sumVersion = "v0.0.0-20170803182201-1ca381bf3150" - ["github.com/huin/goutil".fetch] - type = "git" - url = "https://github.com/huin/goutil" - rev = "1ca381bf315033e89af3286fdec0109ce8d86126" - sha256 = "0alhyacsfqic2wxyqn4gvk9wzjl4pkmy8rhvqjk84xsghgx5xf12" - -["github.com/ianlancetaylor/demangle"] - sumVersion = "v0.0.0-20200824232613-28f6c0f3b639" - ["github.com/ianlancetaylor/demangle".fetch] - type = "git" - url = "https://github.com/ianlancetaylor/demangle" - rev = "28f6c0f3b63983aaa99575ca3b693afff7996387" - sha256 = "0rsq3622gd40f1x1l7caidsxrmzg1993ich2higwd94fqbxs1r83" - -["github.com/imdario/mergo"] - sumVersion = "v0.3.8" - ["github.com/imdario/mergo".fetch] - type = "git" - url = "https://github.com/imdario/mergo" - rev = "1afb36080aec31e0d1528973ebe6721b191b0369" - sha256 = "15xwyrnwng11ib0fxi7clwick2r0njwn0gs3va2g5m1ad418ry57" - -["github.com/improbable-eng/grpc-web"] - sumVersion = "v0.14.1" - ["github.com/improbable-eng/grpc-web".fetch] - type = "git" - url = "https://github.com/improbable-eng/grpc-web" - rev = "d1462f8004766ff7f0e99962976a853bc9310301" - sha256 = "153a2kn2hpiwyspy9clwsxkgfw1igww5n74vf55fvz0idzv3r10n" - -["github.com/inconshreveable/mousetrap"] - sumVersion = "v1.0.0" - ["github.com/inconshreveable/mousetrap".fetch] - type = "git" - url = "https://github.com/inconshreveable/mousetrap" - rev = "76626ae9c91c4f2a10f34cad8ce83ea42c93bb75" - sha256 = "1mn0kg48xkd74brf48qf5hzp0bc6g8cf5a77w895rl3qnlpfw152" - -["github.com/influxdata/influxdb"] - sumVersion = "v1.2.3-0.20180221223340-01288bdb0883" - ["github.com/influxdata/influxdb".fetch] - type = "git" - url = "https://github.com/influxdata/influxdb" - rev = "01288bdb0883a01cac999326bd34421b29acaec8" - sha256 = "0lk1c2w1ja2w7wc897xp5c04vyrx5yxq5pb187aqcrqbqvy2fp5p" - -["github.com/influxdata/influxdb1-client"] - sumVersion = "v0.0.0-20191209144304-8bf82d3c094d" - ["github.com/influxdata/influxdb1-client".fetch] - type = "git" - url = "https://github.com/influxdata/influxdb1-client" - rev = "8bf82d3c094dc06be9da8e5bf9d3589b6ea032ae" - sha256 = "0cjli7prxfxayx2grianbla5jr0dq28sazk8phbnh61ac5zaya4s" - -["github.com/jackpal/go-nat-pmp"] - sumVersion = "v1.0.2-0.20160603034137-1fa385a6f458" - ["github.com/jackpal/go-nat-pmp".fetch] - type = "git" - url = "https://github.com/jackpal/go-nat-pmp" - rev = "1fa385a6f45828c83361136b45b1a21a12139493" - sha256 = "1n5h3qrd613cfw95vyqpy9vh3xv0zgbk3j5q8zad25q10wvp6ymn" - -["github.com/jedisct1/go-minisign"] - sumVersion = "v0.0.0-20190909160543-45766022959e" - ["github.com/jedisct1/go-minisign".fetch] - type = "git" - url = "https://github.com/jedisct1/go-minisign" - rev = "45766022959ee057eee31300cdc5f45a8c51ea7f" - sha256 = "02rc52v29wyzias9aw4a7kxsfspf27an3kf0pb9pn4kp0br5dn6v" - -["github.com/jessevdk/go-flags"] - sumVersion = "v1.4.0" - ["github.com/jessevdk/go-flags".fetch] - type = "git" - url = "https://github.com/jessevdk/go-flags" - rev = "c6ca198ec95c841fdb89fc0de7496fed11ab854e" - sha256 = "0algnnigph27spgn655zm4723yfjxjjvlf4k14z9drj3682df25a" - -["github.com/jgautheron/goconst"] - sumVersion = "v1.5.1" - ["github.com/jgautheron/goconst".fetch] - type = "git" - url = "https://github.com/jgautheron/goconst" - rev = "9ea1afc8489c618088835b70f6e9774ef1b08bc0" - sha256 = "10bam480rl1x73afhj928qh32x6218m7h6hkvr78lmxxxk25c43j" - -["github.com/jhump/protoreflect"] - sumVersion = "v1.9.0" - ["github.com/jhump/protoreflect".fetch] - type = "git" - url = "https://github.com/jhump/protoreflect" - rev = "d3608faa83b85e64a0e2880cba9be9c951460727" - sha256 = "0pbyvisfjmhx1g5l6m0dqv730hid1jr8h8746yx3d567ms2hgj8f" - -["github.com/jingyugao/rowserrcheck"] - sumVersion = "v1.1.0" - ["github.com/jingyugao/rowserrcheck".fetch] - type = "git" - url = "https://github.com/jingyugao/rowserrcheck" - rev = "d907ca737bb10a42b7e263244d25f950bb8f1427" - sha256 = "12j046359p7azql6my2qrn45p53pkc77hq9hmmd7fb8ypfk1xh6z" - -["github.com/jirfag/go-printf-func-name"] - sumVersion = "v0.0.0-20200119135958-7558a9eaa5af" - ["github.com/jirfag/go-printf-func-name".fetch] - type = "git" - url = "https://github.com/jirfag/go-printf-func-name" - rev = "7558a9eaa5af8ed9fe5051bbd2791b4665210a0a" - sha256 = "1mj8wq1lpxslmx678izfrf1sg3arw2lq87c26zzcbv5cckni8bgn" - -["github.com/jmespath/go-jmespath"] - sumVersion = "v0.4.0" - ["github.com/jmespath/go-jmespath".fetch] - type = "git" - url = "https://github.com/jmespath/go-jmespath" - rev = "3d4fd11601ddca248480565884e34e393313cd62" - sha256 = "18zyr9nlywmwp3wpzcjxrgq9s9d2mmc6zg6xhsna00m663nkyc3n" - -["github.com/jmespath/go-jmespath/internal/testify"] - sumVersion = "v1.5.1" - relPath = "internal/testify" - ["github.com/jmespath/go-jmespath/internal/testify".fetch] - type = "git" - url = "https://github.com/jmespath/go-jmespath" - rev = "ff168ca20786696708c0f3eb2cc29d7912467599" - sha256 = "0swpmim4gn023pkzxfg8adqilz7mfka8axlsjqsxk0d2r372z75m" - -["github.com/jmhodges/levigo"] - sumVersion = "v1.0.0" - ["github.com/jmhodges/levigo".fetch] - type = "git" - url = "https://github.com/jmhodges/levigo" - rev = "853d788c5c416eaaee5b044570784a96c7a26975" - sha256 = "1lhh413mmclnkwn2lk1crwzargam2cx5w7k6zj8pgasy62c78iy4" - -["github.com/jmoiron/sqlx"] - sumVersion = "v1.2.0" - ["github.com/jmoiron/sqlx".fetch] - type = "git" - url = "https://github.com/jmoiron/sqlx" - rev = "d161d7a76b5661016ad0b085869f77fd410f3e6a" - sha256 = "0pmi2asx157f5738g19fzyxb9g8yyfbpjyh2a2ykr9mafvp60rfd" - -["github.com/jonboulle/clockwork"] - sumVersion = "v0.2.0" - ["github.com/jonboulle/clockwork".fetch] - type = "git" - url = "https://github.com/jonboulle/clockwork" - rev = "56678c9ed265c35c6b7189fbdda2b8a257f6753a" - sha256 = "1pzkvnzanaakdpxhawbmmv6xyislx264fxqzvbf2yqg51sf9f4ll" - -["github.com/jpillora/backoff"] - sumVersion = "v1.0.0" - ["github.com/jpillora/backoff".fetch] - type = "git" - url = "https://github.com/jpillora/backoff" - rev = "d80867952dff4e2fbfb4280ded4ff94d67790457" - sha256 = "0x90fif28fjyl07lmj2cnxzlgdm632v7rkra7kq1mwjdqgmy04dv" - -["github.com/jrick/logrotate"] - sumVersion = "v1.0.0" - ["github.com/jrick/logrotate".fetch] - type = "git" - url = "https://github.com/jrick/logrotate" - rev = "a93b200c26cbae3bb09dd0dc2c7c7fe1468a034a" - sha256 = "0srl6figwjqpi3nbp7br8sxpmvh4v8lzbny1b4lar4ny0156p5nl" - -["github.com/json-iterator/go"] - sumVersion = "v1.1.11" - ["github.com/json-iterator/go".fetch] - type = "git" - url = "https://github.com/json-iterator/go" - rev = "e6b9536d3649bda3e8842bb7e4fab489d79a97ea" - sha256 = "086la0acyi7ryf0yzhsxm7vg9qqlg2333syf4kpr1cmac7v05vmb" - -["github.com/jstemmer/go-junit-report"] - sumVersion = "v0.9.1" - ["github.com/jstemmer/go-junit-report".fetch] - type = "git" - url = "https://github.com/jstemmer/go-junit-report" - rev = "cc1f095d5cc5eca2844f5c5ea7bb37f6b9bf6cac" - sha256 = "1knip80yir1cdsjlb3rzy0a4w3kl4ljpiciaz6hjzwqlfhnv7bkw" - -["github.com/jtolds/gls"] - sumVersion = "v4.20.0+incompatible" - ["github.com/jtolds/gls".fetch] - type = "git" - url = "https://github.com/jtolds/gls" - rev = "b4936e06046bbecbb94cae9c18127ebe510a2cb9" - sha256 = "1k7xd2q2ysv2xsh373qs801v6f359240kx0vrl0ydh7731lngvk6" - -["github.com/juju/ratelimit"] - sumVersion = "v1.0.1" - ["github.com/juju/ratelimit".fetch] - type = "git" - url = "https://github.com/juju/ratelimit" - rev = "59fac5042749a5afb9af70e813da1dd5474f0167" - sha256 = "0ppwvwbh9jdpdk4f9924vw373cpfz5g5ad10c707p22a984vanrz" - -["github.com/julienschmidt/httprouter"] - sumVersion = "v1.3.0" - ["github.com/julienschmidt/httprouter".fetch] - type = "git" - url = "https://github.com/julienschmidt/httprouter" - rev = "4eec211fa4e8df74ed978dc5681612131854144f" - sha256 = "1a6sy0ysqknsjssjh7qg1dqn21xmj9a36c57nrk7srfmab4ffmk1" - -["github.com/julz/importas"] - sumVersion = "v0.0.0-20210419104244-841f0c0fe66d" - ["github.com/julz/importas".fetch] - type = "git" - url = "https://github.com/julz/importas" - rev = "841f0c0fe66d8a78d66676e024272dfd69b57668" - sha256 = "11mccjj422ssxzpdfv6p28yh4wp88fwp5fcw7wbc826bsy1cylkv" - -["github.com/k0kubun/colorstring"] - sumVersion = "v0.0.0-20150214042306-9440f1994b88" - ["github.com/k0kubun/colorstring".fetch] - type = "git" - url = "https://github.com/k0kubun/colorstring" - rev = "9440f1994b88a579ce4e2884bfb4532b79bdca7a" - sha256 = "0isskya7ky4k9znrh85crfc2pxwyfz2s8j1a5cbjb8b8zf2v0qbj" - -["github.com/karalabe/usb"] - sumVersion = "v0.0.0-20190919080040-51dc0efba356" - ["github.com/karalabe/usb".fetch] - type = "git" - url = "https://github.com/karalabe/usb" - rev = "51dc0efba3568b598359930901dc6647e9b2c6a1" - sha256 = "0rshv04w5f60zv3l9f0zqyhimpwrbzm7dir8jbkdpnszicq1dx3m" - -["github.com/keybase/go-keychain"] - sumVersion = "v0.0.0-20190712205309-48d3d31d256d" - ["github.com/keybase/go-keychain".fetch] - type = "git" - url = "https://github.com/keybase/go-keychain" - rev = "48d3d31d256d9922a90b14c518c4b685f321fab2" - sha256 = "1vb4irkbj5s4v8n8dqngmg2w2fbnaz568z731yqryspvvmrki2a1" - -["github.com/kisielk/errcheck"] - sumVersion = "v1.6.0" - ["github.com/kisielk/errcheck".fetch] - type = "git" - url = "https://github.com/kisielk/errcheck" - rev = "4174a4ae53d4a46ffdaddaa9e09eaa4f7a180b08" - sha256 = "17b1khy6lwy39qqkw0xj4s4wf58azd03kj5fa9jdf553rpcxzg1y" - -["github.com/kisielk/gotool"] - sumVersion = "v1.0.0" - ["github.com/kisielk/gotool".fetch] - type = "git" - url = "https://github.com/kisielk/gotool" - rev = "80517062f582ea3340cd4baf70e86d539ae7d84d" - sha256 = "14af2pa0ssyp8bp2mvdw184s5wcysk6akil3wzxmr05wwy951iwn" - -["github.com/kkdai/bstream"] - sumVersion = "v1.0.0" - ["github.com/kkdai/bstream".fetch] - type = "git" - url = "https://github.com/kkdai/bstream" - rev = "a8d27c5aa8eedad6b6683069d64b96ece63696db" - sha256 = "02brc58hhkkfhgb4yxjv3wshq355w533q7d49qrlfkhk265qph7w" - -["github.com/klauspost/compress"] - sumVersion = "v1.11.7" - ["github.com/klauspost/compress".fetch] - type = "git" - url = "https://github.com/klauspost/compress" - rev = "85d8ebff245ce04f07ea619ca9c73be887313eae" - sha256 = "0wybxlkwp5j3lc60dgsc4cvhw80699vd2n7rsr4234vg1lh041nw" - -["github.com/konsorten/go-windows-terminal-sequences"] - sumVersion = "v1.0.3" - ["github.com/konsorten/go-windows-terminal-sequences".fetch] - type = "git" - url = "https://github.com/konsorten/go-windows-terminal-sequences" - rev = "edb144dfd453055e1e49a3d8b410a660b5a87613" - sha256 = "1yrsd4s8vhjnxhwbigirymz89dn6qfjnhn28i33vvvdgf96j6ypl" - -["github.com/kr/fs"] - sumVersion = "v0.1.0" - ["github.com/kr/fs".fetch] - type = "git" - url = "https://github.com/kr/fs" - rev = "1455def202f6e05b95cc7bfc7e8ae67ae5141eba" - sha256 = "11zg176x9hr9q7fsk95r6q0wf214gg4czy02slax4x56n79g6a7q" - -["github.com/kr/logfmt"] - sumVersion = "v0.0.0-20140226030751-b84e30acd515" - ["github.com/kr/logfmt".fetch] - type = "git" - url = "https://github.com/kr/logfmt" - rev = "b84e30acd515aadc4b783ad4ff83aff3299bdfe0" - sha256 = "02ldzxgznrfdzvghfraslhgp19la1fczcbzh7wm2zdc6lmpd1qq9" - -["github.com/kr/pretty"] - sumVersion = "v0.2.1" - ["github.com/kr/pretty".fetch] - type = "git" - url = "https://github.com/kr/pretty" - rev = "ead452280cd055b2ae8a7f0db5eb37a878d902f7" - sha256 = "0vzfz06y9q8gs2nxx0kys0591vzp78k0fvpb8digi5n15h3b25hy" - -["github.com/kr/pty"] - sumVersion = "v1.1.1" - ["github.com/kr/pty".fetch] - type = "git" - url = "https://github.com/kr/pty" - rev = "282ce0e5322c82529687d609ee670fac7c7d917c" - sha256 = "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6" - -["github.com/kr/text"] - sumVersion = "v0.2.0" - ["github.com/kr/text".fetch] - type = "git" - url = "https://github.com/kr/text" - rev = "702c74938df48b97370179f33ce2107bd7ff3b3e" - sha256 = "0hf58ypz6rxsw6nx3i856whir9lvy4sdx946wbw1nfaf2rdmr9vx" - -["github.com/kulti/thelper"] - sumVersion = "v0.4.0" - ["github.com/kulti/thelper".fetch] - type = "git" - url = "https://github.com/kulti/thelper" - rev = "6eac34022d483a318ef675f812d1d4d3f58df459" - sha256 = "15183z1hzk0vz341972phbzwgpxyn6ch488n3vvaw0iv1bwdan6a" - -["github.com/kunwardeep/paralleltest"] - sumVersion = "v1.0.2" - ["github.com/kunwardeep/paralleltest".fetch] - type = "git" - url = "https://github.com/kunwardeep/paralleltest" - rev = "34f993534440ee1f87656885e81c318831bd8376" - sha256 = "123r434lvbra6vn7j0kaicx4wqnp0frv6ycdfqsnr53n1vnxnk2v" - -["github.com/kylelemons/godebug"] - sumVersion = "v1.1.0" - ["github.com/kylelemons/godebug".fetch] - type = "git" - url = "https://github.com/kylelemons/godebug" - rev = "9ff306d4fbead574800b66369df5b6144732d58e" - sha256 = "0dkk3friykg8p6wgqryx6745ahhb9z1j740k7px9dac6v5xjp78c" - -["github.com/kyoh86/exportloopref"] - sumVersion = "v0.1.8" - ["github.com/kyoh86/exportloopref".fetch] - type = "git" - url = "https://github.com/kyoh86/exportloopref" - rev = "722a3a9d673aef9e42d83ecf99cb72ab7e9e6c67" - sha256 = "00zvdqiwdm8qvn8p6pjygl7vs920171j46qn0cs5fbmmrq42dk89" - -["github.com/ldez/gomoddirectives"] - sumVersion = "v0.2.2" - ["github.com/ldez/gomoddirectives".fetch] - type = "git" - url = "https://github.com/ldez/gomoddirectives" - rev = "bedb342ad1cd24348e76c9a2d10eaaf1c12bf31b" - sha256 = "1ja0mja83fb6ksmxabwrshgn1q0blv8ndywsx0bmhb9li1b0z37f" - -["github.com/ldez/tagliatelle"] - sumVersion = "v0.2.0" - ["github.com/ldez/tagliatelle".fetch] - type = "git" - url = "https://github.com/ldez/tagliatelle" - rev = "1d089379c111a49f55711b38665ed4bec819a521" - sha256 = "0snf2ckjzrhy3izrdr3y4g80ni5x3fb0ny6s012pz35w0cdq7kzz" - -["github.com/leodido/go-urn"] - sumVersion = "v1.2.0" - ["github.com/leodido/go-urn".fetch] - type = "git" - url = "https://github.com/leodido/go-urn" - rev = "a0f5013415294bb94553821ace21a1a74c0298cc" - sha256 = "1d4g1vkhc1180l1n7q48vl84b27c7cziywml78cyijbcdz2f8vim" - -["github.com/letsencrypt/pkcs11key/v4"] - sumVersion = "v4.0.0" - relPath = "v4" - ["github.com/letsencrypt/pkcs11key/v4".fetch] - type = "git" - url = "https://github.com/letsencrypt/pkcs11key" - rev = "c9e453037c675bb913cde3388b43a9828b2b6a1d" - sha256 = "1ynmw2zhsr1m880clc2hgmc53cx6b69wdcjddw9pz0sysddnpb81" - -["github.com/lib/pq"] - sumVersion = "v1.10.2" - ["github.com/lib/pq".fetch] - type = "git" - url = "https://github.com/lib/pq" - rev = "2da6713d67f03911a05b1b6559adc85927fe076e" - sha256 = "0drlr4dx3dzlafx5m9ys9q69hx518pdl279s736k0m3lr9iq9c7r" - -["github.com/libp2p/go-buffer-pool"] - sumVersion = "v0.0.2" - ["github.com/libp2p/go-buffer-pool".fetch] - type = "git" - url = "https://github.com/libp2p/go-buffer-pool" - rev = "c4a5988a1e475884367015e1a2d0bd5fa4c491f4" - sha256 = "01iwby4xq9znlfhcxxvqv03smllsv42j1w3vpqg9n307s3i0pj3m" - -["github.com/lightstep/lightstep-tracer-common/golang/gogo"] - sumVersion = "v0.0.0-20190605223551-bc2310a04743" - relPath = "golang/gogo" - ["github.com/lightstep/lightstep-tracer-common/golang/gogo".fetch] - type = "git" - url = "https://github.com/lightstep/lightstep-tracer-common" - rev = "bc2310a0474352fa2616bdc0a27457b146b136b4" - sha256 = "0j7qycrva0ngf38br0jy9blzjb98ksdfi87b0sb2gnpmsp6sz4l8" - -["github.com/lightstep/lightstep-tracer-go"] - sumVersion = "v0.18.1" - ["github.com/lightstep/lightstep-tracer-go".fetch] - type = "git" - url = "https://github.com/lightstep/lightstep-tracer-go" - rev = "95891af43e111d60f0ae6adaa39c2abe8caad401" - sha256 = "0jfnsv7y11d247xysc61wp8xmgn33fdl17v6g0lxxnklbw41k91y" - -["github.com/logrusorgru/aurora"] - sumVersion = "v0.0.0-20181002194514-a7b3b318ed4e" - ["github.com/logrusorgru/aurora".fetch] - type = "git" - url = "https://github.com/logrusorgru/aurora" - rev = "a7b3b318ed4e1ae5b80602b08627267303c68572" - sha256 = "1dldc270z42zm2d377ks7sa5059janjcjhv3inza3rjvapknsrcb" - -["github.com/lucasjones/reggen"] - sumVersion = "v0.0.0-20180717132126-cdb49ff09d77" - ["github.com/lucasjones/reggen".fetch] - type = "git" - url = "https://github.com/lucasjones/reggen" - rev = "cdb49ff09d77331d3fdd51e862b4023d2257954c" - sha256 = "1cby9n647v4gh11mpz1dfscks8n0cw0rj8d2hjh4q9mky4m7jzl1" - -["github.com/magiconair/properties"] - sumVersion = "v1.8.5" - ["github.com/magiconair/properties".fetch] - type = "git" - url = "https://github.com/magiconair/properties" - rev = "291b8266af1000c77a12ae6d4dde1145a028012f" - sha256 = "0v4agnkhc30fblbmhs0gq2bikhdnnmqmpp4phrnza68m04j5hxbn" - -["github.com/maratori/testpackage"] - sumVersion = "v1.0.1" - ["github.com/maratori/testpackage".fetch] - type = "git" - url = "https://github.com/maratori/testpackage" - rev = "68d85e4e2681860b5e626e5ca29961b340778f1a" - sha256 = "0d40jskxr4s4nxj6qgwynirqxxi194zj63a73z3k528hh8g42zwk" - -["github.com/matoous/godox"] - sumVersion = "v0.0.0-20210227103229-6504466cf951" - ["github.com/matoous/godox".fetch] - type = "git" - url = "https://github.com/matoous/godox" - rev = "6504466cf951eb5e1ae25306e5a31fe3cad56539" - sha256 = "1nyzx5il6q7cw1d4dyw93xsqdwdwhbwvl82cgr0lwaxlxwwg7pfj" - -["github.com/mattn/go-colorable"] - sumVersion = "v0.1.8" - ["github.com/mattn/go-colorable".fetch] - type = "git" - url = "https://github.com/mattn/go-colorable" - rev = "2e1b0c1546e0173c0907cf05c67b8ba29ed8b4d1" - sha256 = "0q34zqwbnls72md8q8mhj368s7p3i4xspvs3rk8fs76s0pn7dr2l" - -["github.com/mattn/go-ieproxy"] - sumVersion = "v0.0.0-20190702010315-6dee0af9227d" - ["github.com/mattn/go-ieproxy".fetch] - type = "git" - url = "https://github.com/mattn/go-ieproxy" - rev = "6dee0af9227d0863f1508ce7937af3396d6605c1" - sha256 = "0kxxxi68wch3rf3iqggiv72fbf0g7s6g8wy7r34ir040j8b7k0ri" - -["github.com/mattn/go-isatty"] - sumVersion = "v0.0.14" - ["github.com/mattn/go-isatty".fetch] - type = "git" - url = "https://github.com/mattn/go-isatty" - rev = "504425e14f742f1f517c4586048b49b37f829c8e" - sha256 = "015zc3j60vb85d7f2al15la24wn45piazxlagqhzrbgfdyqci60z" - -["github.com/mattn/go-runewidth"] - sumVersion = "v0.0.9" - ["github.com/mattn/go-runewidth".fetch] - type = "git" - url = "https://github.com/mattn/go-runewidth" - rev = "14e809f6d78fcf9f48ff9b70981472b64c05f754" - sha256 = "1mvlxcdwr0vwp8b2wqs6y7hk72y28sqh03dz5x0xkg48d4y9cplj" - -["github.com/mattn/go-sqlite3"] - sumVersion = "v1.9.0" - ["github.com/mattn/go-sqlite3".fetch] - type = "git" - url = "https://github.com/mattn/go-sqlite3" - rev = "25ecb14adfc7543176f7d85291ec7dba82c6f7e4" - sha256 = "14vw8bwyaz9lrd1rqhfri5cwpimiimhp75pkbqxxsjsr5jz89s7m" - -["github.com/mattn/goveralls"] - sumVersion = "v0.0.2" - ["github.com/mattn/goveralls".fetch] - type = "git" - url = "https://github.com/mattn/goveralls" - rev = "b71a1e4855f87991aff01c2c833a75a07059c61c" - sha256 = "13ffdikvc594g1mryhi94m87skr7irwkjnpxp8ad2kprn6syfslp" - -["github.com/matttproud/golang_protobuf_extensions"] - sumVersion = "v1.0.1" - ["github.com/matttproud/golang_protobuf_extensions".fetch] - type = "git" - url = "https://github.com/matttproud/golang_protobuf_extensions" - rev = "c12348ce28de40eed0136aa2b644d0ee0650e56c" - sha256 = "1d0c1isd2lk9pnfq2nk0aih356j30k3h1gi2w0ixsivi5csl7jya" - -["github.com/mbilski/exhaustivestruct"] - sumVersion = "v1.2.0" - ["github.com/mbilski/exhaustivestruct".fetch] - type = "git" - url = "https://github.com/mbilski/exhaustivestruct" - rev = "7b602e2b6ff7d66cfd3769edf24486d9d20a1549" - sha256 = "19vzskjmmr3ndm0zgcr00swzmq2dr8v9hb1xdlfhpkb0a7vavdgm" - -["github.com/mgechev/dots"] - sumVersion = "v0.0.0-20190921121421-c36f7dcfbb81" - ["github.com/mgechev/dots".fetch] - type = "git" - url = "https://github.com/mgechev/dots" - rev = "c36f7dcfbb81d2220bbddabf29c757c861c3e4d8" - sha256 = "1i22mz4fca4w9fvzay3p95hpz60gb96pns5rq359g037mvk0w1jx" - -["github.com/mgechev/revive"] - sumVersion = "v1.1.1" - ["github.com/mgechev/revive".fetch] - type = "git" - url = "https://github.com/mgechev/revive" - rev = "18cdb55850ae667e1136cf5c2749fab98a911c5b" - sha256 = "126wwcgbnpq7as72ywlzmkvdy5ylxzm1wv6r7nskllrj61h315mf" - -["github.com/miekg/dns"] - sumVersion = "v1.1.35" - ["github.com/miekg/dns".fetch] - type = "git" - url = "https://github.com/miekg/dns" - rev = "3b41a3134255be803026472cbb980adec17193c2" - sha256 = "111rkqjwgkpbnyas68hw8nxx3ik8afay1a0p1k0lz6spf9ijh3qm" - -["github.com/miekg/pkcs11"] - sumVersion = "v1.0.3" - ["github.com/miekg/pkcs11".fetch] - type = "git" - url = "https://github.com/miekg/pkcs11" - rev = "210dc1e16747c5ba98a03bcbcf728c38086ea357" - sha256 = "0rmmgssb6y28x54si5h63gwbdsjjxf5n9xvm3zqdfsf9l10gx2m6" - -["github.com/mimoo/StrobeGo"] - sumVersion = "v0.0.0-20181016162300-f8f6d4d2b643" - ["github.com/mimoo/StrobeGo".fetch] - type = "git" - url = "https://github.com/mimoo/StrobeGo" - rev = "f8f6d4d2b6435f46148e8a6dc2248939893f3ece" - sha256 = "1lgxh3p6aqfc049wn3kz1mj9prm4mqpa9m01p27ph8iw5ry5c7la" - -["github.com/minio/highwayhash"] - sumVersion = "v1.0.1" - ["github.com/minio/highwayhash".fetch] - type = "git" - url = "https://github.com/minio/highwayhash" - rev = "86a2a969d04373bf05ca722517d30fb1c9a3e4f9" - sha256 = "0kj2hs82sphag0h25xvprvf2fz3zlinmlif89sk9jp8h518aiahf" - -["github.com/mitchellh/cli"] - sumVersion = "v1.0.0" - ["github.com/mitchellh/cli".fetch] - type = "git" - url = "https://github.com/mitchellh/cli" - rev = "3d22a244be8aa6fb16ac24af0e195c08b7d973aa" - sha256 = "1i9kmr7rcf10d2hji8h4247hmc0nbairv7a0q51393aw2h1bnwg2" - -["github.com/mitchellh/copystructure"] - sumVersion = "v1.0.0" - ["github.com/mitchellh/copystructure".fetch] - type = "git" - url = "https://github.com/mitchellh/copystructure" - rev = "9a1b6f44e8da0e0e374624fb0a825a231b00c537" - sha256 = "05njg92w1088v4yl0js0zdrpfq6k37i9j14mxkr3p90p5yd9rrrr" - -["github.com/mitchellh/go-homedir"] - sumVersion = "v1.1.0" - ["github.com/mitchellh/go-homedir".fetch] - type = "git" - url = "https://github.com/mitchellh/go-homedir" - rev = "af06845cf3004701891bf4fdb884bfe4920b3727" - sha256 = "0ydzkipf28hwj2bfxqmwlww47khyk6d152xax4bnyh60f4lq3nx1" - -["github.com/mitchellh/go-ps"] - sumVersion = "v1.0.0" - ["github.com/mitchellh/go-ps".fetch] - type = "git" - url = "https://github.com/mitchellh/go-ps" - rev = "147ff83818ae939913b2e20b91ae3cd6c391771c" - sha256 = "0ipcbz66x7q8xczi7cyfq06y7n7v0syvkp730vn9jrn7s8f5ag0z" - -["github.com/mitchellh/go-testing-interface"] - sumVersion = "v1.0.0" - ["github.com/mitchellh/go-testing-interface".fetch] - type = "git" - url = "https://github.com/mitchellh/go-testing-interface" - rev = "6d0b8010fcc857872e42fc6c931227569016843c" - sha256 = "1dl2js8di858bawg7dadlf1qjpkl2g3apziihjyf5imri3znyfpw" - -["github.com/mitchellh/gox"] - sumVersion = "v0.4.0" - ["github.com/mitchellh/gox".fetch] - type = "git" - url = "https://github.com/mitchellh/gox" - rev = "c9740af9c6574448fd48eb30a71f964014c7a837" - sha256 = "1q4fdkw904mrmh1q5z8pfd3r0gcn5dm776kldqawddy93iiwnp8r" - -["github.com/mitchellh/iochan"] - sumVersion = "v1.0.0" - ["github.com/mitchellh/iochan".fetch] - type = "git" - url = "https://github.com/mitchellh/iochan" - rev = "b6e3aadd28864e14dae41ff5c7261455b1242d24" - sha256 = "058n9bbf536f2nw3pbs7pysrg9cqvgkb28z2zf5wjyrzrknyk53g" - -["github.com/mitchellh/mapstructure"] - sumVersion = "v1.4.2" - ["github.com/mitchellh/mapstructure".fetch] - type = "git" - url = "https://github.com/mitchellh/mapstructure" - rev = "5ac1f6aa4011ece0c4df24a4fe8020a9cc21e393" - sha256 = "0akjnwsng42vak978pny84d946fbaj2kgp7fzvx30zpc6fzrmli7" - -["github.com/mitchellh/reflectwalk"] - sumVersion = "v1.0.1" - ["github.com/mitchellh/reflectwalk".fetch] - type = "git" - url = "https://github.com/mitchellh/reflectwalk" - rev = "3e2c75dfad4fbf904b58782a80fd595c760ad185" - sha256 = "0pa6a3nhzwv5s5yqcmsmsfhdp5ggxsg2wa86f3akawxrhrkjarnx" - -["github.com/moby/sys/mountinfo"] - sumVersion = "v0.4.1" - relPath = "mountinfo" - ["github.com/moby/sys/mountinfo".fetch] - type = "git" - url = "https://github.com/moby/sys" - rev = "b0f1fd7235275d01bd35cc4421e884e522395f45" - sha256 = "1svicfa0gyq8fcbsl475gpr0y5rgv0389d9yq6hzwz2acrdxyxm2" - -["github.com/modern-go/concurrent"] - sumVersion = "v0.0.0-20180306012644-bacd9c7ef1dd" - ["github.com/modern-go/concurrent".fetch] - type = "git" - url = "https://github.com/modern-go/concurrent" - rev = "bacd9c7ef1dd9b15be4a9909b8ac7a4e313eec94" - sha256 = "0s0fxccsyb8icjmiym5k7prcqx36hvgdwl588y0491gi18k5i4zs" - -["github.com/modern-go/reflect2"] - sumVersion = "v1.0.1" - ["github.com/modern-go/reflect2".fetch] - type = "git" - url = "https://github.com/modern-go/reflect2" - rev = "94122c33edd36123c84d5368cfb2b69df93a0ec8" - sha256 = "06a3sablw53n1dqqbr2f53jyksbxdmmk8axaas4yvnhyfi55k4lf" - -["github.com/mohae/deepcopy"] - sumVersion = "v0.0.0-20170929034955-c48cc78d4826" - ["github.com/mohae/deepcopy".fetch] - type = "git" - url = "https://github.com/mohae/deepcopy" - rev = "c48cc78d482608239f6c4c92a4abd87eb8761c90" - sha256 = "0jdhsz0hsbn0k45rmvm39knbvs024j24ay2q65k5ih8ql8m2c0sd" - -["github.com/moricho/tparallel"] - sumVersion = "v0.2.1" - ["github.com/moricho/tparallel".fetch] - type = "git" - url = "https://github.com/moricho/tparallel" - rev = "88fabab33096f28b37d2734e30c9202ac923a59a" - sha256 = "15ab3vkby29dd004agzdg2rn2hkn13mi793yb0wbadcrn9ra5zbj" - -["github.com/mozilla/scribe"] - sumVersion = "v0.0.0-20180711195314-fb71baf557c1" - ["github.com/mozilla/scribe".fetch] - type = "git" - url = "https://github.com/mozilla/scribe" - rev = "fb71baf557c1eb06ddd77ee832c927e488dc34a2" - sha256 = "1fyl5x7zam2ffjnfl4bmmxfqm8kp0ymy1c2x27fc9sx02qdf5d1b" - -["github.com/mozilla/tls-observatory"] - sumVersion = "v0.0.0-20210609171429-7bc42856d2e5" - ["github.com/mozilla/tls-observatory".fetch] - type = "git" - url = "https://github.com/mozilla/tls-observatory" - rev = "7bc42856d2e5594614b56c2f55baf42bb9751b3d" - sha256 = "1dgyyakx9x9f8gllzavndn8vi2vnqzpfsx1hk3yxmhx1433lwb6x" - -["github.com/mrunalp/fileutils"] - sumVersion = "v0.5.0" - ["github.com/mrunalp/fileutils".fetch] - type = "git" - url = "https://github.com/mrunalp/fileutils" - rev = "d7fdd64cc1cabe10bc154ee7d2318b07b7f296ef" - sha256 = "1zrs959gf4zgi6ijwkdn4dcqk0svfblpaikkqy63q30rqz4swm0x" - -["github.com/mtibben/percent"] - sumVersion = "v0.2.1" - ["github.com/mtibben/percent".fetch] - type = "git" - url = "https://github.com/mtibben/percent" - rev = "07b18b68c1413ce9f8137a8cbd4509fac9e15f0c" - sha256 = "1iqivw8pigj259rj5yifibbvic70f9hb7k24a4sa967s4fj6agb6" - -["github.com/mwitkow/go-conntrack"] - sumVersion = "v0.0.0-20190716064945-2f068394615f" - ["github.com/mwitkow/go-conntrack".fetch] - type = "git" - url = "https://github.com/mwitkow/go-conntrack" - rev = "2f068394615f73e460c2f3d2c158b0ad9321cadb" - sha256 = "0ymjmy12ks7smgwmrwsa5kf07d9w5kpk1dn650azlzr61b561aw7" - -["github.com/mwitkow/go-proto-validators"] - sumVersion = "v0.2.0" - ["github.com/mwitkow/go-proto-validators".fetch] - type = "git" - url = "https://github.com/mwitkow/go-proto-validators" - rev = "d70d97bb65387105677cb21cee7318e4feb7b4b0" - sha256 = "159mf14bs9a07hmiz8j9198bi3za8k4mzc5qc9slj8dhs9a5nczg" - -["github.com/mwitkow/grpc-proxy"] - sumVersion = "v0.0.0-20181017164139-0f1106ef9c76" - ["github.com/mwitkow/grpc-proxy".fetch] - type = "git" - url = "https://github.com/mwitkow/grpc-proxy" - rev = "0f1106ef9c766333b9acb4b81e705da4bade7215" - sha256 = "087kid1xiaxnhdhljcm1587cgiiwr0iznk931znkrz3f4gdjyqa2" - -["github.com/nakabonne/nestif"] - sumVersion = "v0.3.0" - ["github.com/nakabonne/nestif".fetch] - type = "git" - url = "https://github.com/nakabonne/nestif" - rev = "88e8196e5faa6b1eeac0c2e39b4b1c615ba9330a" - sha256 = "01lf3bpif68m97sgr8a06apnf7vzbwi657cg4dcqa0dzh9v1yy6l" - -["github.com/naoina/go-stringutil"] - sumVersion = "v0.1.0" - ["github.com/naoina/go-stringutil".fetch] - type = "git" - url = "https://github.com/naoina/go-stringutil" - rev = "6b638e95a32d0c1131db0e7fe83775cbea4a0d0b" - sha256 = "00831p1wn3rimybk1z8l30787kn1akv5jax5wx743nn76qcmkmc6" - -["github.com/naoina/toml"] - sumVersion = "v0.1.2-0.20170918210437-9fafd6967416" - ["github.com/naoina/toml".fetch] - type = "git" - url = "https://github.com/naoina/toml" - rev = "9fafd69674167c06933b1787ae235618431ce87f" - sha256 = "0mpvdnidgab48k7dfq1vaiz1wny8n29y7zxpipnp1zm8ibxpism0" - -["github.com/nats-io/jwt"] - sumVersion = "v0.3.2" - ["github.com/nats-io/jwt".fetch] - type = "git" - url = "https://github.com/nats-io/jwt" - rev = "0c3fc7aed8bb2534e7bfdf0968a75890402d48cd" - sha256 = "0n44ghpz6hnbd2i074ikrj72rd2vnxpg1g3nhv1ly1kr0832khx6" - -["github.com/nats-io/nats-server/v2"] - sumVersion = "v2.1.2" - ["github.com/nats-io/nats-server/v2".fetch] - type = "git" - url = "https://github.com/nats-io/nats-server" - rev = "679bedafd96f85ddfa56a4d5736517c18842047a" - sha256 = "1jxi6d0zbhisxprlynvqw3dl1lz4wwxiy9gnpaqrwx1yi3kvvg62" - -["github.com/nats-io/nats.go"] - sumVersion = "v1.9.1" - ["github.com/nats-io/nats.go".fetch] - type = "git" - url = "https://github.com/nats-io/nats.go" - rev = "6063d679d23ae5b3edb4030d5e89a6e30ea53bc6" - sha256 = "0mmbwri2k2c8q1w0fr0g5s81709lfr6wyarvaf3gibc7cig10pij" - -["github.com/nats-io/nkeys"] - sumVersion = "v0.1.3" - ["github.com/nats-io/nkeys".fetch] - type = "git" - url = "https://github.com/nats-io/nkeys" - rev = "f1930e19b436412202ab130a733187cc6f40ba7e" - sha256 = "1fip0bja471mavvp67bninpd24jviwpnh7w99kchyiy27lbxy4hp" - -["github.com/nats-io/nuid"] - sumVersion = "v1.0.1" - ["github.com/nats-io/nuid".fetch] - type = "git" - url = "https://github.com/nats-io/nuid" - rev = "4b96681fa6d28dd0ab5fe79bac63b3a493d9ee94" - sha256 = "11zbhg4kds5idsya04bwz4plj0mmiigypzppzih731ppbk2ms1zg" - -["github.com/nbutton23/zxcvbn-go"] - sumVersion = "v0.0.0-20210217022336-fa2cb2858354" - ["github.com/nbutton23/zxcvbn-go".fetch] - type = "git" - url = "https://github.com/nbutton23/zxcvbn-go" - rev = "fa2cb2858354d539804173893953569804ed418e" - sha256 = "026f5y0lprk61f3k4ld7l0hdqa8wpmvg202kj1gbfw8vjmv2kmwa" - -["github.com/neilotoole/errgroup"] - sumVersion = "v0.1.5" - ["github.com/neilotoole/errgroup".fetch] - type = "git" - url = "https://github.com/neilotoole/errgroup" - rev = "1b5ee5ba6837fe62f5c9f2275033db8ec84de004" - sha256 = "0jk0ws9cxdiicfd4w7mpvfgsx4fabgpjhyl8jwbqnzpq2w0pgk6p" - -["github.com/niemeyer/pretty"] - sumVersion = "v0.0.0-20200227124842-a10e7caefd8e" - ["github.com/niemeyer/pretty".fetch] - type = "git" - url = "https://github.com/niemeyer/pretty" - rev = "a10e7caefd8e0d600cea437f5c3613aeb1553d56" - sha256 = "1jmazh4xzaa3v6g46hz60q2z7nmqs9l9cxdzmmscn3kbcs2znq4v" - -["github.com/nishanths/exhaustive"] - sumVersion = "v0.2.3" - ["github.com/nishanths/exhaustive".fetch] - type = "git" - url = "https://github.com/nishanths/exhaustive" - rev = "8e9e266c28907bb734455b4eba68a1322c19c11e" - sha256 = "0xqx37p8jkk19jqxarjyscwm27f263i0kjcjy8xv78i39rnz3jal" - -["github.com/nishanths/predeclared"] - sumVersion = "v0.2.1" - ["github.com/nishanths/predeclared".fetch] - type = "git" - url = "https://github.com/nishanths/predeclared" - rev = "9533edc13e0840594ced336563bc73ff1a0bdf50" - sha256 = "0rr8h4wnz3g6hlkrwkaz3c4q744j0snf3b2aa6gjm57gkka2zhnc" - -["github.com/nxadm/tail"] - sumVersion = "v1.4.8" - ["github.com/nxadm/tail".fetch] - type = "git" - url = "https://github.com/nxadm/tail" - rev = "abad231d8d07ef91e09cd4c4c457cac35ed3bbb9" - sha256 = "1j2gi485fhwdpmyzn42wk62103fclwbfywg42p275z1qv2bsz1rc" - -["github.com/oklog/oklog"] - sumVersion = "v0.3.2" - ["github.com/oklog/oklog".fetch] - type = "git" - url = "https://github.com/oklog/oklog" - rev = "e3ad1c411c27b4bc18c5facb9331820d141a5a54" - sha256 = "1xnjxhgi0zm51skl533la50h133a245i57wqa3h7fr2lv2jqpzny" - -["github.com/oklog/run"] - sumVersion = "v1.0.0" - ["github.com/oklog/run".fetch] - type = "git" - url = "https://github.com/oklog/run" - rev = "4dadeb3030eda0273a12382bb2348ffc7c9d1a39" - sha256 = "1pbjza4claaj95fpqvvfrysvs10y7dm0pl6qr5lzh6qy1vnhmcgw" - -["github.com/oklog/ulid"] - sumVersion = "v1.3.1" - ["github.com/oklog/ulid".fetch] - type = "git" - url = "https://github.com/oklog/ulid" - rev = "02a8604050d8466dd915307496174adb9be4593a" - sha256 = "0hybwyid820n80axrk863k2py93hbqlq6hxhf84ppmz0qd0ys0gq" - -["github.com/olekukonko/tablewriter"] - sumVersion = "v0.0.5" - ["github.com/olekukonko/tablewriter".fetch] - type = "git" - url = "https://github.com/olekukonko/tablewriter" - rev = "c7d2a8a09b076b70918308a3cd95464b2ae3b5d8" - sha256 = "0zhnrih2px6jm8nxzkz8s7va3lj03bzwxim8wjba9zh7i78bp67z" - -["github.com/onsi/ginkgo"] - sumVersion = "v1.16.4" - ["github.com/onsi/ginkgo".fetch] - type = "git" - url = "https://github.com/onsi/ginkgo" - rev = "d125cd027fee341b3b3d65858a4121cf4931fead" - sha256 = "0rpzh0vg2k33szcq17rdwjvj3q6djp7vqfvasck40gsibadimnd7" - -["github.com/onsi/gomega"] - sumVersion = "v1.13.0" - ["github.com/onsi/gomega".fetch] - type = "git" - url = "https://github.com/onsi/gomega" - rev = "dbc6ecdcc526d81592dab902de6cbaf7be9a8a13" - sha256 = "1x49qblj010z4xvfj7c4jh9q9awrkvbwnfrglvbh30gglmmsss8g" - -["github.com/op/go-logging"] - sumVersion = "v0.0.0-20160315200505-970db520ece7" - ["github.com/op/go-logging".fetch] - type = "git" - url = "https://github.com/op/go-logging" - rev = "970db520ece77730c7e4724c61121037378659d9" - sha256 = "1cpna2x5l071z1vrnk7zipdkka8dzwsjyx7m79xk0lr08rip0kcj" - -["github.com/opencontainers/go-digest"] - sumVersion = "v1.0.0" - ["github.com/opencontainers/go-digest".fetch] - type = "git" - url = "https://github.com/opencontainers/go-digest" - rev = "ea51bea511f75cfa3ef6098cc253c5c3609b037a" - sha256 = "0i5acjajvr6hi9zb7gxwifd8w28y884cv7cx36adj8lngj647xbi" - -["github.com/opencontainers/image-spec"] - sumVersion = "v1.0.1" - ["github.com/opencontainers/image-spec".fetch] - type = "git" - url = "https://github.com/opencontainers/image-spec" - rev = "d60099175f88c47cd379c4738d158884749ed235" - sha256 = "03dvbj3dln8c55v9gp79mgmz2yi2ws3r08iyz2fk41y3i22iaw1q" - -["github.com/opencontainers/runc"] - sumVersion = "v1.0.2" - ["github.com/opencontainers/runc".fetch] - type = "git" - url = "https://github.com/opencontainers/runc" - rev = "52b36a2dd837e8462de8e01458bf02cf9eea47dd" - sha256 = "1bpckghjah0rczciw1a1ab8z718lb2d3k4mjm4zb45lpm3njmrcp" - -["github.com/opencontainers/runtime-spec"] - sumVersion = "v1.0.3-0.20210326190908-1c3f411f0417" - ["github.com/opencontainers/runtime-spec".fetch] - type = "git" - url = "https://github.com/opencontainers/runtime-spec" - rev = "1c3f411f041711bbeecf35ff7e93461ea6789220" - sha256 = "1azk8z41ga8af35c966f06vrq9y9hwz6mkm59r3py5qaamzim3qq" - -["github.com/opencontainers/selinux"] - sumVersion = "v1.8.2" - ["github.com/opencontainers/selinux".fetch] - type = "git" - url = "https://github.com/opencontainers/selinux" - rev = "76bc82e11d854d3e40c08889d13c98abcea72ea2" - sha256 = "1dl1h8nzpyhsfki1dcjphm5h4n52qwilahyl6qlnwgzcc76pwizq" - -["github.com/opentracing-contrib/go-observer"] - sumVersion = "v0.0.0-20170622124052-a52f23424492" - ["github.com/opentracing-contrib/go-observer".fetch] - type = "git" - url = "https://github.com/opentracing-contrib/go-observer" - rev = "a52f2342449246d5bcc273e65cbdcfa5f7d6c63c" - sha256 = "1q7z458m2vh3bzml4x9vm2paffqn1jcgiydbisl0zg2asfniq7k3" - -["github.com/opentracing/basictracer-go"] - sumVersion = "v1.0.0" - ["github.com/opentracing/basictracer-go".fetch] - type = "git" - url = "https://github.com/opentracing/basictracer-go" - rev = "1b32af207119a14b1b231d451df3ed04a72efebf" - sha256 = "0hs969asib4yqj5k755zr0byz2iqvjbs6z1szcnr50q6fihigca0" - -["github.com/opentracing/opentracing-go"] - sumVersion = "v1.1.0" - ["github.com/opentracing/opentracing-go".fetch] - type = "git" - url = "https://github.com/opentracing/opentracing-go" - rev = "659c90643e714681897ec2521c60567dd21da733" - sha256 = "0aj9cbm21zsg1i5l25hz8gn0yf99yxyxcp1gqh3yd5g4knj2cgzf" - -["github.com/openzipkin-contrib/zipkin-go-opentracing"] - sumVersion = "v0.4.5" - ["github.com/openzipkin-contrib/zipkin-go-opentracing".fetch] - type = "git" - url = "https://github.com/openzipkin-contrib/zipkin-go-opentracing" - rev = "223664cff43dfd9f54659ff15dc4bd6e023d0c14" - sha256 = "0mdvx50mw17c926rhhkjg8z54v8h0jvnqahdlpij2kbxi3ncgr7q" - -["github.com/openzipkin/zipkin-go"] - sumVersion = "v0.2.2" - ["github.com/openzipkin/zipkin-go".fetch] - type = "git" - url = "https://github.com/openzipkin/zipkin-go" - rev = "c29478e51bfb2e9c93e0e9f5e015e5993a490399" - sha256 = "18c884anq0pkahmjwyhrdg247wyq33ccxp5k7fcq5gzh8g6dj92s" - -["github.com/ory/dockertest"] - sumVersion = "v3.3.5+incompatible" - ["github.com/ory/dockertest".fetch] - type = "git" - url = "https://github.com/ory/dockertest" - rev = "2b0896a948c60f3207381d9fc259d0fc13227c30" - sha256 = "0fgj60l82sl6chd7i4s7lxqjr9hxkzmkaxnc8h6qbvn42246sy68" - -["github.com/otiai10/copy"] - sumVersion = "v1.6.0" - ["github.com/otiai10/copy".fetch] - type = "git" - url = "https://github.com/otiai10/copy" - rev = "edeb9f37d4d0c28725014fcab6635120197932a1" - sha256 = "1l84qx9n464nh1izgr1kx5xb1ab878b2x803fck0w9gy1bwch25h" - -["github.com/otiai10/curr"] - sumVersion = "v1.0.0" - ["github.com/otiai10/curr".fetch] - type = "git" - url = "https://github.com/otiai10/curr" - rev = "88e2f2cffa0b5f13e90ee963a321bd1b2f715561" - sha256 = "0fpw20adq2wff7l4c87zaavj9jra4d64a8bbjixiiv3bbarim987" - -["github.com/otiai10/mint"] - sumVersion = "v1.3.2" - ["github.com/otiai10/mint".fetch] - type = "git" - url = "https://github.com/otiai10/mint" - rev = "3588d691480a831b1e78b776d3bccd9d5ce6461c" - sha256 = "0448nkhmp1ny64g2d7m5x8inz118zj03j6q0b97q3dszzs7hhan4" - -["github.com/pact-foundation/pact-go"] - sumVersion = "v1.0.4" - ["github.com/pact-foundation/pact-go".fetch] - type = "git" - url = "https://github.com/pact-foundation/pact-go" - rev = "3ce08c8af46b7bc33a06efc9b8807c08806c8af2" - sha256 = "08mnyf1yb6zjqfzs1pdh44drv390lfilhh4vi4asnjk52gknqfn0" - -["github.com/pascaldekloe/goe"] - sumVersion = "v0.1.0" - ["github.com/pascaldekloe/goe".fetch] - type = "git" - url = "https://github.com/pascaldekloe/goe" - rev = "57f6aae5913c64c9bcae5dbdffd33365b5a7f138" - sha256 = "1dqd3mfb4z2vmv6pg6fhgvfc53vhndk24wcl9lj1rz02n6m279fq" - -["github.com/pborman/uuid"] - sumVersion = "v1.2.0" - ["github.com/pborman/uuid".fetch] - type = "git" - url = "https://github.com/pborman/uuid" - rev = "8b1b92947f46224e3b97bb1a3a5b0382be00d31e" - sha256 = "0f146yjqwx2mr110kl8scjhqd08hys7vr5z0d0a3lskb6yy22gfg" - -["github.com/pelletier/go-toml"] - sumVersion = "v1.9.4" - ["github.com/pelletier/go-toml".fetch] - type = "git" - url = "https://github.com/pelletier/go-toml" - rev = "b8ba995eaaba4be30c8a8090bdfb4aa61af52054" - sha256 = "0f2d9m19dadl18i2baf57xygvn9vprm6wb8chvpx8kipx94nchyl" - -["github.com/performancecopilot/speed"] - sumVersion = "v3.0.0+incompatible" - ["github.com/performancecopilot/speed".fetch] - type = "git" - url = "https://github.com/performancecopilot/speed" - rev = "839069a3ed70162d3bcefb9891c8ca852d877c1c" - sha256 = "1r0l6i80xkx9dcysa7ajvs5ypqkw2k0422k0hbz28fizaq9d8y0m" - -["github.com/peterbourgon/diskv"] - sumVersion = "v2.0.1+incompatible" - ["github.com/peterbourgon/diskv".fetch] - type = "git" - url = "https://github.com/peterbourgon/diskv" - rev = "5f041e8faa004a95c88a202771f4cc3e991971e6" - sha256 = "1mxpa5aad08x30qcbffzk80g9540wvbca4blc1r2qyzl65b8929b" - -["github.com/peterh/liner"] - sumVersion = "v1.1.1-0.20190123174540-a2c9a5303de7" - ["github.com/peterh/liner".fetch] - type = "git" - url = "https://github.com/peterh/liner" - rev = "a2c9a5303de792c7581a3b80a8f10258319bb20e" - sha256 = "1cxpr92adcyv4bimswkfg3cmpmk71zq9gpyckhc64j2p4r4mb8zr" - -["github.com/petermattis/goid"] - sumVersion = "v0.0.0-20180202154549-b0b1615b78e5" - ["github.com/petermattis/goid".fetch] - type = "git" - url = "https://github.com/petermattis/goid" - rev = "b0b1615b78e5ee59739545bb38426383b2cda4c9" - sha256 = "0ghfxn045r0bbn2vszw897lxzmhnm4k59aypjvpxl0pbzsw9ab2c" - -["github.com/phayes/checkstyle"] - sumVersion = "v0.0.0-20170904204023-bfd46e6a821d" - ["github.com/phayes/checkstyle".fetch] - type = "git" - url = "https://github.com/phayes/checkstyle" - rev = "bfd46e6a821d07762e664fb4fdde8bb90bb3668c" - sha256 = "0bdfvgvm8gnrxdndnbvwcfjijxyn4c9xcmd11w5bbaz05c40dshx" - -["github.com/pierrec/lz4"] - sumVersion = "v2.0.5+incompatible" - ["github.com/pierrec/lz4".fetch] - type = "git" - url = "https://github.com/pierrec/lz4" - rev = "ea731401f5c95a8ba30f15787e5e0fb77c60c66b" - sha256 = "0y5rh7z01zycd59nnjpkqq0ydyjmcg9j1xw15q1i600l9j9g617p" - -["github.com/pkg/errors"] - sumVersion = "v0.9.1" - ["github.com/pkg/errors".fetch] - type = "git" - url = "https://github.com/pkg/errors" - rev = "614d223910a179a466c1767a985424175c39b465" - sha256 = "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq" - -["github.com/pkg/profile"] - sumVersion = "v1.2.1" - ["github.com/pkg/profile".fetch] - type = "git" - url = "https://github.com/pkg/profile" - rev = "5b67d428864e92711fcbd2f8629456121a56d91f" - sha256 = "0blqmvgqvdbqmh3fp9pfdxc9w1qfshrr0zy9whj0sn372bw64qnr" - -["github.com/pkg/sftp"] - sumVersion = "v1.10.1" - ["github.com/pkg/sftp".fetch] - type = "git" - url = "https://github.com/pkg/sftp" - rev = "3edd153f213d8d4191a0ee4577c61cca19436632" - sha256 = "0iw6lijdljwh5xw5hsy0b578cr52h6vvm7hbnzlrvciwhh4sfhhp" - -["github.com/pmezard/go-difflib"] - sumVersion = "v1.0.0" - ["github.com/pmezard/go-difflib".fetch] - type = "git" - url = "https://github.com/pmezard/go-difflib" - rev = "792786c7400a136282c1664665ae0a8db921c6c2" - sha256 = "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw" - -["github.com/polyfloyd/go-errorlint"] - sumVersion = "v0.0.0-20210722154253-910bb7978349" - ["github.com/polyfloyd/go-errorlint".fetch] - type = "git" - url = "https://github.com/polyfloyd/go-errorlint" - rev = "910bb7978349f0c57ba0b49eee6426a312eb9dfd" - sha256 = "18w78ah0fz9vy136ks42ys2pmibjmanw98sx7s6hhhrx1sdij983" - -["github.com/posener/complete"] - sumVersion = "v1.1.1" - ["github.com/posener/complete".fetch] - type = "git" - url = "https://github.com/posener/complete" - rev = "98eb9847f27ba2008d380a32c98be474dea55bdf" - sha256 = "1nbdiybjizbaxbf5q0xwbq0cjqw4bl6jggvsjzrpif0w86fcjda2" - -["github.com/prometheus/client_golang"] - sumVersion = "v1.11.0" - ["github.com/prometheus/client_golang".fetch] - type = "git" - url = "https://github.com/prometheus/client_golang" - rev = "8184d76b3b0bd3b01ed903690431ccb6826bf3e0" - sha256 = "1xdspykw6wgp0bv7s1r7gklvhr5jfmi59n8bg8zhy3vi0yi902y3" - -["github.com/prometheus/client_model"] - sumVersion = "v0.2.0" - ["github.com/prometheus/client_model".fetch] - type = "git" - url = "https://github.com/prometheus/client_model" - rev = "7bc5445566f0fe75b15de23e6b93886e982d7bf9" - sha256 = "0jffnz94d6ff39fr96b5w8i8yk26pwnrfggzz8jhi8k0yihg2c9d" - -["github.com/prometheus/common"] - sumVersion = "v0.29.0" - ["github.com/prometheus/common".fetch] - type = "git" - url = "https://github.com/prometheus/common" - rev = "8281fb2779ab057c7d90fec6b24ce8eb29edcc13" - sha256 = "09zavm3005skf5mgkr2xndpcga2m3zpm4iq2r7kwyqc5q0cpq02m" - -["github.com/prometheus/procfs"] - sumVersion = "v0.6.0" - ["github.com/prometheus/procfs".fetch] - type = "git" - url = "https://github.com/prometheus/procfs" - rev = "e971af51d579a49db14657a96eebec39cefb4755" - sha256 = "0czzw37dq0sfq7rivxmxxw5hy287grqnng6q6hfz6mkqmhqgm1m6" - -["github.com/prometheus/tsdb"] - sumVersion = "v0.7.1" - ["github.com/prometheus/tsdb".fetch] - type = "git" - url = "https://github.com/prometheus/tsdb" - rev = "c20450564cc42983bf923c13f3fda42de709ac13" - sha256 = "1c1da8i5byvhh4fp3vqjfb65aaksjskn3ggb8wg9hcfzjrhgpz04" - -["github.com/pseudomuto/protoc-gen-doc"] - sumVersion = "v1.3.2" - ["github.com/pseudomuto/protoc-gen-doc".fetch] - type = "git" - url = "https://github.com/pseudomuto/protoc-gen-doc" - rev = "56ed70214364d41f78e82050ac2a4e620aa5cbd1" - sha256 = "0hwl0fh9c3g0z784cr4d22v03nlkxvwg36cisgvjzpif4i8kwf4b" - -["github.com/pseudomuto/protokit"] - sumVersion = "v0.2.0" - ["github.com/pseudomuto/protokit".fetch] - type = "git" - url = "https://github.com/pseudomuto/protokit" - rev = "c63c13958542d70af1d1ef7826d30b25cd5bf6e9" - sha256 = "14l1y989136xmbp5vigr41r594hh9h1nfx8bl5gkjrk585akrmmr" - -["github.com/quasilyte/go-consistent"] - sumVersion = "v0.0.0-20190521200055-c6f3937de18c" - ["github.com/quasilyte/go-consistent".fetch] - type = "git" - url = "https://github.com/quasilyte/go-consistent" - rev = "c6f3937de18cf505dce778903e72b1a57948edcc" - sha256 = "1x0bg7nvqdcgl30z59sil2ildj2kng44v19y2c98kqgiy804q4f0" - -["github.com/quasilyte/go-ruleguard"] - sumVersion = "v0.3.4" - ["github.com/quasilyte/go-ruleguard".fetch] - type = "git" - url = "https://github.com/quasilyte/go-ruleguard" - rev = "211cfa6c95567fa7944a0dcd9c2db87c30fb6eba" - sha256 = "0fd5w7l2wmspgi6x8wcdhc6fg5j5y87pg5lxwgbv8b4k0gid6min" - -["github.com/quasilyte/go-ruleguard/dsl"] - sumVersion = "v0.3.2" - relPath = "dsl" - ["github.com/quasilyte/go-ruleguard/dsl".fetch] - type = "git" - url = "https://github.com/quasilyte/go-ruleguard" - rev = "bce90d218dc80709015c147aa60a9f8f8987725e" - sha256 = "1m5b2x82z1z3jxgxcvx233nwg44vq7fsjz0v0arx08hch9b98qkc" - -["github.com/quasilyte/go-ruleguard/rules"] - sumVersion = "v0.0.0-20210203162857-b223e0831f88" - relPath = "rules" - ["github.com/quasilyte/go-ruleguard/rules".fetch] - type = "git" - url = "https://github.com/quasilyte/go-ruleguard" - rev = "b223e0831f880a3f9dd9fc284d811c0d642895e2" - sha256 = "0im4ci6kwfa3smdy3dwm3w86jv3rlz6ck0yv02v4882a0gxigjm5" - -["github.com/quasilyte/regex/syntax"] - sumVersion = "v0.0.0-20200407221936-30656e2c4a95" - relPath = "syntax" - ["github.com/quasilyte/regex/syntax".fetch] - type = "git" - url = "https://github.com/quasilyte/regex" - rev = "30656e2c4a955b410d658e04b5b9cd44d03d735b" - sha256 = "02kqr5zqxmqys6ncrz9zk5hcmxqxabnfy8kf0nhd306z55bv02b1" - -["github.com/rakyll/statik"] - sumVersion = "v0.1.7" - ["github.com/rakyll/statik".fetch] - type = "git" - url = "https://github.com/rakyll/statik" - rev = "46bd79c4540341fe472fe71dd2ce0ccd4e635450" - sha256 = "0y0kbzma55vmyqhyrw9ssgvxn6nw7d0zg72a7nz8vp1zly4hs6va" - -["github.com/rcrowley/go-metrics"] - sumVersion = "v0.0.0-20200313005456-10cdbea86bc0" - ["github.com/rcrowley/go-metrics".fetch] - type = "git" - url = "https://github.com/rcrowley/go-metrics" - rev = "10cdbea86bc0b922507ce91d43f4f78a5bea2e8f" - sha256 = "157rfn5kf1mdn65gay38zpv6zam3sfa5a3zkx9wxk77y7w3kam19" - -["github.com/regen-network/cosmos-proto"] - sumVersion = "v0.3.1" - ["github.com/regen-network/cosmos-proto".fetch] - type = "git" - url = "https://github.com/regen-network/cosmos-proto" - rev = "f793b6157c2cfb8c1c797100e1918b2d1eb40615" - sha256 = "05sk9jhk4qz5m4vkj0wr0swhvq9niz7v7bvpxh063vz0y6mmpj05" - -["github.com/rjeczalik/notify"] - sumVersion = "v0.9.1" - ["github.com/rjeczalik/notify".fetch] - type = "git" - url = "https://github.com/rjeczalik/notify" - rev = "0f065fa99b48b842c3fd3e2c8b194c6f2b69f6b8" - sha256 = "15zzgyry10hvg0z2d3fm1yncbscln9mmvgsm29w67yncf6n8vcb0" - -["github.com/rogpeppe/fastuuid"] - sumVersion = "v1.2.0" - ["github.com/rogpeppe/fastuuid".fetch] - type = "git" - url = "https://github.com/rogpeppe/fastuuid" - rev = "10c3923834d38e951ae8f627bfec2dc632c5b6cb" - sha256 = "028acdg63zkxpjz3l639nlhki2l0canr2v5jglrmwa1wpjqcfff8" - -["github.com/rogpeppe/go-internal"] - sumVersion = "v1.6.2" - ["github.com/rogpeppe/go-internal".fetch] - type = "git" - url = "https://github.com/rogpeppe/go-internal" - rev = "1115b6af0369aff6bd0766818c61a9a75678c6cc" - sha256 = "14snr12d3dpcsdfbcz8iz55if4mc2ia5x9rqzfbj32f90c9lw4bp" - -["github.com/rs/cors"] - sumVersion = "v1.7.0" - ["github.com/rs/cors".fetch] - type = "git" - url = "https://github.com/rs/cors" - rev = "db0fe48135e83b5812a5a31be0eea66984b1b521" - sha256 = "1abz6jxp7bhcwwsgcz9ajkijspkc46s0chrhqspy4czskmmazygi" - -["github.com/rs/xhandler"] - sumVersion = "v0.0.0-20160618193221-ed27b6fd6521" - ["github.com/rs/xhandler".fetch] - type = "git" - url = "https://github.com/rs/xhandler" - rev = "ed27b6fd65218132ee50cd95f38474a3d8a2cd12" - sha256 = "1fpp4rh812nvr5m0s0d5dsa1ypr4333mcijng0dp5bcgg2bqkwdz" - -["github.com/rs/xid"] - sumVersion = "v1.2.1" - ["github.com/rs/xid".fetch] - type = "git" - url = "https://github.com/rs/xid" - rev = "15d26544def341f036c5f8dca987a4cbe575032c" - sha256 = "1vgw1dikqw273awcci6pzifs7shkl5ah4l88j1zjbnpgbiwzlx9j" - -["github.com/rs/zerolog"] - sumVersion = "v1.23.0" - ["github.com/rs/zerolog".fetch] - type = "git" - url = "https://github.com/rs/zerolog" - rev = "117cb53bc66413d9a810ebed32383e53416347e3" - sha256 = "1cz9g25b47hxhz2nd15pcxarzwnwknm4f2nm4dspr1l99jxll733" - -["github.com/russross/blackfriday"] - sumVersion = "v1.5.2" - ["github.com/russross/blackfriday".fetch] - type = "git" - url = "https://github.com/russross/blackfriday" - rev = "05f3235734ad95d0016f6a23902f06461fcf567a" - sha256 = "0jzbfzcywqcrnym4gxlz6nphmm1grg6wsl4f0r9x384rn83wkj7c" - -["github.com/russross/blackfriday/v2"] - sumVersion = "v2.0.1" - ["github.com/russross/blackfriday/v2".fetch] - type = "git" - url = "https://github.com/russross/blackfriday" - rev = "d3b5b032dc8e8927d31a5071b56e14c89f045135" - sha256 = "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j" - -["github.com/ryancurrah/gomodguard"] - sumVersion = "v1.2.3" - ["github.com/ryancurrah/gomodguard".fetch] - type = "git" - url = "https://github.com/ryancurrah/gomodguard" - rev = "0decae5e66a21da9ca569652a9cf3d211f52017e" - sha256 = "0ppiliiki059gn47qgcj31mkya41pl5cxz6527s2iyy3gfan13an" - -["github.com/ryanrolds/sqlclosecheck"] - sumVersion = "v0.3.0" - ["github.com/ryanrolds/sqlclosecheck".fetch] - type = "git" - url = "https://github.com/ryanrolds/sqlclosecheck" - rev = "ca0d595701689bbb6decd11453747fb3455f89ad" - sha256 = "0s0zvsdkqlsv2j0hq40kd41qvbqk3y2s2r3smzhy63a9qx4qppvx" - -["github.com/ryanuber/columnize"] - sumVersion = "v0.0.0-20160712163229-9b3edd62028f" - ["github.com/ryanuber/columnize".fetch] - type = "git" - url = "https://github.com/ryanuber/columnize" - rev = "9b3edd62028f107d7cabb19353292afd29311a4e" - sha256 = "1ya1idkbb0a9fjlhkcnh5a9yvpwzwfmbyg7d56lpplwr9rqi1da4" - -["github.com/samuel/go-zookeeper"] - sumVersion = "v0.0.0-20190923202752-2cc03de413da" - ["github.com/samuel/go-zookeeper".fetch] - type = "git" - url = "https://github.com/samuel/go-zookeeper" - rev = "2cc03de413da42869e2db7ce7965d3e978d917eb" - sha256 = "11z2r73q6qk9xy3mzkhdxd7cbfqsdr0105d5m03q4r47fki46hgx" - -["github.com/sanposhiho/wastedassign/v2"] - sumVersion = "v2.0.6" - ["github.com/sanposhiho/wastedassign/v2".fetch] - type = "git" - url = "https://github.com/sanposhiho/wastedassign" - rev = "7f7461e8f4b79a495a2fb3bbdb5f5bcbaf8a8e67" - sha256 = "0c514b6xr67lgmsxbps83y63559167gh405sj62h8y723hchf2d1" - -["github.com/sasha-s/go-deadlock"] - sumVersion = "v0.2.1-0.20190427202633-1595213edefa" - ["github.com/sasha-s/go-deadlock".fetch] - type = "git" - url = "https://github.com/sasha-s/go-deadlock" - rev = "1595213edefa28ca5047b00340c63557f9c051d0" - sha256 = "06h5g16zlfnw9wvgaqp7jfav3n3pvli6asfcx1hv44sl601wnwk0" - -["github.com/sean-/seed"] - sumVersion = "v0.0.0-20170313163322-e2103e2c3529" - ["github.com/sean-/seed".fetch] - type = "git" - url = "https://github.com/sean-/seed" - rev = "e2103e2c35297fb7e17febb81e49b312087a2372" - sha256 = "0glir8jxi1w7aga2jwdb63pp1h8q4whknili7xixsqzwyy716125" - -["github.com/seccomp/libseccomp-golang"] - sumVersion = "v0.9.1" - ["github.com/seccomp/libseccomp-golang".fetch] - type = "git" - url = "https://github.com/seccomp/libseccomp-golang" - rev = "689e3c1541a84461afc49c1c87352a6cedf72e9c" - sha256 = "022c8prvxz0shrifams7lq4xidvkcqg9xi87wjjcpmbikqi72cna" - -["github.com/securego/gosec/v2"] - sumVersion = "v2.8.1" - ["github.com/securego/gosec/v2".fetch] - type = "git" - url = "https://github.com/securego/gosec" - rev = "3f800cc8cabf715660987c263e7b8be3e532532c" - sha256 = "0l2161apsyhqyqgcmkmmqxh8hf04cjlq1811lkzl2wd48x406l02" - -["github.com/segmentio/fasthash"] - sumVersion = "v1.0.3" - ["github.com/segmentio/fasthash".fetch] - type = "git" - url = "https://github.com/segmentio/fasthash" - rev = "9dc1b83dc0d8bf7d26ea69d6c6d7a11ebf6fbb89" - sha256 = "0wrlviycj5hz4w576f156h2cpnnmkflfx5jfj298qzn5lymnqv86" - -["github.com/sergi/go-diff"] - sumVersion = "v1.1.0" - ["github.com/sergi/go-diff".fetch] - type = "git" - url = "https://github.com/sergi/go-diff" - rev = "58c5cb1602ee9676b5d3590d782bedde80706fcc" - sha256 = "0ir8ali2vx0j7pipmlfd6k8c973akyy2nmbjrf008fm800zcp7z2" - -["github.com/shazow/go-diff"] - sumVersion = "v0.0.0-20160112020656-b6b7b6733b8c" - ["github.com/shazow/go-diff".fetch] - type = "git" - url = "https://github.com/shazow/go-diff" - rev = "b6b7b6733b8c9589e2452df9345ddaf75badd0db" - sha256 = "095q9cc94j8p7c2z1007gjac35xnhixlfdi46c4kacvspz833bgr" - -["github.com/shirou/gopsutil"] - sumVersion = "v2.20.5+incompatible" - ["github.com/shirou/gopsutil".fetch] - type = "git" - url = "https://github.com/shirou/gopsutil" - rev = "663af789c0858f2ede24f71a8dfba3643100dec9" - sha256 = "1q115pn37ymfqis43sm82iivbab4zk4gmjng21yb54vjk8pzsjvr" - -["github.com/shirou/gopsutil/v3"] - sumVersion = "v3.21.7" - relPath = "v3" - ["github.com/shirou/gopsutil/v3".fetch] - type = "git" - url = "https://github.com/shirou/gopsutil" - rev = "ae17bb5860aced0c9e072fcaf0b903d8f540262a" - sha256 = "1r93wwxl9c2qsal6yjg8qh9k192iz9sw1pxvklcffmvws2nnhrnj" - -["github.com/shurcooL/go"] - sumVersion = "v0.0.0-20180423040247-9e1955d9fb6e" - ["github.com/shurcooL/go".fetch] - type = "git" - url = "https://github.com/shurcooL/go" - rev = "9e1955d9fb6e1ee2345ba1f5e71669263e719e27" - sha256 = "1lad9bvs75jsn61cfza19739c2c057k0bqxg2b4xz3z3l4w1mkqj" - -["github.com/shurcooL/go-goon"] - sumVersion = "v0.0.0-20170922171312-37c2f522c041" - ["github.com/shurcooL/go-goon".fetch] - type = "git" - url = "https://github.com/shurcooL/go-goon" - rev = "37c2f522c041b74919a9e5e3a6c5c47eb34730a5" - sha256 = "17ac6j6msdcxbmfhq6pxhw5z339b87bd6ciln9909drjv2szyxqv" - -["github.com/shurcooL/sanitized_anchor_name"] - sumVersion = "v1.0.0" - ["github.com/shurcooL/sanitized_anchor_name".fetch] - type = "git" - url = "https://github.com/shurcooL/sanitized_anchor_name" - rev = "7bfe4c7ecddb3666a94b053b422cdd8f5aaa3615" - sha256 = "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f" - -["github.com/sirupsen/logrus"] - sumVersion = "v1.8.1" - ["github.com/sirupsen/logrus".fetch] - type = "git" - url = "https://github.com/sirupsen/logrus" - rev = "bdc0db8ead3853c56b7cd1ac2ba4e11b47d7da6b" - sha256 = "0rvqzic2zz7fpxyizmqxwmhv1m52ii9bgxnqa6km8wsa0l08wh42" - -["github.com/smartystreets/assertions"] - sumVersion = "v0.0.0-20180927180507-b2de0cb4f26d" - ["github.com/smartystreets/assertions".fetch] - type = "git" - url = "https://github.com/smartystreets/assertions" - rev = "b2de0cb4f26d0705483a2f495d89896d0b808573" - sha256 = "1i7ldgavgl35c7gk25p7bvdr282ckng090zr4ch9mk1705akx09y" - -["github.com/smartystreets/goconvey"] - sumVersion = "v1.6.4" - ["github.com/smartystreets/goconvey".fetch] - type = "git" - url = "https://github.com/smartystreets/goconvey" - rev = "505e419363375c0dc132d3ac02632a4ee32199ca" - sha256 = "07zjxwszayal88z1j2bwnqrsa32vg8l4nivks5yfr9j8xfsw7n6m" - -["github.com/snikch/goodman"] - sumVersion = "v0.0.0-20171125024755-10e37e294daa" - ["github.com/snikch/goodman".fetch] - type = "git" - url = "https://github.com/snikch/goodman" - rev = "10e37e294daa3c9a90abded60ff9924bafab3888" - sha256 = "0n6m17lmlfsynd7ja3s3w7pgpi7zdyakqbg4ahzdq9918fwddqmp" - -["github.com/soheilhy/cmux"] - sumVersion = "v0.1.4" - ["github.com/soheilhy/cmux".fetch] - type = "git" - url = "https://github.com/soheilhy/cmux" - rev = "e09e9389d85d8492d313d73d1469c029e710623f" - sha256 = "1f736g68d9vwlyfb6g0fxkr0r875369xafk30cz8kaq5niaqwv0h" - -["github.com/sonatard/noctx"] - sumVersion = "v0.0.1" - ["github.com/sonatard/noctx".fetch] - type = "git" - url = "https://github.com/sonatard/noctx" - rev = "45f5b560ec1a4f160e71e1cc204eba81cef8fa86" - sha256 = "0wpi120594ranybjlk9wndgv0yqqq5bbhnvwi10dnal8crvb54bs" - -["github.com/sony/gobreaker"] - sumVersion = "v0.4.1" - ["github.com/sony/gobreaker".fetch] - type = "git" - url = "https://github.com/sony/gobreaker" - rev = "21dbfda1fc5e89b91bd0c835a91c31fe4d461e88" - sha256 = "0iarblm3w2d0p997jsw9bkznfj0wa8d586nh37ii5gnqy41va700" - -["github.com/sourcegraph/go-diff"] - sumVersion = "v0.6.1" - ["github.com/sourcegraph/go-diff".fetch] - type = "git" - url = "https://github.com/sourcegraph/go-diff" - rev = "842d2c12cc52ab06942669cffeb4e2b43d8c0c71" - sha256 = "0ic58wi4cac61kh5sasn9iylcbzbqawlzva964rk0y0nifsyjcmc" - -["github.com/spaolacci/murmur3"] - sumVersion = "v1.1.0" - ["github.com/spaolacci/murmur3".fetch] - type = "git" - url = "https://github.com/spaolacci/murmur3" - rev = "f09979ecbc725b9e6d41a297405f65e7e8804acc" - sha256 = "1lv3zyz3jy2d76bhvvs8svygx66606iygdvwy5cwc0p5z8yghq25" - -["github.com/spf13/afero"] - sumVersion = "v1.6.0" - ["github.com/spf13/afero".fetch] - type = "git" - url = "https://github.com/spf13/afero" - rev = "bc94f58beda5dbff6f74599fcb1f1717c5b1c111" - sha256 = "0yi8p0yxiidpcg4cagxg2iyqcaapsng89rak4qyxmgails2fqg37" - -["github.com/spf13/cast"] - sumVersion = "v1.4.1" - ["github.com/spf13/cast".fetch] - type = "git" - url = "https://github.com/spf13/cast" - rev = "88075729b052bca4b8b6c31bf198db2fe6c9da93" - sha256 = "06qsfpvcbgkf2pvcvf9l46fj55kmbhp2yz382fkj5gll2bykx9ld" - -["github.com/spf13/cobra"] - sumVersion = "v1.2.1" - ["github.com/spf13/cobra".fetch] - type = "git" - url = "https://github.com/spf13/cobra" - rev = "de187e874d1ca382320088f8f6d76333408e5c2e" - sha256 = "091kz3xnlsgpqb90fc5nhjr4yfr8b8sjnyl0zd4wm1fgzkpw09jh" - -["github.com/spf13/jwalterweatherman"] - sumVersion = "v1.1.0" - ["github.com/spf13/jwalterweatherman".fetch] - type = "git" - url = "https://github.com/spf13/jwalterweatherman" - rev = "94f6ae3ed3bceceafa716478c5fbf8d29ca601a1" - sha256 = "1ywmkwci5zyd88ijym6f30fj5c0k2yayxarkmnazf5ybljv50q7b" - -["github.com/spf13/pflag"] - sumVersion = "v1.0.5" - ["github.com/spf13/pflag".fetch] - type = "git" - url = "https://github.com/spf13/pflag" - rev = "2e9d26c8c37aae03e3f9d4e90b7116f5accb7cab" - sha256 = "0gpmacngd0gpslnbkzi263f5ishigzgh6pbdv9hp092rnjl4nd31" - -["github.com/spf13/viper"] - sumVersion = "v1.8.1" - ["github.com/spf13/viper".fetch] - type = "git" - url = "https://github.com/spf13/viper" - rev = "bd038658992ae06c6ccf069a5b4bebe432602d0f" - sha256 = "0jcsvd9l05pv10rma6zicp44q2mlvxj0qlhnf4zcg2pymb5i0hq6" - -["github.com/ssgreg/nlreturn/v2"] - sumVersion = "v2.1.0" - ["github.com/ssgreg/nlreturn/v2".fetch] - type = "git" - url = "https://github.com/ssgreg/nlreturn" - rev = "5ded3fbf2a4dc9b3694ffd3a765e47c4f2a28de6" - sha256 = "117jz3s49lpcq59gg1nsd7p1mqil9a8c9wranxc920qkcb3dlf3l" - -["github.com/status-im/keycard-go"] - sumVersion = "v0.0.0-20190316090335-8537d3370df4" - ["github.com/status-im/keycard-go".fetch] - type = "git" - url = "https://github.com/status-im/keycard-go" - rev = "8537d3370df43a30a3d450c023783d2e43432b89" - sha256 = "15kbh04282vyb59fy9rjr533aa6vlxxh0cpa66x2qw6wb0896za1" - -["github.com/steakknife/bloomfilter"] - sumVersion = "v0.0.0-20180922174646-6819c0d2a570" - ["github.com/steakknife/bloomfilter".fetch] - type = "git" - url = "https://github.com/steakknife/bloomfilter" - rev = "6819c0d2a57025e1700378ee59b7382d71987f14" - sha256 = "1dr4pb172rwi9cxvxl23j4j8q6ybqjfzll5dd14cd398f231nk81" - -["github.com/steakknife/hamming"] - sumVersion = "v0.0.0-20180906055917-c99c65617cd3" - ["github.com/steakknife/hamming".fetch] - type = "git" - url = "https://github.com/steakknife/hamming" - rev = "c99c65617cd3d686aea8365fe563d6542f01d940" - sha256 = "03scc8fkkwpbc7p9ymlrm6wg57mzr0d6s2k2dz2gp339pllxyxjr" - -["github.com/strangelove-ventures/packet-forward-middleware"] - sumVersion = "v1.0.1" - ["github.com/strangelove-ventures/packet-forward-middleware".fetch] - type = "git" - url = "https://github.com/strangelove-ventures/packet-forward-middleware" - rev = "c118f0bd35767ac97c75da3abf976efb82757de6" - sha256 = "027za1wnv2hwscgxg7crcd8pg7nqf4h5z9gpan0bssgsksvlplw0" - -["github.com/streadway/amqp"] - sumVersion = "v0.0.0-20190827072141-edfb9018d271" - ["github.com/streadway/amqp".fetch] - type = "git" - url = "https://github.com/streadway/amqp" - rev = "edfb9018d2714e4ec54dbaba37dbfef2bdadf0e4" - sha256 = "07icg7x7saawzqb9lm9avw6bizs387xdi27zry03m6z5i1a22zq2" - -["github.com/streadway/handy"] - sumVersion = "v0.0.0-20190108123426-d5acb3125c2a" - ["github.com/streadway/handy".fetch] - type = "git" - url = "https://github.com/streadway/handy" - rev = "d5acb3125c2a6654d2d691e6851674a645333da1" - sha256 = "02jwalahfj2lh1snklh6i5hysjl9npx59q31ihdfrva10dssg30r" - -["github.com/stretchr/objx"] - sumVersion = "v0.2.0" - ["github.com/stretchr/objx".fetch] - type = "git" - url = "https://github.com/stretchr/objx" - rev = "ea4fe68685ee0d3cee7032121851b57e7494e8ea" - sha256 = "0pcdvakxgddaiwcdj73ra4da05a3q4cgwbpm2w75ycq4kzv8ij8k" - -["github.com/stretchr/testify"] - sumVersion = "v1.7.0" - ["github.com/stretchr/testify".fetch] - type = "git" - url = "https://github.com/stretchr/testify" - rev = "acba37e5db06f0093b465a7d47822bf13644b66c" - sha256 = "0ixgjsvafr3513pz3r6pmgk074s2dxkll0dadvl25gkf30rkmh10" - -["github.com/subosito/gotenv"] - sumVersion = "v1.2.0" - ["github.com/subosito/gotenv".fetch] - type = "git" - url = "https://github.com/subosito/gotenv" - rev = "2ef7124db659d49edac6aa459693a15ae36c671a" - sha256 = "0mav91j7r4arjkpq5zcf9j74f6pww8ic53x43wy7kg3ibw31yjs5" - -["github.com/syndtr/gocapability"] - sumVersion = "v0.0.0-20200815063812-42c35b437635" - ["github.com/syndtr/gocapability".fetch] - type = "git" - url = "https://github.com/syndtr/gocapability" - rev = "42c35b4376354fd554efc7ad35e0b7f94e3a0ffb" - sha256 = "00zi0k190ydlm9drnafvj9p4cf6axm858wr71pbmq1p3r94iqws4" - -["github.com/syndtr/goleveldb"] - sumVersion = "v1.0.1-0.20200815110645-5c35d600f0ca" - ["github.com/syndtr/goleveldb".fetch] - type = "git" - url = "https://github.com/syndtr/goleveldb" - rev = "5c35d600f0caac04c20d52438103f1a7aa612598" - sha256 = "0wsqybzip0khzgk4cl23ilm30jnf4yd674dkbq4c26ivak9qkmz7" - -["github.com/tdakkota/asciicheck"] - sumVersion = "v0.0.0-20200416200610-e657995f937b" - ["github.com/tdakkota/asciicheck".fetch] - type = "git" - url = "https://github.com/tdakkota/asciicheck" - rev = "e657995f937b8362b9e1425aa31bb96798b592f2" - sha256 = "0kyj9zizkbbdzhbr0hak306zwx4ia87cflbasfl743kvx43af1g0" - -["github.com/tecbot/gorocksdb"] - sumVersion = "v1.2.0" - vendorPath = "github.com/cosmos/gorocksdb" - ["github.com/tecbot/gorocksdb".fetch] - type = "git" - url = "https://github.com/cosmos/gorocksdb" - rev = "37ba422d5c751e427bef06cd17fb6d3e69818240" - sha256 = "14ih61qlzvw8wqc2dd8zhqgmqcfrja7vb0fk8ni317c9ibryqxzc" - -["github.com/tendermint/btcd"] - sumVersion = "v0.1.1" - ["github.com/tendermint/btcd".fetch] - type = "git" - url = "https://github.com/tendermint/btcd" - rev = "80daadac05d1cd29571fccf27002d79667a88b58" - sha256 = "16s909z5awvqi060rdj577wzbgziyk88s53x24kv9rzc71rm99x1" - -["github.com/tendermint/crypto"] - sumVersion = "v0.0.0-20191022145703-50d29ede1e15" - ["github.com/tendermint/crypto".fetch] - type = "git" - url = "https://github.com/tendermint/crypto" - rev = "50d29ede1e15ab205c8558ad67b85596ee19d3a0" - sha256 = "0vhyxsypb2q1zpcl464hlsdpap7kc3nj6gdff53xwrln2bg1jjin" - -["github.com/tendermint/go-amino"] - sumVersion = "v0.16.0" - ["github.com/tendermint/go-amino".fetch] - type = "git" - url = "https://github.com/tendermint/go-amino" - rev = "ccb15b138dfd74282be78f5e9059387768b12918" - sha256 = "1zcms3l5fihzg8nf4vhdk18qpn1jkbm3rpkjfpskfcrgzlxk6vi5" - -["github.com/tendermint/tendermint"] - sumVersion = "v0.34.14" - ["github.com/tendermint/tendermint".fetch] - type = "git" - url = "https://github.com/tendermint/tendermint" - rev = "85870def7b628effad73af942e638bbddf2ba8fd" - sha256 = "15rrh25qdc4dvq0f125a039n08wv82ijjd0zzrr3n9d6fv028mpw" - -["github.com/tendermint/tm-db"] - sumVersion = "v0.6.4" - ["github.com/tendermint/tm-db".fetch] - type = "git" - url = "https://github.com/tendermint/tm-db" - rev = "6f9a08cd4522fb13d8df69b1694587d5015114fc" - sha256 = "1sgjf2vaq554ybc0cwkzn17cz2ibzph2rq0dgaw21c2hym09437x" - -["github.com/tetafro/godot"] - sumVersion = "v1.4.9" - ["github.com/tetafro/godot".fetch] - type = "git" - url = "https://github.com/tetafro/godot" - rev = "2d9c8a617dcf8bb2927b4562c37d1077c43d2d49" - sha256 = "1kmdk3v2a6ygcg2i8jfgz61yzxi4183xgzlaviq9jwsqwc2hj60w" - -["github.com/tidwall/gjson"] - sumVersion = "v1.6.7" - ["github.com/tidwall/gjson".fetch] - type = "git" - url = "https://github.com/tidwall/gjson" - rev = "97ec619cbe9546828dc45cb856a5938dcf3d74e1" - sha256 = "1gq689xp5bqxn17hcg8kwciakr05rz84dgd8qpiy7aqdv8iqrghq" - -["github.com/tidwall/match"] - sumVersion = "v1.0.3" - ["github.com/tidwall/match".fetch] - type = "git" - url = "https://github.com/tidwall/match" - rev = "c2f534168b739a7ec1821a33839fb2f029f26bbc" - sha256 = "1haa5p7hsjqx0ijxbypgc9c31v128mykm1g0lyymvkk3qdajvcyr" - -["github.com/tidwall/pretty"] - sumVersion = "v1.0.2" - ["github.com/tidwall/pretty".fetch] - type = "git" - url = "https://github.com/tidwall/pretty" - rev = "ef453c788d6a371829f4f9967b014b2b81856df5" - sha256 = "0bfp2nqwd7w3709lsyw2iw71hgbrnhcs1nr9n4vbari408qk2rv0" - -["github.com/tidwall/sjson"] - sumVersion = "v1.1.4" - ["github.com/tidwall/sjson".fetch] - type = "git" - url = "https://github.com/tidwall/sjson" - rev = "b547b7aea4b0c9a8ed8885f0790aea039483f337" - sha256 = "0nin7n4bfjxznkkrjb4g7clprnmkdx79hgx1rjakxqp821l6s85s" - -["github.com/timakin/bodyclose"] - sumVersion = "v0.0.0-20200424151742-cb6215831a94" - ["github.com/timakin/bodyclose".fetch] - type = "git" - url = "https://github.com/timakin/bodyclose" - rev = "cb6215831a94c8f045805eae1d9782ebf907ced9" - sha256 = "0r5xi11qkxkhypq7y0q5p93z2q00sbn9yf32340cxzbim67niw0q" - -["github.com/tklauser/go-sysconf"] - sumVersion = "v0.3.7" - ["github.com/tklauser/go-sysconf".fetch] - type = "git" - url = "https://github.com/tklauser/go-sysconf" - rev = "ee6b65a65cffa83a2b81381420632959d977e790" - sha256 = "0gwf4s2bvvmk5fm0521kaz93hwjrzg6nwcjlm0fc8zan7l94f1g9" - -["github.com/tklauser/numcpus"] - sumVersion = "v0.2.3" - ["github.com/tklauser/numcpus".fetch] - type = "git" - url = "https://github.com/tklauser/numcpus" - rev = "8d45637165b3f9e97e45a2827870f0ae292b033b" - sha256 = "1b4ag1f3narkq3bw17b2zfr27ws3bcadq6z3n8zz4f0i4afsp0jh" - -["github.com/tmc/grpc-websocket-proxy"] - sumVersion = "v0.0.0-20200427203606-3cfed13b9966" - ["github.com/tmc/grpc-websocket-proxy".fetch] - type = "git" - url = "https://github.com/tmc/grpc-websocket-proxy" - rev = "3cfed13b99662c5c5740aa3bed7a81170f3ef94f" - sha256 = "1flhz7ksk1r9mwj6h7snbs0a39b8mjijcqf8q1xbxyyqg8j8x0bs" - -["github.com/tomarrell/wrapcheck/v2"] - sumVersion = "v2.3.0" - ["github.com/tomarrell/wrapcheck/v2".fetch] - type = "git" - url = "https://github.com/tomarrell/wrapcheck" - rev = "d409df3395169cccdb7f39aea3092e20c5e69a9c" - sha256 = "040fwm1bzspwk8djliqawylblsbljhd0p6r99jzbk3p8grym4ypn" - -["github.com/tomasen/realip"] - sumVersion = "v0.0.0-20180522021738-f0c99a92ddce" - ["github.com/tomasen/realip".fetch] - type = "git" - url = "https://github.com/tomasen/realip" - rev = "f0c99a92ddcedd3964a269d23c8e89d9a9229be6" - sha256 = "1iz2cwks2ywwvvnbfmw3pfyz4ql7z0f8s9sdj6pzirpp75zar9nn" - -["github.com/tommy-muehle/go-mnd/v2"] - sumVersion = "v2.4.0" - ["github.com/tommy-muehle/go-mnd/v2".fetch] - type = "git" - url = "https://github.com/tommy-muehle/go-mnd" - rev = "c588e97417345a8d6cde3d418988f18e8c94207b" - sha256 = "1znw6kamd3zlc34myc6j606psnv94p1vvnjf5aamb2pp2b6d1plx" - -["github.com/tv42/httpunix"] - sumVersion = "v0.0.0-20150427012821-b75d8614f926" - ["github.com/tv42/httpunix".fetch] - type = "git" - url = "https://github.com/tv42/httpunix" - rev = "b75d8614f926c077e48d85f1f8f7885b758c6225" - sha256 = "1sd9nnyyjm7n96fa18l0shlnapld4m0yj5ij2ba0l9yaaa2byqm9" - -["github.com/tyler-smith/go-bip39"] - sumVersion = "v1.0.2" - ["github.com/tyler-smith/go-bip39".fetch] - type = "git" - url = "https://github.com/tyler-smith/go-bip39" - rev = "5e3853c3f4e1a44df487c7efeb064ee8b43755de" - sha256 = "1nbjm9h0hbchp3rgxlnzix5hzwa474kr311yqb1dqxmvyrngaq9w" - -["github.com/ugorji/go"] - sumVersion = "v1.1.7" - ["github.com/ugorji/go".fetch] - type = "git" - url = "https://github.com/ugorji/go" - rev = "23ab95ef5dc3b70286760af84ce2327a2b64ed62" - sha256 = "068gja55kbh2iivp03x4n9dcml0rxv0k64ivkmq06si2ar1835rm" - -["github.com/ugorji/go/codec"] - sumVersion = "v1.1.7" - relPath = "codec" - ["github.com/ugorji/go/codec".fetch] - type = "git" - url = "https://github.com/ugorji/go" - rev = "23ab95ef5dc3b70286760af84ce2327a2b64ed62" - sha256 = "068gja55kbh2iivp03x4n9dcml0rxv0k64ivkmq06si2ar1835rm" - -["github.com/ultraware/funlen"] - sumVersion = "v0.0.3" - ["github.com/ultraware/funlen".fetch] - type = "git" - url = "https://github.com/ultraware/funlen" - rev = "262c7008279852412f50c8ece2f1a22c759bd84b" - sha256 = "1b1yjiwr4p2il9kgyc20hk83gvcm5mfv5xlfvs9hp01pydhx5pll" - -["github.com/ultraware/whitespace"] - sumVersion = "v0.0.4" - ["github.com/ultraware/whitespace".fetch] - type = "git" - url = "https://github.com/ultraware/whitespace" - rev = "83a46e7e913269e68dc64d4d2db3f2c9fb0e1714" - sha256 = "0hxa3w806zhi051wk15aj718isp2vc89cvfsqvw3ysbgwllaa60b" - -["github.com/urfave/cli"] - sumVersion = "v1.22.1" - ["github.com/urfave/cli".fetch] - type = "git" - url = "https://github.com/urfave/cli" - rev = "c71fbcefd21552b70cd625b2c54466006e258ad7" - sha256 = "04ymak18flqlfcn8lycmg8r3931al8dvr8f1cg9n4yjaskmg72v8" - -["github.com/uudashr/gocognit"] - sumVersion = "v1.0.5" - ["github.com/uudashr/gocognit".fetch] - type = "git" - url = "https://github.com/uudashr/gocognit" - rev = "16f84d241bedf9d2f731a71bf0e55ad654717bd9" - sha256 = "1yx8fydwpgnazwpr0f9cfmfz28di91q2qsmim4wmvxaqxp2mhi5a" - -["github.com/valyala/bytebufferpool"] - sumVersion = "v1.0.0" - ["github.com/valyala/bytebufferpool".fetch] - type = "git" - url = "https://github.com/valyala/bytebufferpool" - rev = "e746df99fe4a3986f4d4f79e13c1e0117ce9c2f7" - sha256 = "01lqzjddq6kz9v41nkky7wbgk7f1cw036sa7ldz10d82g5klzl93" - -["github.com/valyala/fasthttp"] - sumVersion = "v1.16.0" - ["github.com/valyala/fasthttp".fetch] - type = "git" - url = "https://github.com/valyala/fasthttp" - rev = "434c48ba7e3a0dafb32964b8971fb1448a39ceee" - sha256 = "120vyy6q75v70vkhbckh287700bma6wqzvg7i8wf8qy2vvq551ag" - -["github.com/valyala/quicktemplate"] - sumVersion = "v1.6.3" - ["github.com/valyala/quicktemplate".fetch] - type = "git" - url = "https://github.com/valyala/quicktemplate" - rev = "f15a233858c23fd598b71cf2f11fd9db3989dbdf" - sha256 = "0zvn92mpa1qfdh5rc9w8y6h9y1aki0027idfhlbxf3liq90nn24r" - -["github.com/valyala/tcplisten"] - sumVersion = "v0.0.0-20161114210144-ceec8f93295a" - ["github.com/valyala/tcplisten".fetch] - type = "git" - url = "https://github.com/valyala/tcplisten" - rev = "ceec8f93295a060cdb565ec25e4ccf17941dbd55" - sha256 = "0ksbj1gsdqanbnhly5w1wcc107bib4w0zpnyl00prr89zch3imnf" - -["github.com/viki-org/dnscache"] - sumVersion = "v0.0.0-20130720023526-c70c1f23c5d8" - ["github.com/viki-org/dnscache".fetch] - type = "git" - url = "https://github.com/viki-org/dnscache" - rev = "c70c1f23c5d84ab39054ec6b418a5ed0fa51cade" - sha256 = "0k9p3v3df1y1l85xhh5k8wsnidhxx7qyqpyfka1pcs1562q35l97" - -["github.com/vishvananda/netlink"] - sumVersion = "v1.1.0" - ["github.com/vishvananda/netlink".fetch] - type = "git" - url = "https://github.com/vishvananda/netlink" - rev = "f049be6f391489d3f374498fe0c8df8449258372" - sha256 = "1vhl30p1gx636a088ls4h6a0l8jjyfvz79fr5w0qzdrg4qg9h08h" - -["github.com/vishvananda/netns"] - sumVersion = "v0.0.0-20191106174202-0a2b9b5464df" - ["github.com/vishvananda/netns".fetch] - type = "git" - url = "https://github.com/vishvananda/netns" - rev = "0a2b9b5464df8343199164a0321edf3313202f7e" - sha256 = "1k1zb7pzc4r4wicq7ncspf6zsvq298lvpsq963ibj813shg657xw" - -["github.com/vmihailenco/msgpack/v5"] - sumVersion = "v5.1.4" - ["github.com/vmihailenco/msgpack/v5".fetch] - type = "git" - url = "https://github.com/vmihailenco/msgpack" - rev = "77a6f797778061f2c9c30b13418c3a2f5cb98070" - sha256 = "109nansr75fidx3r00nb4jkc14davfzb88kdf75h6jyk06b50iaa" - -["github.com/vmihailenco/tagparser"] - sumVersion = "v0.1.2" - ["github.com/vmihailenco/tagparser".fetch] - type = "git" - url = "https://github.com/vmihailenco/tagparser" - rev = "be04d19a03d0f4739671a500012335e98ebfeb9f" - sha256 = "0418gkcds57c6g6slf8kl3ya7xp14p5y42w1gqkiqp6p98nhblqh" - -["github.com/wsddn/go-ecdh"] - sumVersion = "v0.0.0-20161211032359-48726bab9208" - ["github.com/wsddn/go-ecdh".fetch] - type = "git" - url = "https://github.com/wsddn/go-ecdh" - rev = "48726bab92085232373de4ec5c51ce7b441c63a0" - sha256 = "1rszp777snp9qvnh2giim7d42cvca5l180gq4j7clbmshnzg6c6m" - -["github.com/xiang90/probing"] - sumVersion = "v0.0.0-20190116061207-43a291ad63a2" - ["github.com/xiang90/probing".fetch] - type = "git" - url = "https://github.com/xiang90/probing" - rev = "43a291ad63a214a207fefbf03c7d9d78b703162b" - sha256 = "1z22ms16j5j42775mf31isanwx2pwr1d8wqw8006dczjv36qnz5i" - -["github.com/xo/terminfo"] - sumVersion = "v0.0.0-20210125001918-ca9a967f8778" - ["github.com/xo/terminfo".fetch] - type = "git" - url = "https://github.com/xo/terminfo" - rev = "ca9a967f877831dd8742c136f5c19f82d03673f4" - sha256 = "05gdcvcbwcrcwxznhvs1q1xh4irz2d10v2mz179pydjh30kjc0j5" - -["github.com/xordataexchange/crypt"] - sumVersion = "v0.0.3-0.20170626215501-b2862e3d0a77" - ["github.com/xordataexchange/crypt".fetch] - type = "git" - url = "https://github.com/xordataexchange/crypt" - rev = "b2862e3d0a775f18c7cfe02273500ae307b61218" - sha256 = "04q3856anpzl4gdfgmg7pbp9cx231nkz3ymq2xp27rnmmwhfxr8y" - -["github.com/ybbus/jsonrpc"] - sumVersion = "v2.1.2+incompatible" - ["github.com/ybbus/jsonrpc".fetch] - type = "git" - url = "https://github.com/ybbus/jsonrpc" - rev = "dd866631e904a5df2067d934985c5def68f391ac" - sha256 = "1k2i4q4bliqfkam4gd00729plgi6f7wa60npqpgagrlfnd4w9k4m" - -["github.com/yeya24/promlinter"] - sumVersion = "v0.1.0" - ["github.com/yeya24/promlinter".fetch] - type = "git" - url = "https://github.com/yeya24/promlinter" - rev = "000c7d74ddb3f60264547f8096a03855ea9ecfbb" - sha256 = "010m0i8kiwarn5b4p9m8j7frzlm5gnb5ahfh3ph1rz6a6qyiiq7b" - -["github.com/yudai/gojsondiff"] - sumVersion = "v1.0.0" - ["github.com/yudai/gojsondiff".fetch] - type = "git" - url = "https://github.com/yudai/gojsondiff" - rev = "d53dddaf16b9f5b19737f4722943e7e1f289af13" - sha256 = "0qnymi0027mb8kxm24mmd22bvjrdkc56c7f4q3lbdf93x1vxbbc2" - -["github.com/yudai/golcs"] - sumVersion = "v0.0.0-20170316035057-ecda9a501e82" - ["github.com/yudai/golcs".fetch] - type = "git" - url = "https://github.com/yudai/golcs" - rev = "ecda9a501e8220fae3b4b600c3db4b0ba22cfc68" - sha256 = "0mx6wc5fz05yhvg03vvps93bc5mw4vnng98fhmixd47385qb29pq" - -["github.com/yudai/pp"] - sumVersion = "v2.0.1+incompatible" - ["github.com/yudai/pp".fetch] - type = "git" - url = "https://github.com/yudai/pp" - rev = "7b2049560316f10b8b3923c5a959691ce2132318" - sha256 = "18vbc7jagnjw1wpvhqjffl0np7bzzqdd9jpdcisvj5h85lbyn5gk" - -["github.com/yuin/goldmark"] - sumVersion = "v1.3.5" - ["github.com/yuin/goldmark".fetch] - type = "git" - url = "https://github.com/yuin/goldmark" - rev = "9f5125e104c38283b8ca0a581793abe4260dd786" - sha256 = "08rrhfji92hixiv3v0wvamwcy56f90wsw84w7lyvad7g90kbsknx" - -["github.com/zondax/hid"] - sumVersion = "v0.9.0" - ["github.com/zondax/hid".fetch] - type = "git" - url = "https://github.com/zondax/hid" - rev = "302fd402163c34626286195dfa9adac758334acc" - sha256 = "1wnpfn4bd86nz2v9dgb40xpz1ya66vahdkrhb1gj4jyyxdnnhqkh" - -["go.etcd.io/bbolt"] - sumVersion = "v1.3.6" - ["go.etcd.io/bbolt".fetch] - type = "git" - url = "https://github.com/etcd-io/bbolt" - rev = "685b13a4ef0053a4a38623bcebda621db6f7eaf7" - sha256 = "0pj5245d417za41j6p09fmkbv05797vykr1bi9a6rnwddh1dbs8d" - -["go.etcd.io/etcd"] - sumVersion = "v0.0.0-20200513171258-e048e166ab9c" - ["go.etcd.io/etcd".fetch] - type = "git" - url = "https://github.com/etcd-io/etcd" - rev = "e048e166ab9c87f11e5f48c3dcf9774fb7c17fa8" - sha256 = "1xlngzwyrk04715rhi262jqsyci4aniw526sxa2cap9lnbyq2v0m" - -["go.etcd.io/etcd/api/v3"] - sumVersion = "v3.5.0" - relPath = "api" - ["go.etcd.io/etcd/api/v3".fetch] - type = "git" - url = "https://github.com/etcd-io/etcd" - rev = "946a5a6f25c3b6b89408ab447852731bde6e6289" - sha256 = "1dinf1668bkpq5lff8sr4fjd7dkxw9smm1f9zcadpdz3ci3knpzg" - -["go.etcd.io/etcd/client/pkg/v3"] - sumVersion = "v3.5.0" - relPath = "client/pkg" - ["go.etcd.io/etcd/client/pkg/v3".fetch] - type = "git" - url = "https://github.com/etcd-io/etcd" - rev = "946a5a6f25c3b6b89408ab447852731bde6e6289" - sha256 = "1dinf1668bkpq5lff8sr4fjd7dkxw9smm1f9zcadpdz3ci3knpzg" - -["go.etcd.io/etcd/client/v2"] - sumVersion = "v2.305.0" - relPath = "client" - ["go.etcd.io/etcd/client/v2".fetch] - type = "git" - url = "https://github.com/etcd-io/etcd" - rev = "946a5a6f25c3b6b89408ab447852731bde6e6289" - sha256 = "1dinf1668bkpq5lff8sr4fjd7dkxw9smm1f9zcadpdz3ci3knpzg" - -["go.mozilla.org/mozlog"] - sumVersion = "v0.0.0-20170222151521-4bb13139d403" - ["go.mozilla.org/mozlog".fetch] - type = "git" - url = "https://github.com/mozilla-services/go-mozlog" - rev = "4bb13139d40339f59bf140d0f5f28be83b07cc58" - sha256 = "197754z5z3ixdasymw6ks51b7vmfv3q3skiz5yn2mzgw9hlgphkq" - -["go.opencensus.io"] - sumVersion = "v0.23.0" - ["go.opencensus.io".fetch] - type = "git" - url = "https://github.com/census-instrumentation/opencensus-go" - rev = "49838f207d61097fc0ebb8aeef306913388376ca" - sha256 = "0gw4f7inf8y2ik00yfb36xganiq9rl4w2d1a41bsjqsh83ajz2km" - -["go.uber.org/atomic"] - sumVersion = "v1.7.0" - ["go.uber.org/atomic".fetch] - type = "git" - url = "https://github.com/uber-go/atomic" - rev = "12f27ba2637fa0e13772a4f05fa46a5d18d53182" - sha256 = "0yxvb5sixh76cl9j8dpa97gznj0p8pmg2cdw0ypfwhd3ipx9wph1" - -["go.uber.org/multierr"] - sumVersion = "v1.6.0" - ["go.uber.org/multierr".fetch] - type = "git" - url = "https://github.com/uber-go/multierr" - rev = "3114a8b704d2d28dbacda34a872690aaef66aeed" - sha256 = "162941s8f6a9x2w04qm4qa3zz0zylwag9149hywrj9ibp2nzcsqz" - -["go.uber.org/tools"] - sumVersion = "v0.0.0-20190618225709-2cfd321de3ee" - ["go.uber.org/tools".fetch] - type = "git" - url = "https://github.com/uber-go/tools" - rev = "2cfd321de3ee5d5f8a5fda2521d1703478334d98" - sha256 = "0kcsg9pd3vyp5v9dz8xzd9lkpbqrlhr1rv6hg38afq6ifziw319i" - -["go.uber.org/zap"] - sumVersion = "v1.17.0" - ["go.uber.org/zap".fetch] - type = "git" - url = "https://github.com/uber-go/zap" - rev = "ebebbf3828cd267f08b11cc3f6f4a155c952b2ba" - sha256 = "14mr66h7vxirpvb12106372apw1w3ppymbf89lprxkkg03srkfy8" - -["golang.org/x/crypto"] - sumVersion = "v0.0.0-20210817164053-32db794688a5" - ["golang.org/x/crypto".fetch] - type = "git" - url = "https://go.googlesource.com/crypto" - rev = "32db794688a5a24a23a43f2a984cecd5b3d8da58" - sha256 = "0arh5rhahrjzmlifmbgswwc0kjkgmhps6g4hzia0i6ismsk74n48" - -["golang.org/x/exp"] - sumVersion = "v0.0.0-20200331195152-e8c3332aa8e5" - ["golang.org/x/exp".fetch] - type = "git" - url = "https://go.googlesource.com/exp" - rev = "e8c3332aa8e5b8e6acb4707c3a7e5979052b20aa" - sha256 = "085mbasmshl64f2d0awrf5k0iyh1aij888cp9aa12ldzp36404rw" - -["golang.org/x/image"] - sumVersion = "v0.0.0-20190802002840-cff245a6509b" - ["golang.org/x/image".fetch] - type = "git" - url = "https://go.googlesource.com/image" - rev = "cff245a6509b8c4de022d0d5b9037c503c5989d6" - sha256 = "0hiznlkiaay30acwvvyq8g6bm32r7bc6gv47pygrcxqpapasbz84" - -["golang.org/x/lint"] - sumVersion = "v0.0.0-20210508222113-6edffad5e616" - ["golang.org/x/lint".fetch] - type = "git" - url = "https://go.googlesource.com/lint" - rev = "6edffad5e6160f5949cdefc81710b2706fbcd4f6" - sha256 = "1n7lrr3282q3li4f06afms444qy13rfd316za0drqihakwyki2jk" - -["golang.org/x/mobile"] - sumVersion = "v0.0.0-20200801112145-973feb4309de" - ["golang.org/x/mobile".fetch] - type = "git" - url = "https://go.googlesource.com/mobile" - rev = "973feb4309de5c3aad0553fc987d76abf1fa58f7" - sha256 = "0jwz7jq1cqp9x6b9kpfrmw84sg7dg5v4xaa8zdbgq14gskmjx72d" - -["golang.org/x/mod"] - sumVersion = "v0.4.2" - ["golang.org/x/mod".fetch] - type = "git" - url = "https://go.googlesource.com/mod" - rev = "d6ab96f2441f9631f81862375ef66782fc4a9c12" - sha256 = "0z1p17i291z2k6va08i80ljyzyij2b6qsz78lnz0wi8zsnkfdz43" - -["golang.org/x/net"] - sumVersion = "v0.0.0-20210903162142-ad29c8ab022f" - ["golang.org/x/net".fetch] - type = "git" - url = "https://go.googlesource.com/net" - rev = "ad29c8ab022f0f2c6a18c8279b1db2230acfa59b" - sha256 = "14qfyn4n6x7c339771i1s7chb8qx12y9xbrkgszyn0a3vgggzh6x" - -["golang.org/x/oauth2"] - sumVersion = "v0.0.0-20210514164344-f6687ab2804c" - ["golang.org/x/oauth2".fetch] - type = "git" - url = "https://go.googlesource.com/oauth2" - rev = "f6687ab2804cbebdfdeef385bee94918b1ce83de" - sha256 = "0n0hwhan765nl2znk94jwnawkss1lmcmslqyxnym57p3sdi77zsp" - -["golang.org/x/sync"] - sumVersion = "v0.0.0-20210220032951-036812b2e83c" - ["golang.org/x/sync".fetch] - type = "git" - url = "https://go.googlesource.com/sync" - rev = "036812b2e83c0ddf193dd5a34e034151da389d09" - sha256 = "1gl202py3s4gl6arkaxlf8qa6f0jyyg2f95m6f89qnfmr416h85b" - -["golang.org/x/sys"] - sumVersion = "v0.0.0-20211004093028-2c5d950f24ef" - ["golang.org/x/sys".fetch] - type = "git" - url = "https://go.googlesource.com/sys" - rev = "2c5d950f24efcc95bc256be158532a2eee20542f" - sha256 = "13ac9v54zgxrya9n2dvbmyafhd0rbmnkfb5zrcp96z8vzd9q8zfz" - -["golang.org/x/term"] - sumVersion = "v0.0.0-20201126162022-7de9c90e9dd1" - ["golang.org/x/term".fetch] - type = "git" - url = "https://go.googlesource.com/term" - rev = "7de9c90e9dd184706b838f536a1cbf40a296ddb7" - sha256 = "1ba252xmv6qsvf1w1gcy98mngrj0vd4inbjw0lsklqvva65nljna" - -["golang.org/x/text"] - sumVersion = "v0.3.6" - ["golang.org/x/text".fetch] - type = "git" - url = "https://go.googlesource.com/text" - rev = "e328d63cff14134669501e0e154e4f141c784322" - sha256 = "0wzhvdb059vrp2cczqw422ajrb9sbs4l3qd020hlngj33qfhxah0" - -["golang.org/x/time"] - sumVersion = "v0.0.0-20200416051211-89c76fbcd5d1" - ["golang.org/x/time".fetch] - type = "git" - url = "https://go.googlesource.com/time" - rev = "89c76fbcd5d1cd4969e5d2fe19d48b19d5ad94a0" - sha256 = "1zj3vzvsssz3qm856zgifca74zm54qfglw483wn6z56gl3qill1k" - -["golang.org/x/tools"] - sumVersion = "v0.1.5" - ["golang.org/x/tools".fetch] - type = "git" - url = "https://go.googlesource.com/tools" - rev = "ef97713d99aa4e69742aa68fd45a63247b5d3ea0" - sha256 = "1wzbbcja1q0gn8ahxvzvpl4nzj2icwmc0pppgipmx5rdnngqw80l" - -["golang.org/x/xerrors"] - sumVersion = "v0.0.0-20200804184101-5ec99f83aff1" - ["golang.org/x/xerrors".fetch] - type = "git" - url = "https://go.googlesource.com/xerrors" - rev = "5ec99f83aff198f5fbd629d6c8d8eb38a04218ca" - sha256 = "1dbzc3gmf2haazpv7cgmv97rq40g2xzwbglc17vas8dwhgwgwrzb" - -["google.golang.org/api"] - sumVersion = "v0.44.0" - ["google.golang.org/api".fetch] - type = "git" - url = "https://github.com/googleapis/google-api-go-client" - rev = "e8cf7f70a1e0160405dd0f789a006e6b6074fbdb" - sha256 = "0sh6qzc3pnyliy10afrmzpfbbbm2mwcyc6mp5422xhgp3p2x370x" - -["google.golang.org/appengine"] - sumVersion = "v1.6.7" - ["google.golang.org/appengine".fetch] - type = "git" - url = "https://github.com/golang/appengine" - rev = "5d1c1d03f8703c2e81478d9a30e9afa2d3e4bd8a" - sha256 = "1wkipg7xxc0ha5p6c3bj0vpgq38l18441n5l6zxdhx0gzvz5z1hs" - -["google.golang.org/genproto"] - sumVersion = "v0.0.0-20210828152312-66f60bf46e71" - ["google.golang.org/genproto".fetch] - type = "git" - url = "https://github.com/googleapis/go-genproto" - rev = "66f60bf46e712a08287e27c1726b06e93e00b6bf" - sha256 = "14vlk2phr8yr5nq19bvvd6z7yvn4nl3s63rvj1yk8r82b6amd63p" - -["google.golang.org/grpc"] - sumVersion = "v1.33.2" - ["google.golang.org/grpc".fetch] - type = "git" - url = "https://github.com/grpc/grpc-go" - rev = "56d63285d528c0d33f9bf8c355139d91edc047de" - sha256 = "03yz4nlf4kqbnpw48f0mvcb2f5zzy0vjd5i2iw0hrjspd0238fzk" - -["google.golang.org/grpc/cmd/protoc-gen-go-grpc"] - sumVersion = "v1.0.0" - relPath = "cmd/protoc-gen-go-grpc" - ["google.golang.org/grpc/cmd/protoc-gen-go-grpc".fetch] - type = "git" - url = "https://github.com/grpc/grpc-go" - rev = "13edeeffdea7a41d5aad96c28deb4c7bd01a9397" - sha256 = "0d2cy7qwhn9jj8iycpckadp2x6668ybcxpb52hdak1hp1gcha9pj" - -["google.golang.org/protobuf"] - sumVersion = "v1.27.1" - ["google.golang.org/protobuf".fetch] - type = "git" - url = "https://go.googlesource.com/protobuf" - rev = "b92717ecb630d4a4824b372bf98c729d87311a4d" - sha256 = "0aszb7cv8fq1m8akgd4kjyg5q7g5z9fdqnry6057ygq9r8r2yif2" - -["gopkg.in/alecthomas/kingpin.v2"] - sumVersion = "v2.2.6" - ["gopkg.in/alecthomas/kingpin.v2".fetch] - type = "git" - url = "https://gopkg.in/alecthomas/kingpin.v2" - rev = "947dcec5ba9c011838740e680966fd7087a71d0d" - sha256 = "0mndnv3hdngr3bxp7yxfd47cas4prv98sqw534mx7vp38gd88n5r" - -["gopkg.in/check.v1"] - sumVersion = "v1.0.0-20200902074654-038fdea0a05b" - ["gopkg.in/check.v1".fetch] - type = "git" - url = "https://gopkg.in/check.v1" - rev = "038fdea0a05bc030b0bfda479dc2e08d2220ec74" - sha256 = "060kpz01bfglrd7przzgq8a1fqf1x0hlkmdj6isindzwx3kfhnm4" - -["gopkg.in/cheggaaa/pb.v1"] - sumVersion = "v1.0.28" - ["gopkg.in/cheggaaa/pb.v1".fetch] - type = "git" - url = "https://gopkg.in/cheggaaa/pb.v1" - rev = "f907f6f5dd81f77c2bbc1cde92e4c5a04720cb11" - sha256 = "13a66cqbpdif804qj12z9ad8r24va9q41gfk71qbc4zg1wsxs3rh" - -["gopkg.in/errgo.v2"] - sumVersion = "v2.1.0" - ["gopkg.in/errgo.v2".fetch] - type = "git" - url = "https://gopkg.in/errgo.v2" - rev = "f768c5ab0476c50e978b039312180859c10fe8c0" - sha256 = "065mbihiy7q67wnql0bzl9y1kkvck5ivra68254zbih52jxwrgr2" - -["gopkg.in/fsnotify.v1"] - sumVersion = "v1.4.7" - ["gopkg.in/fsnotify.v1".fetch] - type = "git" - url = "https://gopkg.in/fsnotify.v1" - rev = "c2828203cd70a50dcccfb2761f8b1f8ceef9a8e9" - sha256 = "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g" - -["gopkg.in/gcfg.v1"] - sumVersion = "v1.2.3" - ["gopkg.in/gcfg.v1".fetch] - type = "git" - url = "https://gopkg.in/gcfg.v1" - rev = "61b2c08bc8f6068f7c5ca684372f9a6cb1c45ebe" - sha256 = "165f9wincwnkblp8x6m1f4ch4m8k4gvy5v4x4gqdpmf59kqv5y7s" - -["gopkg.in/ini.v1"] - sumVersion = "v1.63.2" - ["gopkg.in/ini.v1".fetch] - type = "git" - url = "https://gopkg.in/ini.v1" - rev = "14e9811b1643cf01ea36277e44dffef4f119fa31" - sha256 = "0s35274ibybg1nidwb65jyc3gkkbs91s7rv5jdg73x6sbd73q6wr" - -["gopkg.in/natefinch/npipe.v2"] - sumVersion = "v2.0.0-20160621034901-c1b8fa8bdcce" - ["gopkg.in/natefinch/npipe.v2".fetch] - type = "git" - url = "https://gopkg.in/natefinch/npipe.v2" - rev = "c1b8fa8bdccecb0b8db834ee0b92fdbcfa606dd6" - sha256 = "1qplrvhks05pay169d9lph3hl7apdam4vj1kx3yzik7cphx6b24f" - -["gopkg.in/olebedev/go-duktape.v3"] - sumVersion = "v3.0.0-20200619000410-60c24ae608a6" - ["gopkg.in/olebedev/go-duktape.v3".fetch] - type = "git" - url = "https://gopkg.in/olebedev/go-duktape.v3" - rev = "60c24ae608a642bf894bed9eb53627d2384bedca" - sha256 = "13qirm5nqk6isv9n0wdi18k9wc8h1d7n6zwflhziwix7ghnr7a1q" - -["gopkg.in/resty.v1"] - sumVersion = "v1.12.0" - ["gopkg.in/resty.v1".fetch] - type = "git" - url = "https://gopkg.in/resty.v1" - rev = "fa5875c0caa5c260ab78acec5a244215a730247f" - sha256 = "062mn735rqzhha5ag07z4gz08hxzrfm2yx067jfmaaxmb6797lmp" - -["gopkg.in/tomb.v1"] - sumVersion = "v1.0.0-20141024135613-dd632973f1e7" - ["gopkg.in/tomb.v1".fetch] - type = "git" - url = "https://gopkg.in/tomb.v1" - rev = "dd632973f1e7218eb1089048e0798ec9ae7dceb8" - sha256 = "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv" - -["gopkg.in/urfave/cli.v1"] - sumVersion = "v1.20.0" - ["gopkg.in/urfave/cli.v1".fetch] - type = "git" - url = "https://gopkg.in/urfave/cli.v1" - rev = "cfb38830724cc34fedffe9a2a29fb54fa9169cd1" - sha256 = "0y6f4sbzkiiwrxbl15biivj8c7qwxnvm3zl2dd3mw4wzg4x10ygj" - -["gopkg.in/warnings.v0"] - sumVersion = "v0.1.2" - ["gopkg.in/warnings.v0".fetch] - type = "git" - url = "https://gopkg.in/warnings.v0" - rev = "ec4a0fea49c7b46c2aeb0b51aac55779c607e52b" - sha256 = "1kzj50jn708cingn7a13c2wdlzs6qv89dr2h4zj8d09647vlnd81" - -["gopkg.in/yaml.v2"] - sumVersion = "v2.4.0" - ["gopkg.in/yaml.v2".fetch] - type = "git" - url = "https://gopkg.in/yaml.v2" - rev = "7649d4548cb53a614db133b2a8ac1f31859dda8c" - sha256 = "1pbmrpj7gcws34g8vwna4i2nhm9p6235piww36436xhyaa10cldr" - -["gopkg.in/yaml.v3"] - sumVersion = "v3.0.0-20210107192922-496545a6307b" - ["gopkg.in/yaml.v3".fetch] - type = "git" - url = "https://gopkg.in/yaml.v3" - rev = "496545a6307b2a7d7a710fd516e5e16e8ab62dbc" - sha256 = "06f4lnrp494wqaygv09dggr2dwf3z2bawqhnlnnwiamg5y787k4g" - -["gotest.tools"] - sumVersion = "v2.2.0+incompatible" - ["gotest.tools".fetch] - type = "git" - url = "https://github.com/gotestyourself/gotest.tools" - rev = "7c797b5133e5460410dbb22ba779bf35e6975dea" - sha256 = "0yif3gdyckmf8i54jq0xn00kflla5rhib9sarw66ngnbl7bn9kyl" - -["honnef.co/go/tools"] - sumVersion = "v0.2.1" - ["honnef.co/go/tools".fetch] - type = "git" - url = "https://github.com/dominikh/go-tools" - rev = "df71e5d0e0ed317ebf43e6e59cf919430fa4b8f2" - sha256 = "11zzzxk0v3lprgkgvwjgbnmwc7wdnx9jhf55sy1l8r9kybw44gjn" - -["mvdan.cc/gofumpt"] - sumVersion = "v0.1.1" - ["mvdan.cc/gofumpt".fetch] - type = "git" - url = "https://github.com/mvdan/gofumpt" - rev = "667a24092cf8f76a50e7206ae566339e59508f3a" - sha256 = "0q97nywfs7i2zm9hdhm0df3kdaj6lrrps151j75nl1fgs0kp2wrh" - -["mvdan.cc/interfacer"] - sumVersion = "v0.0.0-20180901003855-c20040233aed" - ["mvdan.cc/interfacer".fetch] - type = "git" - url = "https://github.com/mvdan/interfacer" - rev = "c20040233aedb03da82d460eca6130fcd91c629a" - sha256 = "0cx4m74mvn200360pmsqxx4z0apk9fcknwwqh8r94zd3jfv4akq2" - -["mvdan.cc/lint"] - sumVersion = "v0.0.0-20170908181259-adc824a0674b" - ["mvdan.cc/lint".fetch] - type = "git" - url = "https://github.com/mvdan/lint" - rev = "adc824a0674b99099789b6188a058d485eaf61c0" - sha256 = "17mi2rvkg9kzv1shxcyawzcj4jj3v738d1j82fp4yygx859yvr8r" - -["mvdan.cc/unparam"] - sumVersion = "v0.0.0-20210104141923-aac4ce9116a7" - ["mvdan.cc/unparam".fetch] - type = "git" - url = "https://github.com/mvdan/unparam" - rev = "aac4ce9116a7d389fb9d16019cfbfa13a34be227" - sha256 = "0ibfx9z4vb945rzmazvk3v47sqfhkzy1bnikx7kv173d5gjqc8i6" - -["nhooyr.io/websocket"] - sumVersion = "v1.8.6" - ["nhooyr.io/websocket".fetch] - type = "git" - url = "https://github.com/nhooyr/websocket" - rev = "02861b474d9c29660eff53a3c424d589aaf46d1e" - sha256 = "1xw7rhy9bvk0kzqvpcvj92l9zwwnakvqwycfxm724dw7m0d84n52" - -["rsc.io/binaryregexp"] - sumVersion = "v0.2.0" - ["rsc.io/binaryregexp".fetch] - type = "git" - url = "https://github.com/rsc/binaryregexp" - rev = "857b9542aaa89cfa42a1477b43fa1f24192fe921" - sha256 = "1kar0myy85waw418zslviwx8846zj0m9cmqkxjx0fvgjdi70nc4b" - -["rsc.io/quote/v3"] - sumVersion = "v3.1.0" - relPath = "v3" - ["rsc.io/quote/v3".fetch] - type = "git" - url = "https://github.com/rsc/quote" - rev = "0406d7298882187f4c75f75fa85cc808a64bcef1" - sha256 = "0nvv97hwwrl1mx5gzsbdm1ndnwpg3m7i2jb10ig9wily7zmvki0i" - -["rsc.io/sampler"] - sumVersion = "v1.3.0" - ["rsc.io/sampler".fetch] - type = "git" - url = "https://github.com/rsc/sampler" - rev = "0cc034b51e57ed7832d4c67d526f75a900996e5c" - sha256 = "0byxk2ynba50py805kcvbvjzh59l1r308i1xgyzpw6lff4xx9xjh" - -["sigs.k8s.io/yaml"] - sumVersion = "v1.1.0" - ["sigs.k8s.io/yaml".fetch] - type = "git" - url = "https://github.com/kubernetes-sigs/yaml" - rev = "fd68e9863619f6ec2fdd8625fe1f02e7c877e480" - sha256 = "1p7hvjdr5jsyk7nys1g1pmgnf3ys6n320i6hds85afppk81k01kb" - -["sourcegraph.com/sourcegraph/appdash"] - sumVersion = "v0.0.0-20190731080439-ebfcffb1b5c0" - ["sourcegraph.com/sourcegraph/appdash".fetch] - type = "git" - url = "https://github.com/sourcegraph/appdash" - rev = "ebfcffb1b5c00031ce797183546746715a3cfe87" - sha256 = "1xlff68pa7jchg1xr2nkrkk94mrd0ba2z38968j7swlfyf8rkk3d" diff --git a/resources/gaia6/last-synced.narHash b/resources/gaia6/last-synced.narHash deleted file mode 100644 index 8fbeb248..00000000 --- a/resources/gaia6/last-synced.narHash +++ /dev/null @@ -1 +0,0 @@ -sha256-L5CeJfMTaXHpZop7lT9w9mPXnEnSBmeHHjSysZmP1c8= diff --git a/resources/goModParser.nix b/resources/goModParser.nix new file mode 100644 index 00000000..bcab4790 --- /dev/null +++ b/resources/goModParser.nix @@ -0,0 +1,130 @@ +# Parse go.mod in Nix +# Returns a Nix structure with the contents of the go.mod passed in +# in normalised form. + +let + inherit (builtins) elemAt mapAttrs split foldl' match filter typeOf; + + # Strip lines with comments & other junk + stripStr = s: elemAt (split "^ *" (elemAt (split " *$" s) 0)) 2; + stripLines = initialLines: foldl' (acc: f: f acc) initialLines [ + # Strip comments + (map (l: stripStr (elemAt (splitString "//" l) 0))) + + # Strip leading tabs characters + (map (l: elemAt (match "(\t)?(.*)" l) 1)) + + # Filter empty lines + (filter (l: l != "")) + ]; + + # Parse lines into a structure + parseLines = lines: (foldl' + (acc: l: + let + m = match "([^ )]*) *(.*)" l; + directive = elemAt m 0; + rest = elemAt m 1; + + # Maintain parser state (inside parens or not) + inDirective = + if rest == "(" then directive + else if rest == ")" then null + else acc.inDirective + ; + + in + { + data = acc.data // ( + if directive == "" && rest == ")" then { } + else if inDirective != null && rest == "(" then { + ${inDirective} = acc.data.${directive} or { }; + } else if inDirective != null then { + ${inDirective} = acc.data.${inDirective} // { ${directive} = rest; }; + } else { + ${directive} = rest; + } + ); + inherit inDirective; + }) + { + inDirective = null; + data = { }; + } + lines + ).data; + + normaliseDirectives = data: ( + let + normaliseString = s: + let + m = builtins.match "([^ ]+) (.+)" s; + in + { + ${elemAt m 0} = elemAt m 1; + }; + require = data.require or { }; + replace = data.replace or { }; + exclude = data.exclude or { }; + in + data // { + require = + if typeOf require == "string" then normaliseString require + else require; + replace = + if typeOf replace == "string" then normaliseString replace + else replace; + exclude = + if typeOf exclude == "string" then normaliseString exclude + else exclude; + } + ); + + parseVersion = ver: + let + m = elemAt (match "([^-]+)-?([^-]*)-?([^-]*)" ver); + v = elemAt (match "([^+]+)\\+?(.*)" (m 0)); + in + { + version = v 0; + versionSuffix = v 1; + date = m 1; + rev = m 2; + }; + + parseReplace = data: ( + data // { + replace = + mapAttrs + (_: v: + let + m = match "=> ([^ ]+) (.+)" v; + m2 = match "=> (.*+)" v; + in + if m != null then { + goPackagePath = elemAt m 0; + version = parseVersion (elemAt m 1); + } else { + path = elemAt m2 0; + }) + data.replace; + } + ); + + parseRequire = data: ( + data // { + require = mapAttrs (_: parseVersion) data.require; + } + ); + + splitString = sep: s: filter (t: t != [ ]) (split sep s); + +in +contents: +foldl' (acc: f: f acc) (splitString "\n" contents) [ + stripLines + parseLines + normaliseDirectives + parseReplace + parseRequire +] diff --git a/resources/hermes/default.nix b/resources/hermes/default.nix deleted file mode 100644 index 35433ca6..00000000 --- a/resources/hermes/default.nix +++ /dev/null @@ -1,25 +0,0 @@ -{ pkgs, ibc-rs-src, generateCargoNix }: -let - name = "ibc-rs"; - - # Create the cargo2nix project - cargoNix = pkgs.callPackage - (generateCargoNix { - inherit name; - src = ibc-rs-src; - }) - { - # Individual crate overrides - defaultCrateOverrides = pkgs.defaultCrateOverrides // { - ${name} = _: { - nativeBuildInputs = with pkgs; [ rustc cargo pkgconfig ]; - buildInputs = with pkgs; [ openssl ]; - }; - openssl-sys = _: { - nativeBuildInputs = with pkgs; [ rustc cargo pkgconfig ]; - buildInputs = with pkgs; [ openssl ]; - }; - }; - }; -in -cargoNix.workspaceMembers.ibc-relayer-cli.build diff --git a/resources/iris/default.nix b/resources/iris/default.nix deleted file mode 100644 index 594f1d64..00000000 --- a/resources/iris/default.nix +++ /dev/null @@ -1,7 +0,0 @@ -{ pkgs, iris-src }: -pkgs.buildGoApplication { - name = "iris"; - src = "${iris-src}"; - modules = ./go-modules.toml; -} - diff --git a/resources/iris/go-modules.toml b/resources/iris/go-modules.toml deleted file mode 100644 index 89a0f59c..00000000 --- a/resources/iris/go-modules.toml +++ /dev/null @@ -1,2726 +0,0 @@ -["cloud.google.com/go"] - sumVersion = "v0.46.3" - ["cloud.google.com/go".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "264def2dd949cdb8a803bb9f50fa29a67b798a6a" - sha256 = "102r2hhr93lcjn97svi382zmng8kp9vkl5kpw3xhd7zv17n42625" - -["cloud.google.com/go/bigquery"] - sumVersion = "v1.0.1" - relPath = "bigquery" - ["cloud.google.com/go/bigquery".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "63c28c0124777c34a3bca5876d3c0965ac730d3b" - sha256 = "1gnvs0q96l37z0ypw426b590jsihn459scdzb0g8vr2c8lwkcrmh" - -["cloud.google.com/go/datastore"] - sumVersion = "v1.0.0" - relPath = "datastore" - ["cloud.google.com/go/datastore".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "c5d562bdb35850f11d6a275d85ab8535265e9821" - sha256 = "0d7ikvbyasifhbxgc2gw97zqc27ihi9a22wdywh5gw2cwjwpw5gi" - -["cloud.google.com/go/firestore"] - sumVersion = "v1.1.0" - relPath = "firestore" - ["cloud.google.com/go/firestore".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "20091f47d3c522ea545f358dd9ac1cdb326bba6f" - sha256 = "0slvm0vx5f8l2vs4k9k8jv8qnz6z9dzq25xmrhza82cj9j51ghvb" - -["cloud.google.com/go/pubsub"] - sumVersion = "v1.0.1" - relPath = "pubsub" - ["cloud.google.com/go/pubsub".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "5e5fbac2c404f4b86d847ebbd8ba7ce457acbaaa" - sha256 = "0vgnys9rl0yicq4mjb1rg199zqfb3sax1ay6jbbyhnm7l36il3nv" - -["cloud.google.com/go/storage"] - sumVersion = "v1.0.0" - relPath = "storage" - ["cloud.google.com/go/storage".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "264def2dd949cdb8a803bb9f50fa29a67b798a6a" - sha256 = "102r2hhr93lcjn97svi382zmng8kp9vkl5kpw3xhd7zv17n42625" - -["dmitri.shuralyov.com/gpu/mtl"] - sumVersion = "v0.0.0-20190408044501-666a987793e9" - ["dmitri.shuralyov.com/gpu/mtl".fetch] - type = "git" - url = "https://dmitri.shuralyov.com/gpu/mtl" - rev = "666a987793e9432fbb48592aa2f3bf3463685dfa" - sha256 = "1isd03hgiwcf2ld1rlp0plrnfz7r4i7c5q4kb6hkcd22axnmrv0z" - -["github.com/99designs/keyring"] - sumVersion = "v1.1.6" - ["github.com/99designs/keyring".fetch] - type = "git" - url = "https://github.com/99designs/keyring" - rev = "68286ee5140ad1c5cce93fcc054e6cc90015b0ea" - sha256 = "08rcdqpxaa9n348q10fw40q4gxpjajkyrighykk71i7mxzwkcgwn" - -["github.com/BurntSushi/toml"] - sumVersion = "v0.3.1" - ["github.com/BurntSushi/toml".fetch] - type = "git" - url = "https://github.com/BurntSushi/toml" - rev = "3012a1dbe2e4bd1391d42b32f0577cb7bbc7f005" - sha256 = "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6" - -["github.com/BurntSushi/xgb"] - sumVersion = "v0.0.0-20160522181843-27f122750802" - ["github.com/BurntSushi/xgb".fetch] - type = "git" - url = "https://github.com/BurntSushi/xgb" - rev = "27f122750802c950b2c869a5b63dafcf590ced95" - sha256 = "18lp2x8f5bljvlz0r7xn744f0c9rywjsb9ifiszqqdcpwhsa0kvj" - -["github.com/ChainSafe/go-schnorrkel"] - sumVersion = "v0.0.0-20200405005733-88cbf1b4c40d" - ["github.com/ChainSafe/go-schnorrkel".fetch] - type = "git" - url = "https://github.com/ChainSafe/go-schnorrkel" - rev = "88cbf1b4c40de64a5ea4863476c6c8ae5433c594" - sha256 = "09ncxdzy4scwmgj96lq83a40bb29nkws1y9x0nim86l9x5jmgi4b" - -["github.com/DataDog/datadog-go"] - sumVersion = "v3.2.0+incompatible" - ["github.com/DataDog/datadog-go".fetch] - type = "git" - url = "https://github.com/DataDog/datadog-go" - rev = "8bfdc335936a79b55b3e2c1080930bc5a3eb57f2" - sha256 = "1m8anll166rwcprjyv3bb0l450p35m0gzn6fs7bcd3ck2s527k7x" - -["github.com/DataDog/zstd"] - sumVersion = "v1.4.5" - ["github.com/DataDog/zstd".fetch] - type = "git" - url = "https://github.com/DataDog/zstd" - rev = "0e71ac6221c995a831bb393da70730c3d3a07091" - sha256 = "0xhgh7nzxq3lzba7w7v3w5mb4nb799v5xh5ylml0hk21ricm7g9s" - -["github.com/Knetic/govaluate"] - sumVersion = "v3.0.1-0.20171022003610-9aa49832a739+incompatible" - ["github.com/Knetic/govaluate".fetch] - type = "git" - url = "https://github.com/Knetic/govaluate" - rev = "9aa49832a739dcd78a5542ff189fb82c3e423116" - sha256 = "12klijhq4fckzbhv0cwygbazj6lvhmdqksha9y6jgfmwzv51kwv5" - -["github.com/OneOfOne/xxhash"] - sumVersion = "v1.2.2" - ["github.com/OneOfOne/xxhash".fetch] - type = "git" - url = "https://github.com/OneOfOne/xxhash" - rev = "6def279d2ce6c81a79dd1c1be580f03bb216fb8a" - sha256 = "1mjfhrwhvxa48rycjnqpqzm521i38h1hdyz6pdwmhd7xb8j6gwi6" - -["github.com/Shopify/sarama"] - sumVersion = "v1.19.0" - ["github.com/Shopify/sarama".fetch] - type = "git" - url = "https://github.com/Shopify/sarama" - rev = "ec843464b50d4c8b56403ec9d589cf41ea30e722" - sha256 = "0q1z3pvcd011yprwzws2s293v4cjvsszhai6vnfrahjcbsz79q0z" - -["github.com/Shopify/toxiproxy"] - sumVersion = "v2.1.4+incompatible" - ["github.com/Shopify/toxiproxy".fetch] - type = "git" - url = "https://github.com/Shopify/toxiproxy" - rev = "49b4ea27da29ae83ad3bfe7f7f090d18cbee1dc3" - sha256 = "07yhsvscdv1qjfc2fyyh9qsrrdwrrw04wadk5gaq4qddcway7vig" - -["github.com/VividCortex/gohistogram"] - sumVersion = "v1.0.0" - ["github.com/VividCortex/gohistogram".fetch] - type = "git" - url = "https://github.com/VividCortex/gohistogram" - rev = "51564d9861991fb0ad0f531c99ef602d0f9866e6" - sha256 = "1ykpvrkri3mzc0z77kdva93ylh0bqg7jq3i024r3iv0i6bwx3rnf" - -["github.com/Workiva/go-datastructures"] - sumVersion = "v1.0.52" - ["github.com/Workiva/go-datastructures".fetch] - type = "git" - url = "https://github.com/Workiva/go-datastructures" - rev = "0819bcaf26091e7c33585441f8961854c2400faa" - sha256 = "0qsj9r3md4n9nxmlvg6cgysivm4ay905ivbk5vi5csnykwnamqmk" - -["github.com/aead/siphash"] - sumVersion = "v1.0.1" - ["github.com/aead/siphash".fetch] - type = "git" - url = "https://github.com/aead/siphash" - rev = "83563a290f60225eb120d724600b9690c3fb536f" - sha256 = "01kd1z82sc4nh3nj9c25aryyp396s7jrqc2kz9d7qq1vy2hdbznc" - -["github.com/afex/hystrix-go"] - sumVersion = "v0.0.0-20180502004556-fa1af6a1f4f5" - ["github.com/afex/hystrix-go".fetch] - type = "git" - url = "https://github.com/afex/hystrix-go" - rev = "fa1af6a1f4f56e0e50d427fe901cd604d8c6fb8a" - sha256 = "0zlj0330j816flvwvis4d4vv1gigpxlghph7awbc9jb7ggf2qssn" - -["github.com/alecthomas/template"] - sumVersion = "v0.0.0-20190718012654-fb15b899a751" - ["github.com/alecthomas/template".fetch] - type = "git" - url = "https://github.com/alecthomas/template" - rev = "fb15b899a75114aa79cc930e33c46b577cc664b1" - sha256 = "1vlasv4dgycydh5wx6jdcvz40zdv90zz1h7836z7lhsi2ymvii26" - -["github.com/alecthomas/units"] - sumVersion = "v0.0.0-20190924025748-f65c72e2690d" - ["github.com/alecthomas/units".fetch] - type = "git" - url = "https://github.com/alecthomas/units" - rev = "f65c72e2690dc4b403c8bd637baf4611cd4c069b" - sha256 = "04jyqm7m3m01ppfy1f9xk4qvrwvs78q9zml6llyf2b3v5k6b2bbc" - -["github.com/antihax/optional"] - sumVersion = "v1.0.0" - ["github.com/antihax/optional".fetch] - type = "git" - url = "https://github.com/antihax/optional" - rev = "c3f0ba9c1a592b971d66b2787679af55b5c58f21" - sha256 = "1ix08vl49qxr58rc6201cl97g1yznhhkwvqldslawind99js4rj0" - -["github.com/apache/thrift"] - sumVersion = "v0.13.0" - ["github.com/apache/thrift".fetch] - type = "git" - url = "https://github.com/apache/thrift" - rev = "cecee50308fc7e6f77f55b3fd906c1c6c471fa2f" - sha256 = "17ckl7p7s3ga33yrjisilsimp80ansqxl54wvpkv0j7vx2zvc13y" - -["github.com/armon/circbuf"] - sumVersion = "v0.0.0-20150827004946-bbbad097214e" - ["github.com/armon/circbuf".fetch] - type = "git" - url = "https://github.com/armon/circbuf" - rev = "bbbad097214e2918d8543d5201d12bfd7bca254d" - sha256 = "1idpr0lzb2px2p3wgfq2276yl7jpaz43df6n91kf790404s4zmk3" - -["github.com/armon/consul-api"] - sumVersion = "v0.0.0-20180202201655-eb2c6b5be1b6" - ["github.com/armon/consul-api".fetch] - type = "git" - url = "https://github.com/armon/consul-api" - rev = "eb2c6b5be1b66bab83016e0b05f01b8d5496ffbd" - sha256 = "1j6fdr1sg36qy4n4xjl7brq739fpm5npq98cmvklzjc9qrx98nk9" - -["github.com/armon/go-metrics"] - sumVersion = "v0.3.6" - ["github.com/armon/go-metrics".fetch] - type = "git" - url = "https://github.com/armon/go-metrics" - rev = "8ca742bd545671bedae063d0672cb3c8da7d4437" - sha256 = "06840krwz2qip0xplixza59s7a1ibvjy04iwcnk5mw2w1kmli9yn" - -["github.com/armon/go-radix"] - sumVersion = "v0.0.0-20180808171621-7fddfc383310" - ["github.com/armon/go-radix".fetch] - type = "git" - url = "https://github.com/armon/go-radix" - rev = "7fddfc383310abc091d79a27f116d30cf0424032" - sha256 = "0y8chspn14n9xpsfb9gxnnf819rfpriaz64v81p7873a42kkhxb4" - -["github.com/aryann/difflib"] - sumVersion = "v0.0.0-20170710044230-e206f873d14a" - ["github.com/aryann/difflib".fetch] - type = "git" - url = "https://github.com/aryann/difflib" - rev = "e206f873d14a916d3d26c40ab667bca123f365a3" - sha256 = "00zb9sx6l6b2zq614x45zlyshl20zjhwfj8r5krw4f9y0mx3n2dm" - -["github.com/aws/aws-lambda-go"] - sumVersion = "v1.13.3" - ["github.com/aws/aws-lambda-go".fetch] - type = "git" - url = "https://github.com/aws/aws-lambda-go" - rev = "b5b7267d297de263cc5b61f8c37543daa9c95ffd" - sha256 = "049zq6gr9xdjjsxd3yimawqlh2ibfkj2434cnjm4x93ph62hppm9" - -["github.com/aws/aws-sdk-go"] - sumVersion = "v1.27.0" - ["github.com/aws/aws-sdk-go".fetch] - type = "git" - url = "https://github.com/aws/aws-sdk-go" - rev = "a1e6946e8014a793d989e64ef5566315010ce898" - sha256 = "1b2lkbvlbgkas1l7cilnanr4mc0z2l28ii5bpsrcp3azn6wdjfpx" - -["github.com/aws/aws-sdk-go-v2"] - sumVersion = "v0.18.0" - ["github.com/aws/aws-sdk-go-v2".fetch] - type = "git" - url = "https://github.com/aws/aws-sdk-go-v2" - rev = "b0e297c21991cec8a5d645714ea400caa790cb43" - sha256 = "00nrd8bs80w5k0ms31gqjpnl2mf0jav4hr8m54w8a7l13w5szy7s" - -["github.com/beorn7/perks"] - sumVersion = "v1.0.1" - ["github.com/beorn7/perks".fetch] - type = "git" - url = "https://github.com/beorn7/perks" - rev = "37c8de3658fcb183f997c4e13e8337516ab753e6" - sha256 = "17n4yygjxa6p499dj3yaqzfww2g7528165cl13haj97hlx94dgl7" - -["github.com/bgentry/speakeasy"] - sumVersion = "v0.1.0" - ["github.com/bgentry/speakeasy".fetch] - type = "git" - url = "https://github.com/bgentry/speakeasy" - rev = "4aabc24848ce5fd31929f7d1e4ea74d3709c14cd" - sha256 = "02dfrj0wyphd3db9zn2mixqxwiz1ivnyc5xc7gkz58l5l27nzp8s" - -["github.com/bketelsen/crypt"] - sumVersion = "v0.0.3-0.20200106085610-5cbc8cc4026c" - ["github.com/bketelsen/crypt".fetch] - type = "git" - url = "https://github.com/bketelsen/crypt" - rev = "5cbc8cc4026c0c1d3bf9c5d4e5a30398f99c99a9" - sha256 = "006772d50c73llgz8chvynndk28qxcyr1fd18sm0b5w1g1rdw2wp" - -["github.com/btcsuite/btcd"] - sumVersion = "v0.21.0-beta" - ["github.com/btcsuite/btcd".fetch] - type = "git" - url = "https://github.com/btcsuite/btcd" - rev = "56cc42fe07c206e76812fc57a216b59c41189f04" - sha256 = "19n9qfbnqfzz6j0pi2yzgzm4yvvqdkj5d4jhfv7sznv9jzzxwk7k" - -["github.com/btcsuite/btclog"] - sumVersion = "v0.0.0-20170628155309-84c8d2346e9f" - ["github.com/btcsuite/btclog".fetch] - type = "git" - url = "https://github.com/btcsuite/btclog" - rev = "84c8d2346e9fc8c7b947e243b9c24e6df9fd206a" - sha256 = "02dl46wcnfpg9sqvg0ipipkpnd7lrf4fnvb9zy56jqa7mfcwc7wk" - -["github.com/btcsuite/btcutil"] - sumVersion = "v1.0.2" - ["github.com/btcsuite/btcutil".fetch] - type = "git" - url = "https://github.com/btcsuite/btcutil" - rev = "b2bf7f89d674a3702182b7e15f52807896051af3" - sha256 = "0wwykb4cbq8xj2mls2mxma5vaahdgdy3vqw1r2fi4wyj0yr4kyw9" - -["github.com/btcsuite/go-socks"] - sumVersion = "v0.0.0-20170105172521-4720035b7bfd" - ["github.com/btcsuite/go-socks".fetch] - type = "git" - url = "https://github.com/btcsuite/go-socks" - rev = "4720035b7bfd2a9bb130b1c184f8bbe41b6f0d0f" - sha256 = "18cv2icj059lq4s99p6yh91hlas5f2gi3f1p4c10sjgwrs933d7b" - -["github.com/btcsuite/goleveldb"] - sumVersion = "v1.0.0" - ["github.com/btcsuite/goleveldb".fetch] - type = "git" - url = "https://github.com/btcsuite/goleveldb" - rev = "3fd0373267b6461dbefe91cef614278064d05465" - sha256 = "0kwllw5yflpn362xbsqphbm10qcy08v3zqs15zbyp4mkjjk0bl9z" - -["github.com/btcsuite/snappy-go"] - sumVersion = "v1.0.0" - ["github.com/btcsuite/snappy-go".fetch] - type = "git" - url = "https://github.com/btcsuite/snappy-go" - rev = "b3db38edf0a9a11a115eb6b022d8c946024a9ac0" - sha256 = "0b2536a58l6advb0ag9ywz7i5cdzclvmm3x796jydv1yrbj5x2vk" - -["github.com/btcsuite/websocket"] - sumVersion = "v0.0.0-20150119174127-31079b680792" - ["github.com/btcsuite/websocket".fetch] - type = "git" - url = "https://github.com/btcsuite/websocket" - rev = "31079b6807923eb23992c421b114992b95131b55" - sha256 = "0xpkf257ml6fpfdgv7hxxc41n0d5yxxm3njm50qpzp7j71l9cjwa" - -["github.com/btcsuite/winsvc"] - sumVersion = "v1.0.0" - ["github.com/btcsuite/winsvc".fetch] - type = "git" - url = "https://github.com/btcsuite/winsvc" - rev = "f8fb11f83f7e860e3769a08e6811d1b399a43722" - sha256 = "0nsw8y86a5hzr2a3j6ch9myrpccj5bnsgaxpgajhzfk5d31xlw1z" - -["github.com/casbin/casbin/v2"] - sumVersion = "v2.1.2" - ["github.com/casbin/casbin/v2".fetch] - type = "git" - url = "https://github.com/casbin/casbin" - rev = "31a4cf3e119fdace8f02263315e83ca37a3fcc18" - sha256 = "175y7v4wlr26g23k551676zq3n3cxv8wjm3zsfhyxy3liikg7899" - -["github.com/cenkalti/backoff"] - sumVersion = "v2.2.1+incompatible" - ["github.com/cenkalti/backoff".fetch] - type = "git" - url = "https://github.com/cenkalti/backoff" - rev = "5267b6dd4d2666b980a911bf235efa276222cbe2" - sha256 = "1mf4lsl3rbb8kk42x0mrhzzy4ikqy0jf6nxpzhkr02rdgwh6rjk8" - -["github.com/census-instrumentation/opencensus-proto"] - sumVersion = "v0.2.1" - ["github.com/census-instrumentation/opencensus-proto".fetch] - type = "git" - url = "https://github.com/census-instrumentation/opencensus-proto" - rev = "d89fa54de508111353cb0b06403c00569be780d8" - sha256 = "19fcx3sc99i5dsklny6r073z5j20vlwn2xqm6di1q3b1xwchzqfj" - -["github.com/cespare/xxhash"] - sumVersion = "v1.1.0" - ["github.com/cespare/xxhash".fetch] - type = "git" - url = "https://github.com/cespare/xxhash" - rev = "569f7c8abf1f58d9043ab804d364483cb1c853b6" - sha256 = "1qyzlcdcayavfazvi03izx83fvip8h36kis44zr2sg7xf6sx6l4x" - -["github.com/cespare/xxhash/v2"] - sumVersion = "v2.1.1" - ["github.com/cespare/xxhash/v2".fetch] - type = "git" - url = "https://github.com/cespare/xxhash" - rev = "d7df74196a9e781ede915320c11c378c1b2f3a1f" - sha256 = "0rl5rs8546zj1vzggv38w93wx0b5dvav7yy5hzxa8kw7iikv1cgr" - -["github.com/circonus-labs/circonus-gometrics"] - sumVersion = "v2.3.1+incompatible" - ["github.com/circonus-labs/circonus-gometrics".fetch] - type = "git" - url = "https://github.com/circonus-labs/circonus-gometrics" - rev = "9eb673b3d5f6bf1c932ae7596831eefb0c0c3c2f" - sha256 = "0s2wir711h0k2h8xsypgpzshccnx8jkwjfni7n32l7wd8yng9ngs" - -["github.com/circonus-labs/circonusllhist"] - sumVersion = "v0.1.3" - ["github.com/circonus-labs/circonusllhist".fetch] - type = "git" - url = "https://github.com/circonus-labs/circonusllhist" - rev = "87d4d00b35adeefe4911ece727838749e0fab113" - sha256 = "127js92p5gx84vfj3vdmf7nn6dmqmkrxg927z0jh91fdkipmmv3i" - -["github.com/clbanning/x2j"] - sumVersion = "v0.0.0-20191024224557-825249438eec" - ["github.com/clbanning/x2j".fetch] - type = "git" - url = "https://github.com/clbanning/x2j" - rev = "825249438eec392bc87b980fb635b336e496a888" - sha256 = "1khqy1m22vnyw0x24i4bwd37zvgzj25q139mh79bddj1rw5hf7hy" - -["github.com/client9/misspell"] - sumVersion = "v0.3.4" - ["github.com/client9/misspell".fetch] - type = "git" - url = "https://github.com/client9/misspell" - rev = "b90dc15cfd220ecf8bbc9043ecb928cef381f011" - sha256 = "1vwf33wsc4la25zk9nylpbp9px3svlmldkm0bha4hp56jws4q9cs" - -["github.com/cncf/udpa/go"] - sumVersion = "v0.0.0-20201120205902-5459f2c99403" - relPath = "go" - ["github.com/cncf/udpa/go".fetch] - type = "git" - url = "https://github.com/cncf/udpa" - rev = "5459f2c994033b0afed7e4a70ac7e90c90c1ffee" - sha256 = "0i3al193dsp91j7iywqrm6fr56y2sz51ci4vf19mb3j4n2x44gsi" - -["github.com/cockroachdb/datadriven"] - sumVersion = "v0.0.0-20190809214429-80d97fb3cbaa" - ["github.com/cockroachdb/datadriven".fetch] - type = "git" - url = "https://github.com/cockroachdb/datadriven" - rev = "80d97fb3cbaa752564320702f409fdb2ef3da0ef" - sha256 = "0rvavka9zhri6r50n8fy98247fl5vycb1hffjrhshsicjv1frmlp" - -["github.com/codahale/hdrhistogram"] - sumVersion = "v0.0.0-20161010025455-3a0bb77429bd" - ["github.com/codahale/hdrhistogram".fetch] - type = "git" - url = "https://github.com/codahale/hdrhistogram" - rev = "3a0bb77429bd3a61596f5e8a3172445844342120" - sha256 = "1zampgfjbxy192cbwdi7g86l1idxaam96d834wncnpfdwgh5kl57" - -["github.com/confio/ics23/go"] - sumVersion = "v0.6.3" - relPath = "go" - ["github.com/confio/ics23/go".fetch] - type = "git" - url = "https://github.com/confio/ics23" - rev = "f173e6211efbf546bf9fcdc5cc29e5e055151666" - sha256 = "1zf30jzr9ill906pkp6kgnlh5hw3mk4m5vd1jpi7rinr5baaddnd" - -["github.com/coreos/bbolt"] - sumVersion = "v1.3.2" - ["github.com/coreos/bbolt".fetch] - type = "git" - url = "https://github.com/coreos/bbolt" - rev = "63597a96ec0ad9e6d43c3fc81e809909e0237461" - sha256 = "13d5l6p6c5wvkr6vn9hkhz9c593qifn7fgx0hg4d6jcvg1y0bnm2" - -["github.com/coreos/etcd"] - sumVersion = "v3.3.13+incompatible" - ["github.com/coreos/etcd".fetch] - type = "git" - url = "https://github.com/coreos/etcd" - rev = "98d308426819d892e149fe45f6fd542464cb1f9d" - sha256 = "1kac4qfr83f2hdz35403f1ald05wc85vvhw79vxb431n61jvyaqy" - -["github.com/coreos/go-etcd"] - sumVersion = "v2.0.0+incompatible" - ["github.com/coreos/go-etcd".fetch] - type = "git" - url = "https://github.com/coreos/go-etcd" - rev = "f02171fbd43c7b9b53ce8679b03235a1ef3c7b12" - sha256 = "1xb34hzaa1lkbq5vkzy9vcz6gqwj7hp6cdbvyack2bf28dwn33jj" - -["github.com/coreos/go-semver"] - sumVersion = "v0.3.0" - ["github.com/coreos/go-semver".fetch] - type = "git" - url = "https://github.com/coreos/go-semver" - rev = "e214231b295a8ea9479f11b70b35d5acf3556d9b" - sha256 = "0770h1mpig2j5sbiha3abnwaw8p6dg9i87r8pc7cf6m4kwml3sc9" - -["github.com/coreos/go-systemd"] - sumVersion = "v0.0.0-20190321100706-95778dfbb74e" - ["github.com/coreos/go-systemd".fetch] - type = "git" - url = "https://github.com/coreos/go-systemd" - rev = "95778dfbb74eb7e4dbaf43bf7d71809650ef8076" - sha256 = "1s3bg9p78wkixn2bqb2p23wbsqfg949ml6crw2b498s71mwh8rcf" - -["github.com/coreos/pkg"] - sumVersion = "v0.0.0-20180928190104-399ea9e2e55f" - ["github.com/coreos/pkg".fetch] - type = "git" - url = "https://github.com/coreos/pkg" - rev = "399ea9e2e55f791b6e3d920860dbecb99c3692f0" - sha256 = "0nxbn0m7lr4dg0yrwnvlkfiyg3ndv8vdpssjx7b714nivpc6ar0y" - -["github.com/cosmos/cosmos-sdk"] - sumVersion = "v0.42.4" - ["github.com/cosmos/cosmos-sdk".fetch] - type = "git" - url = "https://github.com/cosmos/cosmos-sdk" - rev = "c4864e9f85011b3e971885ea995a0021c01a885d" - sha256 = "130kqrg8iz3g3jxp179k5rshgxm966nfz272k4ac9jhgzdhyhy7w" - -["github.com/cosmos/go-bip39"] - sumVersion = "v1.0.0" - ["github.com/cosmos/go-bip39".fetch] - type = "git" - url = "https://github.com/cosmos/go-bip39" - rev = "3027fe585f89a39da9b7389bd4e3482e056f6d3f" - sha256 = "0q063bsalxffq41l3f6xlr50xa2985liw6y5niiwnjysdc5rlva2" - -["github.com/cosmos/iavl"] - sumVersion = "v0.15.3" - ["github.com/cosmos/iavl".fetch] - type = "git" - url = "https://github.com/cosmos/iavl" - rev = "257e8b9292e784aef5b755d9f8fd305eb1e29bb0" - sha256 = "0r4ysz3fm7y79zwmrvajkq5w1zzcd4b4fzd28wacahvfz1vqwy6s" - -["github.com/cosmos/ledger-cosmos-go"] - sumVersion = "v0.11.1" - ["github.com/cosmos/ledger-cosmos-go".fetch] - type = "git" - url = "https://github.com/cosmos/ledger-cosmos-go" - rev = "c03f491cbf1740e5ec7919683019c2c84d9fbc10" - sha256 = "0c584nig16mz1i5w1pp741q1ymb1ln70kvxkv3l62rkdymbbwn6a" - -["github.com/cosmos/ledger-go"] - sumVersion = "v0.9.2" - ["github.com/cosmos/ledger-go".fetch] - type = "git" - url = "https://github.com/cosmos/ledger-go" - rev = "1c99b41f1877b58e3517ef93012cc76fe5cd335b" - sha256 = "10vnj13c8diq3bxvf2m46s8ifj4fj1iwsw5hg7i1h55h1v83x0ni" - -["github.com/cpuguy83/go-md2man"] - sumVersion = "v1.0.10" - ["github.com/cpuguy83/go-md2man".fetch] - type = "git" - url = "https://github.com/cpuguy83/go-md2man" - rev = "7762f7e404f8416dfa1d9bb6a8c192aa9acb4d19" - sha256 = "1bqkf2bvy1dns9zd24k81mh2p1zxsx2nhq5cj8dz2vgkv1xkh60i" - -["github.com/cpuguy83/go-md2man/v2"] - sumVersion = "v2.0.0" - ["github.com/cpuguy83/go-md2man/v2".fetch] - type = "git" - url = "https://github.com/cpuguy83/go-md2man" - rev = "f79a8a8ca69da163eee19ab442bedad7a35bba5a" - sha256 = "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv" - -["github.com/creack/pty"] - sumVersion = "v1.1.7" - ["github.com/creack/pty".fetch] - type = "git" - url = "https://github.com/creack/pty" - rev = "2769f65a3a94eb8f876f44a0459d24ae7ad2e488" - sha256 = "1plwwlk1i9b80zv8zdplvv81shfyc9gf0flydnydsh5sr3ib5vrc" - -["github.com/danieljoos/wincred"] - sumVersion = "v1.0.2" - ["github.com/danieljoos/wincred".fetch] - type = "git" - url = "https://github.com/danieljoos/wincred" - rev = "b892d337201d1400370ebf4fa919941c9ea222ee" - sha256 = "1ym8mygjrf3rw1qka9irw76b2yisr2l5pq2w581s40yldnbfq4lc" - -["github.com/davecgh/go-spew"] - sumVersion = "v1.1.1" - ["github.com/davecgh/go-spew".fetch] - type = "git" - url = "https://github.com/davecgh/go-spew" - rev = "8991bc29aa16c548c550c7ff78260e27b9ab7c73" - sha256 = "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y" - -["github.com/decred/dcrd/lru"] - sumVersion = "v1.0.0" - relPath = "lru" - ["github.com/decred/dcrd/lru".fetch] - type = "git" - url = "https://github.com/decred/dcrd" - rev = "5c3e0d6454001c8d14fcf06be94381d93991aaea" - sha256 = "0m2mxrkbnr4dfan9ljxq9dd5hhqmpx5n9pd4hnwn5mlj4zgv018a" - -["github.com/dgraph-io/badger/v2"] - sumVersion = "v2.2007.2" - ["github.com/dgraph-io/badger/v2".fetch] - type = "git" - url = "https://github.com/dgraph-io/badger" - rev = "d5a25b83fbf4f3f61ff03a9202e36f5b75544426" - sha256 = "0cck8ap61bi56dv070cirkkl6fjavz05kwyxjv08lbfykhlpz3da" - -["github.com/dgraph-io/ristretto"] - sumVersion = "v0.0.3" - ["github.com/dgraph-io/ristretto".fetch] - type = "git" - url = "https://github.com/dgraph-io/ristretto" - rev = "bcb54d096f2303ce80960e125b5991ac4d6325c3" - sha256 = "1v29j6b0r87pf5dwsxi3rxa8yavkl3h79i63rbddfd42p2jyssyg" - -["github.com/dgrijalva/jwt-go"] - sumVersion = "v3.2.0+incompatible" - ["github.com/dgrijalva/jwt-go".fetch] - type = "git" - url = "https://github.com/dgrijalva/jwt-go" - rev = "06ea1031745cb8b3dab3f6a236daf2b0aa468b7e" - sha256 = "08m27vlms74pfy5z79w67f9lk9zkx6a9jd68k3c4msxy75ry36mp" - -["github.com/dgryski/go-farm"] - sumVersion = "v0.0.0-20200201041132-a6ae2369ad13" - ["github.com/dgryski/go-farm".fetch] - type = "git" - url = "https://github.com/dgryski/go-farm" - rev = "a6ae2369ad13dc757768086f0cb902728c7e03e5" - sha256 = "1qbz4a4fv3853ix974x02q1129kc4xxf0c92ib5sdpsq04zjbqv8" - -["github.com/dgryski/go-sip13"] - sumVersion = "v0.0.0-20181026042036-e10d5fee7954" - ["github.com/dgryski/go-sip13".fetch] - type = "git" - url = "https://github.com/dgryski/go-sip13" - rev = "e10d5fee79544bd84105c9329adcc7b745fd588c" - sha256 = "15fyibfas209ljz3f7g07kdmfbl3hhyd9n5n7aq5n5p9m5mn41d6" - -["github.com/dustin/go-humanize"] - sumVersion = "v1.0.0" - ["github.com/dustin/go-humanize".fetch] - type = "git" - url = "https://github.com/dustin/go-humanize" - rev = "9f541cc9db5d55bce703bd99987c9d5cb8eea45e" - sha256 = "1kqf1kavdyvjk7f8kx62pnm7fbypn9z1vbf8v2qdh3y7z7a0cbl3" - -["github.com/dvsekhvalnov/jose2go"] - sumVersion = "v0.0.0-20200901110807-248326c1351b" - ["github.com/dvsekhvalnov/jose2go".fetch] - type = "git" - url = "https://github.com/dvsekhvalnov/jose2go" - rev = "248326c1351b716b2820b01a49d53837bfd9ac59" - sha256 = "06zj4n96pa5lnx8pxjhn3vis01fjklhsdqbcbqdv9m4kc7qip27s" - -["github.com/eapache/go-resiliency"] - sumVersion = "v1.1.0" - ["github.com/eapache/go-resiliency".fetch] - type = "git" - url = "https://github.com/eapache/go-resiliency" - rev = "ea41b0fad31007accc7f806884dcdf3da98b79ce" - sha256 = "1zmgw3c4w5r6m2r340n4jc5l5ll3m3nbszqrmrgbqc2xixxyk2gx" - -["github.com/eapache/go-xerial-snappy"] - sumVersion = "v0.0.0-20180814174437-776d5712da21" - ["github.com/eapache/go-xerial-snappy".fetch] - type = "git" - url = "https://github.com/eapache/go-xerial-snappy" - rev = "776d5712da21bc4762676d614db1d8a64f4238b0" - sha256 = "0ncc41dv7xwb1znyzmzh7cvs6j5fzz0f1n8h1v3grl9ma6s1si9d" - -["github.com/eapache/queue"] - sumVersion = "v1.1.0" - ["github.com/eapache/queue".fetch] - type = "git" - url = "https://github.com/eapache/queue" - rev = "44cc805cf13205b55f69e14bcb69867d1ae92f98" - sha256 = "07dp54n94gn3gsvdcki56yqh7py7wqqigxbamhxwgbr05n61fqyg" - -["github.com/edsrzf/mmap-go"] - sumVersion = "v1.0.0" - ["github.com/edsrzf/mmap-go".fetch] - type = "git" - url = "https://github.com/edsrzf/mmap-go" - rev = "188cc3b666ba704534fa4f96e9e61f21f1e1ba7c" - sha256 = "0ajmkk5cj6xmbngx3nhar7672i2vrkwpnbv1f26i5p4f5aydhl4k" - -["github.com/enigmampc/btcutil"] - sumVersion = "v1.0.3-0.20200723161021-e2fb6adb2a25" - ["github.com/enigmampc/btcutil".fetch] - type = "git" - url = "https://github.com/enigmampc/btcutil" - rev = "e2fb6adb2a25f868283c4f243c873ad6b4894974" - sha256 = "0r2gf20acxnrcrch57hvgg8qp8ic96w6bx0j080cfya04xib3dxv" - -["github.com/envoyproxy/go-control-plane"] - sumVersion = "v0.9.9-0.20201210154907-fd9021fe5dad" - ["github.com/envoyproxy/go-control-plane".fetch] - type = "git" - url = "https://github.com/envoyproxy/go-control-plane" - rev = "fd9021fe5dad647bcaabc42b4602c90e1bb6a038" - sha256 = "0piyk6pk36x2qr3bhys2k240pfwz3bv64fhi2l0vx1mzwiddapbm" - -["github.com/envoyproxy/protoc-gen-validate"] - sumVersion = "v0.1.0" - ["github.com/envoyproxy/protoc-gen-validate".fetch] - type = "git" - url = "https://github.com/envoyproxy/protoc-gen-validate" - rev = "9eff07ddfcb4001aa1aab280648153f46e1a8ddc" - sha256 = "0kxd3wwh3xwqk0r684hsy281xq4y71cd11d4q2hspcjbnlbwh7cy" - -["github.com/facebookgo/ensure"] - sumVersion = "v0.0.0-20160127193407-b4ab57deab51" - ["github.com/facebookgo/ensure".fetch] - type = "git" - url = "https://github.com/facebookgo/ensure" - rev = "b4ab57deab51ee655ae4bd85281f0715a068016d" - sha256 = "19icavc3sg0mdz8151q3vp2vn3ipq53mnb9h9n57w32amyyszl4d" - -["github.com/facebookgo/stack"] - sumVersion = "v0.0.0-20160209184415-751773369052" - ["github.com/facebookgo/stack".fetch] - type = "git" - url = "https://github.com/facebookgo/stack" - rev = "751773369052141c013c6e827a71e8f35c07879c" - sha256 = "07yr05mz7h007ldpij90zjflwgixp148sbyrdlh1fj5bikr4p8m3" - -["github.com/facebookgo/subset"] - sumVersion = "v0.0.0-20150612182917-8dac2c3c4870" - ["github.com/facebookgo/subset".fetch] - type = "git" - url = "https://github.com/facebookgo/subset" - rev = "8dac2c3c48703541e481feddf22975953d4ff842" - sha256 = "0kyc2m5wxjzj4fwspybgn1mgjzhbdfnadpwy9mrw1s05bh21rgai" - -["github.com/fatih/color"] - sumVersion = "v1.7.0" - ["github.com/fatih/color".fetch] - type = "git" - url = "https://github.com/fatih/color" - rev = "5b77d2a35fb0ede96d138fc9a99f5c9b6aef11b4" - sha256 = "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv" - -["github.com/felixge/httpsnoop"] - sumVersion = "v1.0.1" - ["github.com/felixge/httpsnoop".fetch] - type = "git" - url = "https://github.com/felixge/httpsnoop" - rev = "33ec42cfe005395fb4cc4b296781f65d7ffef2c3" - sha256 = "0ncd8lar5zxiwjhsp315s4hsl4bhnm271h49jhyxc66r5yffgmac" - -["github.com/fortytw2/leaktest"] - sumVersion = "v1.3.0" - ["github.com/fortytw2/leaktest".fetch] - type = "git" - url = "https://github.com/fortytw2/leaktest" - rev = "9a23578d06a26ec1b47bfc8965bf5e7011df8bd6" - sha256 = "0487zghyxqzk6zdbhd2j074pcc2l15l4sfg5clrjqwfbql7519wx" - -["github.com/franela/goblin"] - sumVersion = "v0.0.0-20200105215937-c9ffbefa60db" - ["github.com/franela/goblin".fetch] - type = "git" - url = "https://github.com/franela/goblin" - rev = "c9ffbefa60dbcc40777294734ec3664f35a8c838" - sha256 = "0qdhg6i4bcf6inmzq2dbdv0r0c7clw1vd3n2zs4896ig0aws6vff" - -["github.com/franela/goreq"] - sumVersion = "v0.0.0-20171204163338-bcd34c9993f8" - ["github.com/franela/goreq".fetch] - type = "git" - url = "https://github.com/franela/goreq" - rev = "bcd34c9993f899273c74baaa95e15386cd97b6e7" - sha256 = "055a20nc5f1blk2swiwpwqpxd3z495ms1qr6a7cbbss1w3a7a7sb" - -["github.com/fsnotify/fsnotify"] - sumVersion = "v1.4.9" - ["github.com/fsnotify/fsnotify".fetch] - type = "git" - url = "https://github.com/fsnotify/fsnotify" - rev = "45d7d09e39ef4ac08d493309fa031790c15bfe8a" - sha256 = "1i1r72knpbfwwql9frn9bqc3nhfc2ai5m6qllcyr6wban62lr40x" - -["github.com/ghodss/yaml"] - sumVersion = "v1.0.0" - ["github.com/ghodss/yaml".fetch] - type = "git" - url = "https://github.com/ghodss/yaml" - rev = "0ca9ea5df5451ffdf184b4428c902747c2c11cd7" - sha256 = "0skwmimpy7hlh7pva2slpcplnm912rp3igs98xnqmn859kwa5v8g" - -["github.com/go-gl/glfw"] - sumVersion = "v0.0.0-20190409004039-e6da0acd62b1" - ["github.com/go-gl/glfw".fetch] - type = "git" - url = "https://github.com/go-gl/glfw" - rev = "e6da0acd62b1b57ee2799d4d0a76a7d4514dc5bc" - sha256 = "0prvx5r7q8yrhqvnwibv4xz3dayjbq36yajzqvh0z4lqsh4hyhch" - -["github.com/go-gl/glfw/v3.3/glfw"] - sumVersion = "v0.0.0-20200222043503-6f7a984d4dc4" - relPath = "v3.3/glfw" - ["github.com/go-gl/glfw/v3.3/glfw".fetch] - type = "git" - url = "https://github.com/go-gl/glfw" - rev = "6f7a984d4dc470c3f197229ad1991ae9e211bba2" - sha256 = "1nyv7h08qf4dp8w9pmcnrc6vv9bkwj8fil6pz0mkbss5hf4i8xcq" - -["github.com/go-kit/kit"] - sumVersion = "v0.10.0" - ["github.com/go-kit/kit".fetch] - type = "git" - url = "https://github.com/go-kit/kit" - rev = "cc938d52e0cdf4c811ab203f428fcd06f9d9a148" - sha256 = "1cqlrjf90b5pg6sj4nh0qz5wplnsjmcdgrvs6wfdjy5p71f17msa" - -["github.com/go-logfmt/logfmt"] - sumVersion = "v0.5.0" - ["github.com/go-logfmt/logfmt".fetch] - type = "git" - url = "https://github.com/go-logfmt/logfmt" - rev = "3be5f6aae7db841d31dc5e1b3bb7b4cff19200b3" - sha256 = "0mcvgimnf6a15hhpmmv42kzbsn618f0zi2j3np49xkq1113d7yyj" - -["github.com/go-sql-driver/mysql"] - sumVersion = "v1.4.0" - ["github.com/go-sql-driver/mysql".fetch] - type = "git" - url = "https://github.com/go-sql-driver/mysql" - rev = "d523deb1b23d913de5bdada721a6071e71283618" - sha256 = "1jwz2j3vd5hlzmnkh20d4276yd8cxy7pac3x3dfi52jkm82ms99n" - -["github.com/go-stack/stack"] - sumVersion = "v1.8.0" - ["github.com/go-stack/stack".fetch] - type = "git" - url = "https://github.com/go-stack/stack" - rev = "2fee6af1a9795aafbe0253a0cfbdf668e1fb8a9a" - sha256 = "0wk25751ryyvxclyp8jdk5c3ar0cmfr8lrjb66qbg4808x66b96v" - -["github.com/godbus/dbus"] - sumVersion = "v0.0.0-20190726142602-4481cbc300e2" - ["github.com/godbus/dbus".fetch] - type = "git" - url = "https://github.com/godbus/dbus" - rev = "4481cbc300e2df0c0b3cecc18b6c16c6c0bb885d" - sha256 = "0h0cl1r136g0kxbw3i7ggb9mhavpi1yr7d7312iwhkxm93dxkphg" - -["github.com/gogo/gateway"] - sumVersion = "v1.1.0" - ["github.com/gogo/gateway".fetch] - type = "git" - url = "https://github.com/gogo/gateway" - rev = "817b4cf527e834d7d563b7329355c45801d5e02d" - sha256 = "1jj7vr3sdk7yz8jl1kzv8473pkhd388f95byc8pdwrh6y7fh0xrq" - -["github.com/gogo/googleapis"] - sumVersion = "v1.1.0" - ["github.com/gogo/googleapis".fetch] - type = "git" - url = "https://github.com/gogo/googleapis" - rev = "8558fb44d2f1fc223118afc694129d2c2d2924d1" - sha256 = "0gkdk3k2wc0l8650s0k29kc01bi8nf14h741phmcsbi6li9y5sk1" - -["github.com/gogo/protobuf"] - sumVersion = "v1.3.3-alpha.regen.1" - vendorPath = "github.com/regen-network/protobuf" - ["github.com/gogo/protobuf".fetch] - type = "git" - url = "https://github.com/regen-network/protobuf" - rev = "8a70ddfdaf94e68497f7b26a6896ad75e03b6616" - sha256 = "0jmhiv9gq0a6brs9p8dk9phafs62yggyhlav07cqwakcq70ss6r2" - -["github.com/golang/glog"] - sumVersion = "v0.0.0-20160126235308-23def4e6c14b" - ["github.com/golang/glog".fetch] - type = "git" - url = "https://github.com/golang/glog" - rev = "23def4e6c14b4da8ac2ed8007337bc5eb5007998" - sha256 = "0jb2834rw5sykfr937fxi8hxi2zy80sj2bdn9b3jb4b26ksqng30" - -["github.com/golang/groupcache"] - sumVersion = "v0.0.0-20190702054246-869f871628b6" - ["github.com/golang/groupcache".fetch] - type = "git" - url = "https://github.com/golang/groupcache" - rev = "869f871628b6baa9cfbc11732cdf6546b17c1298" - sha256 = "0r4nk8129bvx50qb4xzjaay39b2h6k7cbdqqzdlanmc82ygczsbw" - -["github.com/golang/mock"] - sumVersion = "v1.4.4" - ["github.com/golang/mock".fetch] - type = "git" - url = "https://github.com/golang/mock" - rev = "f7b1909c82a8958747e5c87c6a5c3b2eaed8a33d" - sha256 = "1lj0dvd6div4jaq1s0afpwqaq9ah8cxhkq93wii2ably1xmp2l0a" - -["github.com/golang/protobuf"] - sumVersion = "v1.4.3" - ["github.com/golang/protobuf".fetch] - type = "git" - url = "https://github.com/golang/protobuf" - rev = "4846b58453b3708320bdb524f25cc5a1d9cda4d4" - sha256 = "1kf1d7xmyjvy0z6j5czp6nqyvj9zrk6liv6znif08927xqfrzyln" - -["github.com/golang/snappy"] - sumVersion = "v0.0.2" - ["github.com/golang/snappy".fetch] - type = "git" - url = "https://github.com/golang/snappy" - rev = "196ae77b8a26000fa30caa8b2b541e09674dbc43" - sha256 = "0mxjak9nxzknxrc8qh3hj0q57a2x8r9h7bm39yc1pw8xfbygmzww" - -["github.com/google/btree"] - sumVersion = "v1.0.0" - ["github.com/google/btree".fetch] - type = "git" - url = "https://github.com/google/btree" - rev = "4030bb1f1f0c35b30ca7009e9ebd06849dd45306" - sha256 = "0ba430m9fbnagacp57krgidsyrgp3ycw5r7dj71brgp5r52g82p6" - -["github.com/google/go-cmp"] - sumVersion = "v0.5.0" - ["github.com/google/go-cmp".fetch] - type = "git" - url = "https://github.com/google/go-cmp" - rev = "77ae86f624cb174e21763cffcbbf070eb06cb016" - sha256 = "04pzp583p6b32y34c6jygfxarff9qjs39rarvfh6467z24sdd9k4" - -["github.com/google/gofuzz"] - sumVersion = "v1.0.0" - ["github.com/google/gofuzz".fetch] - type = "git" - url = "https://github.com/google/gofuzz" - rev = "f140a6486e521aad38f5917de355cbf147cc0496" - sha256 = "0qz439qvccm91w0mmjz4fqgx48clxdwagkvvx89cr43q1d4iry36" - -["github.com/google/martian"] - sumVersion = "v2.1.0+incompatible" - ["github.com/google/martian".fetch] - type = "git" - url = "https://github.com/google/martian" - rev = "195b986b4b6d4c513582cf4d2b8c4fd7e2494f7e" - sha256 = "197hil6vrjk50b9wvwyzf61csid83whsjj6ik8mc9r2lryxlyyrp" - -["github.com/google/orderedcode"] - sumVersion = "v0.0.1" - ["github.com/google/orderedcode".fetch] - type = "git" - url = "https://github.com/google/orderedcode" - rev = "9a3d15e0d5340bb1ba5db4071afd931e18b6e013" - sha256 = "0sdqfjji2skc1f7fbv9krbrb0cgfz43ksrld333hllgdidi33c9a" - -["github.com/google/pprof"] - sumVersion = "v0.0.0-20190515194954-54271f7e092f" - ["github.com/google/pprof".fetch] - type = "git" - url = "https://github.com/google/pprof" - rev = "54271f7e092ff31b10b7626fee166cbc6304e350" - sha256 = "14x4ydifz23rzaylggvwbm3dwlv1bc6s0bclmkxck9nbjbqw89vy" - -["github.com/google/renameio"] - sumVersion = "v0.1.0" - ["github.com/google/renameio".fetch] - type = "git" - url = "https://github.com/google/renameio" - rev = "f0e32980c006571efd537032e5f9cd8c1a92819e" - sha256 = "1ki2x5a9nrj17sn092d6n4zr29lfg5ydv4xz5cp58z6cw8ip43jx" - -["github.com/google/uuid"] - sumVersion = "v1.1.2" - ["github.com/google/uuid".fetch] - type = "git" - url = "https://github.com/google/uuid" - rev = "0e4e31197428a347842d152773b4cace4645ca25" - sha256 = "1rbpfa0v0ly9sdnixcxhf79swki54ikgm1zkwwkj64p1ws66syqd" - -["github.com/googleapis/gax-go/v2"] - sumVersion = "v2.0.5" - relPath = "v2" - ["github.com/googleapis/gax-go/v2".fetch] - type = "git" - url = "https://github.com/googleapis/gax-go" - rev = "bd5b16380fd03dc758d11cef74ba2e3bc8b0e8c2" - sha256 = "1lxawwngv6miaqd25s3ba0didfzylbwisd2nz7r4gmbmin6jsjrx" - -["github.com/gopherjs/gopherjs"] - sumVersion = "v0.0.0-20181017120253-0766667cb4d1" - ["github.com/gopherjs/gopherjs".fetch] - type = "git" - url = "https://github.com/gopherjs/gopherjs" - rev = "0766667cb4d1cfb8d5fde1fe210ae41ead3cf589" - sha256 = "13pfc9sxiwjky2lm1xb3i3lcisn8p6mgjk2d927l7r92ysph8dmw" - -["github.com/gorilla/context"] - sumVersion = "v1.1.1" - ["github.com/gorilla/context".fetch] - type = "git" - url = "https://github.com/gorilla/context" - rev = "08b5f424b9271eedf6f9f0ce86cb9396ed337a42" - sha256 = "03p4hn87vcmfih0p9w663qbx9lpsf7i7j3lc7yl7n84la3yz63m4" - -["github.com/gorilla/handlers"] - sumVersion = "v1.5.1" - ["github.com/gorilla/handlers".fetch] - type = "git" - url = "https://github.com/gorilla/handlers" - rev = "d453effd20e6817a8acfd9d278dadd21371da0ba" - sha256 = "15gycdz9lkjnsvvichsbdf25vf6pi1sfn41khhz53iqf300l0w0s" - -["github.com/gorilla/mux"] - sumVersion = "v1.8.0" - ["github.com/gorilla/mux".fetch] - type = "git" - url = "https://github.com/gorilla/mux" - rev = "98cb6bf42e086f6af920b965c38cacc07402d51b" - sha256 = "18f0q9qxgq1yh4ji07mqhiydfcwvi56z9d775v7dc7yckj33kpdk" - -["github.com/gorilla/websocket"] - sumVersion = "v1.4.2" - ["github.com/gorilla/websocket".fetch] - type = "git" - url = "https://github.com/gorilla/websocket" - rev = "b65e62901fc1c0d968042419e74789f6af455eb9" - sha256 = "0mkm9w6kjkrlzab5wh8p4qxkc0icqawjbvr01d2nk6ykylrln40s" - -["github.com/grpc-ecosystem/go-grpc-middleware"] - sumVersion = "v1.2.2" - ["github.com/grpc-ecosystem/go-grpc-middleware".fetch] - type = "git" - url = "https://github.com/grpc-ecosystem/go-grpc-middleware" - rev = "46f2eb369b917e60df91057c4d37847d17e5a9a4" - sha256 = "089cbns0s1l6j4a6x793z1llllqqk628w11zv3lrfizbk075rn3n" - -["github.com/grpc-ecosystem/go-grpc-prometheus"] - sumVersion = "v1.2.0" - ["github.com/grpc-ecosystem/go-grpc-prometheus".fetch] - type = "git" - url = "https://github.com/grpc-ecosystem/go-grpc-prometheus" - rev = "c225b8c3b01faf2899099b768856a9e916e5087b" - sha256 = "1lzk54h7np32b3acidg1ggbn8ppbnns0m71gcg9d1qkkdh8zrijl" - -["github.com/grpc-ecosystem/grpc-gateway"] - sumVersion = "v1.16.0" - ["github.com/grpc-ecosystem/grpc-gateway".fetch] - type = "git" - url = "https://github.com/grpc-ecosystem/grpc-gateway" - rev = "094a6fe78b3ca888297d090185cdf30f0e42e157" - sha256 = "0dzq1qbgzz2c6vnh8anx0j3py34sd72p35x6s2wrl001q68am5cc" - -["github.com/gsterjov/go-libsecret"] - sumVersion = "v0.0.0-20161001094733-a6f4afe4910c" - ["github.com/gsterjov/go-libsecret".fetch] - type = "git" - url = "https://github.com/gsterjov/go-libsecret" - rev = "a6f4afe4910cad8688db3e0e9b9ac92ad22d54e1" - sha256 = "09zaiadnll83vs22ib89agg7anj0blw5fywvmckxllsgif6ak6v7" - -["github.com/gtank/merlin"] - sumVersion = "v0.1.1" - ["github.com/gtank/merlin".fetch] - type = "git" - url = "https://github.com/gtank/merlin" - rev = "8318aed1a79f2b4c16cf2d7c2f09d991ec0731d1" - sha256 = "1gcj26hiyb87cjvqrdyr4q201c1rknpbahnsvcnz08agaw6gvwxm" - -["github.com/gtank/ristretto255"] - sumVersion = "v0.1.2" - ["github.com/gtank/ristretto255".fetch] - type = "git" - url = "https://github.com/gtank/ristretto255" - rev = "f33454717c935f5c93978e82b7bd1e848768bb91" - sha256 = "0kn4r28zbxf4vqr2if455wqzak38l27wqrwbzpxygrvczm61a2kw" - -["github.com/hashicorp/consul/api"] - sumVersion = "v1.3.0" - relPath = "api" - ["github.com/hashicorp/consul/api".fetch] - type = "git" - url = "https://github.com/hashicorp/consul" - rev = "e8757838a49feeb682c7e6ad6b78694a78b2096b" - sha256 = "1zv84snvrjm74w3v3rr27linsbxj00m73xd047sb78a4766xs2h0" - -["github.com/hashicorp/consul/sdk"] - sumVersion = "v0.3.0" - relPath = "sdk" - ["github.com/hashicorp/consul/sdk".fetch] - type = "git" - url = "https://github.com/hashicorp/consul" - rev = "441d613e1bd96254c78c46ee7c1b35c161fc7295" - sha256 = "1v06ygzsvc9c02yxpxnnm407kd30fc46b2146k5zrk1v8lq0f91j" - -["github.com/hashicorp/errwrap"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/errwrap".fetch] - type = "git" - url = "https://github.com/hashicorp/errwrap" - rev = "8a6fb523712970c966eefc6b39ed2c5e74880354" - sha256 = "0slfb6w3b61xz04r32bi0a1bygc82rjzhqkxj2si2074wynqnr1c" - -["github.com/hashicorp/go-cleanhttp"] - sumVersion = "v0.5.1" - ["github.com/hashicorp/go-cleanhttp".fetch] - type = "git" - url = "https://github.com/hashicorp/go-cleanhttp" - rev = "eda1e5db218aad1db63ca4642c8906b26bcf2744" - sha256 = "07kx3fhryqmaw3czacmm11qwx63js2q8cfq967vphk7xg9q377kk" - -["github.com/hashicorp/go-immutable-radix"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-immutable-radix".fetch] - type = "git" - url = "https://github.com/hashicorp/go-immutable-radix" - rev = "27df80928bb34bb1b0d6d0e01b9e679902e7a6b5" - sha256 = "1v3nmsnk1s8bzpclrhirz7iq0g5xxbw9q5gvrg9ss6w9crs72qr6" - -["github.com/hashicorp/go-msgpack"] - sumVersion = "v0.5.3" - ["github.com/hashicorp/go-msgpack".fetch] - type = "git" - url = "https://github.com/hashicorp/go-msgpack" - rev = "be3a5be7ee2202386d02936a19ae4fbde1c77800" - sha256 = "00jv0ajqd58pkb2yyhlrjp0rv1mvb1ijx3yqjyikcmzvk9jb4h5m" - -["github.com/hashicorp/go-multierror"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-multierror".fetch] - type = "git" - url = "https://github.com/hashicorp/go-multierror" - rev = "886a7fbe3eb1c874d46f623bfa70af45f425b3d1" - sha256 = "00nyn8llqzbfm8aflr9kwsvpzi4kv8v45c141v88xskxp5xf6z49" - -["github.com/hashicorp/go-retryablehttp"] - sumVersion = "v0.5.3" - ["github.com/hashicorp/go-retryablehttp".fetch] - type = "git" - url = "https://github.com/hashicorp/go-retryablehttp" - rev = "357460732517ec3b57c05c51443296bdd6df1874" - sha256 = "008mimxs8a970rdhvgmc5v1wk0gmpcl96mrkwz7wq6ik6fhg1sjl" - -["github.com/hashicorp/go-rootcerts"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-rootcerts".fetch] - type = "git" - url = "https://github.com/hashicorp/go-rootcerts" - rev = "63503fb4e1eca22f9ae0f90b49c5d5538a0e87eb" - sha256 = "0wply5zhj1rcybr932zbwm1i18q5wr7kgkhnz6bw6mk1n9yr8lfj" - -["github.com/hashicorp/go-sockaddr"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-sockaddr".fetch] - type = "git" - url = "https://github.com/hashicorp/go-sockaddr" - rev = "a6a0d2df398f7e0e9f6e43f589c8b51cec0eb6b0" - sha256 = "1yn1xq8ysn0lszmkygz3a9lgpswbz1p91jv7q8l20s4749a22xgi" - -["github.com/hashicorp/go-syslog"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-syslog".fetch] - type = "git" - url = "https://github.com/hashicorp/go-syslog" - rev = "8d1874e3e8d1862b74e0536851e218c4571066a5" - sha256 = "09vccqggz212cg0jir6vv708d6mx0f9w5bxrcdah3h6chgmal6v1" - -["github.com/hashicorp/go-uuid"] - sumVersion = "v1.0.1" - ["github.com/hashicorp/go-uuid".fetch] - type = "git" - url = "https://github.com/hashicorp/go-uuid" - rev = "4f571afc59f3043a65f8fe6bf46d887b10a01d43" - sha256 = "0jvb88m0rq41bwgirsadgw7mnayl27av3gd2vqa3xvxp3fy0hp5k" - -["github.com/hashicorp/go-version"] - sumVersion = "v1.2.0" - ["github.com/hashicorp/go-version".fetch] - type = "git" - url = "https://github.com/hashicorp/go-version" - rev = "ac23dc3fea5d1a983c43f6a0f6e2c13f0195d8bd" - sha256 = "1bwi6y6111xq8ww8kjq0w1cmz15l1h9hb2id6596l8l0ag1vjj1z" - -["github.com/hashicorp/go.net"] - sumVersion = "v0.0.1" - ["github.com/hashicorp/go.net".fetch] - type = "git" - url = "https://github.com/hashicorp/go.net" - rev = "afc3cb3a421746fc66dd55b09a270c750cf536ce" - sha256 = "06arwi95xp5rxyz7rndvhc3wlwg0jn9a5z6djf3yyg5h9zfab9i4" - -["github.com/hashicorp/golang-lru"] - sumVersion = "v0.5.4" - ["github.com/hashicorp/golang-lru".fetch] - type = "git" - url = "https://github.com/hashicorp/golang-lru" - rev = "14eae340515388ca95aa8e7b86f0de668e981f54" - sha256 = "1sdbymypp9vrnzp8ashw0idlxvaq0rb0alwxx3x8g27yjlqi9jfn" - -["github.com/hashicorp/hcl"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/hcl".fetch] - type = "git" - url = "https://github.com/hashicorp/hcl" - rev = "8cb6e5b959231cc1119e43259c4a608f9c51a241" - sha256 = "0q6ml0qqs0yil76mpn4mdx4lp94id8vbv575qm60jzl1ijcl5i66" - -["github.com/hashicorp/logutils"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/logutils".fetch] - type = "git" - url = "https://github.com/hashicorp/logutils" - rev = "a335183dfd075f638afcc820c90591ca3c97eba6" - sha256 = "076wf4sh5p3f953ndqk1cc0x7jhmlqrxak9953rz79rcdw77rjvv" - -["github.com/hashicorp/mdns"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/mdns".fetch] - type = "git" - url = "https://github.com/hashicorp/mdns" - rev = "c31d3f8e4a0a5b46b118c2fd26d9da36467002c9" - sha256 = "0qr4l91hhi97s8a1isnrw3s4q8pjzacqiks870vnwh15v7ig3axd" - -["github.com/hashicorp/memberlist"] - sumVersion = "v0.1.3" - ["github.com/hashicorp/memberlist".fetch] - type = "git" - url = "https://github.com/hashicorp/memberlist" - rev = "a9da52f0668fc4321ec18e9e28dd8141621a808f" - sha256 = "0k1spq7dagvqj3baqw2dhxx1zxrb02y6m3apzr3a7gyirii890g3" - -["github.com/hashicorp/serf"] - sumVersion = "v0.8.2" - ["github.com/hashicorp/serf".fetch] - type = "git" - url = "https://github.com/hashicorp/serf" - rev = "b89a09ebd4b1b570e0076d5097272e67c10ac4f6" - sha256 = "0nrslghvdjhaczr2xp9mn8xgcx1dxl4jgpbk0l61ssmxahpx4iyc" - -["github.com/hpcloud/tail"] - sumVersion = "v1.0.0" - ["github.com/hpcloud/tail".fetch] - type = "git" - url = "https://github.com/hpcloud/tail" - rev = "a30252cb686a21eb2d0b98132633053ec2f7f1e5" - sha256 = "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0" - -["github.com/hudl/fargo"] - sumVersion = "v1.3.0" - ["github.com/hudl/fargo".fetch] - type = "git" - url = "https://github.com/hudl/fargo" - rev = "fce5cf495554be9ef0766f6f5459e2874fb08c89" - sha256 = "1f7pwj793p51nq03jiz834g0qvg502h9asry6nx4pdc10wzx2948" - -["github.com/inconshreveable/mousetrap"] - sumVersion = "v1.0.0" - ["github.com/inconshreveable/mousetrap".fetch] - type = "git" - url = "https://github.com/inconshreveable/mousetrap" - rev = "76626ae9c91c4f2a10f34cad8ce83ea42c93bb75" - sha256 = "1mn0kg48xkd74brf48qf5hzp0bc6g8cf5a77w895rl3qnlpfw152" - -["github.com/influxdata/influxdb1-client"] - sumVersion = "v0.0.0-20191209144304-8bf82d3c094d" - ["github.com/influxdata/influxdb1-client".fetch] - type = "git" - url = "https://github.com/influxdata/influxdb1-client" - rev = "8bf82d3c094dc06be9da8e5bf9d3589b6ea032ae" - sha256 = "0cjli7prxfxayx2grianbla5jr0dq28sazk8phbnh61ac5zaya4s" - -["github.com/irisnet/irismod"] - sumVersion = "v1.4.0" - ["github.com/irisnet/irismod".fetch] - type = "git" - url = "https://github.com/irisnet/irismod" - rev = "0c1afcc884bbc94dddafa0e8fdb7d2e6b0d238b4" - sha256 = "1pi485ax3q8w33c2ias3mdz0cpsbwfjw9r7lzzj6mgyvr1wnjkwj" - -["github.com/jessevdk/go-flags"] - sumVersion = "v1.4.0" - ["github.com/jessevdk/go-flags".fetch] - type = "git" - url = "https://github.com/jessevdk/go-flags" - rev = "c6ca198ec95c841fdb89fc0de7496fed11ab854e" - sha256 = "0algnnigph27spgn655zm4723yfjxjjvlf4k14z9drj3682df25a" - -["github.com/jmespath/go-jmespath"] - sumVersion = "v0.0.0-20180206201540-c2b33e8439af" - ["github.com/jmespath/go-jmespath".fetch] - type = "git" - url = "https://github.com/jmespath/go-jmespath" - rev = "c2b33e8439af944379acbdd9c3a5fe0bc44bd8a5" - sha256 = "1r6w7ydx8ydryxk3sfhzsk8m6f1nsik9jg3i1zhi69v4kfl4d5cz" - -["github.com/jmhodges/levigo"] - sumVersion = "v1.0.0" - ["github.com/jmhodges/levigo".fetch] - type = "git" - url = "https://github.com/jmhodges/levigo" - rev = "853d788c5c416eaaee5b044570784a96c7a26975" - sha256 = "1lhh413mmclnkwn2lk1crwzargam2cx5w7k6zj8pgasy62c78iy4" - -["github.com/jonboulle/clockwork"] - sumVersion = "v0.1.0" - ["github.com/jonboulle/clockwork".fetch] - type = "git" - url = "https://github.com/jonboulle/clockwork" - rev = "2eee05ed794112d45db504eb05aa693efd2b8b09" - sha256 = "1pqxhsdavbp1n5grgyx2j6ylvql2fzn2cvpsgkc8li69dil7sibl" - -["github.com/jpillora/backoff"] - sumVersion = "v1.0.0" - ["github.com/jpillora/backoff".fetch] - type = "git" - url = "https://github.com/jpillora/backoff" - rev = "d80867952dff4e2fbfb4280ded4ff94d67790457" - sha256 = "0x90fif28fjyl07lmj2cnxzlgdm632v7rkra7kq1mwjdqgmy04dv" - -["github.com/jrick/logrotate"] - sumVersion = "v1.0.0" - ["github.com/jrick/logrotate".fetch] - type = "git" - url = "https://github.com/jrick/logrotate" - rev = "a93b200c26cbae3bb09dd0dc2c7c7fe1468a034a" - sha256 = "0srl6figwjqpi3nbp7br8sxpmvh4v8lzbny1b4lar4ny0156p5nl" - -["github.com/json-iterator/go"] - sumVersion = "v1.1.10" - ["github.com/json-iterator/go".fetch] - type = "git" - url = "https://github.com/json-iterator/go" - rev = "a1ca0830781e007c66b225121d2cdb3a649421f6" - sha256 = "134zwc2pmf8nd90r8065wsl6vv1mwjl23bs70i08dzhw5h98drr4" - -["github.com/jstemmer/go-junit-report"] - sumVersion = "v0.0.0-20190106144839-af01ea7f8024" - ["github.com/jstemmer/go-junit-report".fetch] - type = "git" - url = "https://github.com/jstemmer/go-junit-report" - rev = "af01ea7f8024089b458d804d5cdf190f962a9a0c" - sha256 = "1lp3n94ris12hac02wi31f3whs88lcrzwgdg43a5j6cafg9p1d0s" - -["github.com/jtolds/gls"] - sumVersion = "v4.20.0+incompatible" - ["github.com/jtolds/gls".fetch] - type = "git" - url = "https://github.com/jtolds/gls" - rev = "b4936e06046bbecbb94cae9c18127ebe510a2cb9" - sha256 = "1k7xd2q2ysv2xsh373qs801v6f359240kx0vrl0ydh7731lngvk6" - -["github.com/julienschmidt/httprouter"] - sumVersion = "v1.3.0" - ["github.com/julienschmidt/httprouter".fetch] - type = "git" - url = "https://github.com/julienschmidt/httprouter" - rev = "4eec211fa4e8df74ed978dc5681612131854144f" - sha256 = "1a6sy0ysqknsjssjh7qg1dqn21xmj9a36c57nrk7srfmab4ffmk1" - -["github.com/keybase/go-keychain"] - sumVersion = "v0.0.0-20190712205309-48d3d31d256d" - ["github.com/keybase/go-keychain".fetch] - type = "git" - url = "https://github.com/keybase/go-keychain" - rev = "48d3d31d256d9922a90b14c518c4b685f321fab2" - sha256 = "1vb4irkbj5s4v8n8dqngmg2w2fbnaz568z731yqryspvvmrki2a1" - -["github.com/kisielk/errcheck"] - sumVersion = "v1.5.0" - ["github.com/kisielk/errcheck".fetch] - type = "git" - url = "https://github.com/kisielk/errcheck" - rev = "ee08a456fc430219ad80ce5af98415bcc027a219" - sha256 = "0ci3jz2px74pfmr42jv7dpx7fdzx08vai4czp9fkiyb0gcaiqsk6" - -["github.com/kisielk/gotool"] - sumVersion = "v1.0.0" - ["github.com/kisielk/gotool".fetch] - type = "git" - url = "https://github.com/kisielk/gotool" - rev = "80517062f582ea3340cd4baf70e86d539ae7d84d" - sha256 = "14af2pa0ssyp8bp2mvdw184s5wcysk6akil3wzxmr05wwy951iwn" - -["github.com/kkdai/bstream"] - sumVersion = "v1.0.0" - ["github.com/kkdai/bstream".fetch] - type = "git" - url = "https://github.com/kkdai/bstream" - rev = "a8d27c5aa8eedad6b6683069d64b96ece63696db" - sha256 = "02brc58hhkkfhgb4yxjv3wshq355w533q7d49qrlfkhk265qph7w" - -["github.com/konsorten/go-windows-terminal-sequences"] - sumVersion = "v1.0.3" - ["github.com/konsorten/go-windows-terminal-sequences".fetch] - type = "git" - url = "https://github.com/konsorten/go-windows-terminal-sequences" - rev = "edb144dfd453055e1e49a3d8b410a660b5a87613" - sha256 = "1yrsd4s8vhjnxhwbigirymz89dn6qfjnhn28i33vvvdgf96j6ypl" - -["github.com/kr/fs"] - sumVersion = "v0.1.0" - ["github.com/kr/fs".fetch] - type = "git" - url = "https://github.com/kr/fs" - rev = "1455def202f6e05b95cc7bfc7e8ae67ae5141eba" - sha256 = "11zg176x9hr9q7fsk95r6q0wf214gg4czy02slax4x56n79g6a7q" - -["github.com/kr/logfmt"] - sumVersion = "v0.0.0-20140226030751-b84e30acd515" - ["github.com/kr/logfmt".fetch] - type = "git" - url = "https://github.com/kr/logfmt" - rev = "b84e30acd515aadc4b783ad4ff83aff3299bdfe0" - sha256 = "02ldzxgznrfdzvghfraslhgp19la1fczcbzh7wm2zdc6lmpd1qq9" - -["github.com/kr/pretty"] - sumVersion = "v0.1.0" - ["github.com/kr/pretty".fetch] - type = "git" - url = "https://github.com/kr/pretty" - rev = "73f6ac0b30a98e433b289500d779f50c1a6f0712" - sha256 = "18m4pwg2abd0j9cn5v3k2ksk9ig4vlwxmlw9rrglanziv9l967qp" - -["github.com/kr/pty"] - sumVersion = "v1.1.1" - ["github.com/kr/pty".fetch] - type = "git" - url = "https://github.com/kr/pty" - rev = "282ce0e5322c82529687d609ee670fac7c7d917c" - sha256 = "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6" - -["github.com/kr/text"] - sumVersion = "v0.1.0" - ["github.com/kr/text".fetch] - type = "git" - url = "https://github.com/kr/text" - rev = "e2ffdb16a802fe2bb95e2e35ff34f0e53aeef34f" - sha256 = "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1" - -["github.com/libp2p/go-buffer-pool"] - sumVersion = "v0.0.2" - ["github.com/libp2p/go-buffer-pool".fetch] - type = "git" - url = "https://github.com/libp2p/go-buffer-pool" - rev = "c4a5988a1e475884367015e1a2d0bd5fa4c491f4" - sha256 = "01iwby4xq9znlfhcxxvqv03smllsv42j1w3vpqg9n307s3i0pj3m" - -["github.com/lightstep/lightstep-tracer-common/golang/gogo"] - sumVersion = "v0.0.0-20190605223551-bc2310a04743" - relPath = "golang/gogo" - ["github.com/lightstep/lightstep-tracer-common/golang/gogo".fetch] - type = "git" - url = "https://github.com/lightstep/lightstep-tracer-common" - rev = "bc2310a0474352fa2616bdc0a27457b146b136b4" - sha256 = "0j7qycrva0ngf38br0jy9blzjb98ksdfi87b0sb2gnpmsp6sz4l8" - -["github.com/lightstep/lightstep-tracer-go"] - sumVersion = "v0.18.1" - ["github.com/lightstep/lightstep-tracer-go".fetch] - type = "git" - url = "https://github.com/lightstep/lightstep-tracer-go" - rev = "95891af43e111d60f0ae6adaa39c2abe8caad401" - sha256 = "0jfnsv7y11d247xysc61wp8xmgn33fdl17v6g0lxxnklbw41k91y" - -["github.com/lyft/protoc-gen-validate"] - sumVersion = "v0.0.13" - ["github.com/lyft/protoc-gen-validate".fetch] - type = "git" - url = "https://github.com/lyft/protoc-gen-validate" - rev = "4349a359d42fdfee53b85dd5c89a2f169e1dc6b2" - sha256 = "06x2mb4qa766dgrcahjlp6fb7f8dinkfk1i8zy6ibfigcrlbqjr5" - -["github.com/magiconair/properties"] - sumVersion = "v1.8.4" - ["github.com/magiconair/properties".fetch] - type = "git" - url = "https://github.com/magiconair/properties" - rev = "0e5c09062c2daef666bd279e2d2d9f25f218f2be" - sha256 = "0q7d55z0v8y55dyy8nhgdnswf5zkgj3i87irbk294nvzhx01bnxd" - -["github.com/mattn/go-colorable"] - sumVersion = "v0.0.9" - ["github.com/mattn/go-colorable".fetch] - type = "git" - url = "https://github.com/mattn/go-colorable" - rev = "167de6bfdfba052fa6b2d3664c8f5272e23c9072" - sha256 = "1nwjmsppsjicr7anq8na6md7b1z84l9ppnlr045hhxjvbkqwalvx" - -["github.com/mattn/go-isatty"] - sumVersion = "v0.0.12" - ["github.com/mattn/go-isatty".fetch] - type = "git" - url = "https://github.com/mattn/go-isatty" - rev = "7b513a986450394f7bbf1476909911b3aa3a55ce" - sha256 = "1dfsh27d52wmz0nmmzm2382pfrs2fcijvh6cgir7jbb4pnigr5w4" - -["github.com/mattn/go-runewidth"] - sumVersion = "v0.0.2" - ["github.com/mattn/go-runewidth".fetch] - type = "git" - url = "https://github.com/mattn/go-runewidth" - rev = "9e777a8366cce605130a531d2cd6363d07ad7317" - sha256 = "0vkrfrz3fzn5n6ix4k8s0cg0b448459sldq8bp4riavsxm932jzb" - -["github.com/matttproud/golang_protobuf_extensions"] - sumVersion = "v1.0.1" - ["github.com/matttproud/golang_protobuf_extensions".fetch] - type = "git" - url = "https://github.com/matttproud/golang_protobuf_extensions" - rev = "c12348ce28de40eed0136aa2b644d0ee0650e56c" - sha256 = "1d0c1isd2lk9pnfq2nk0aih356j30k3h1gi2w0ixsivi5csl7jya" - -["github.com/miekg/dns"] - sumVersion = "v1.0.14" - ["github.com/miekg/dns".fetch] - type = "git" - url = "https://github.com/miekg/dns" - rev = "915ca3d5ffd945235828a097c917311a9d86ebb4" - sha256 = "1qgli6yp59bv6vc6zag84cwxmcxgnyxm1q2f301yyijk3wy5b2ak" - -["github.com/mimoo/StrobeGo"] - sumVersion = "v0.0.0-20181016162300-f8f6d4d2b643" - ["github.com/mimoo/StrobeGo".fetch] - type = "git" - url = "https://github.com/mimoo/StrobeGo" - rev = "f8f6d4d2b6435f46148e8a6dc2248939893f3ece" - sha256 = "1lgxh3p6aqfc049wn3kz1mj9prm4mqpa9m01p27ph8iw5ry5c7la" - -["github.com/minio/highwayhash"] - sumVersion = "v1.0.1" - ["github.com/minio/highwayhash".fetch] - type = "git" - url = "https://github.com/minio/highwayhash" - rev = "86a2a969d04373bf05ca722517d30fb1c9a3e4f9" - sha256 = "0kj2hs82sphag0h25xvprvf2fz3zlinmlif89sk9jp8h518aiahf" - -["github.com/mitchellh/cli"] - sumVersion = "v1.0.0" - ["github.com/mitchellh/cli".fetch] - type = "git" - url = "https://github.com/mitchellh/cli" - rev = "3d22a244be8aa6fb16ac24af0e195c08b7d973aa" - sha256 = "1i9kmr7rcf10d2hji8h4247hmc0nbairv7a0q51393aw2h1bnwg2" - -["github.com/mitchellh/go-homedir"] - sumVersion = "v1.1.0" - ["github.com/mitchellh/go-homedir".fetch] - type = "git" - url = "https://github.com/mitchellh/go-homedir" - rev = "af06845cf3004701891bf4fdb884bfe4920b3727" - sha256 = "0ydzkipf28hwj2bfxqmwlww47khyk6d152xax4bnyh60f4lq3nx1" - -["github.com/mitchellh/go-testing-interface"] - sumVersion = "v1.0.0" - ["github.com/mitchellh/go-testing-interface".fetch] - type = "git" - url = "https://github.com/mitchellh/go-testing-interface" - rev = "6d0b8010fcc857872e42fc6c931227569016843c" - sha256 = "1dl2js8di858bawg7dadlf1qjpkl2g3apziihjyf5imri3znyfpw" - -["github.com/mitchellh/gox"] - sumVersion = "v0.4.0" - ["github.com/mitchellh/gox".fetch] - type = "git" - url = "https://github.com/mitchellh/gox" - rev = "c9740af9c6574448fd48eb30a71f964014c7a837" - sha256 = "1q4fdkw904mrmh1q5z8pfd3r0gcn5dm776kldqawddy93iiwnp8r" - -["github.com/mitchellh/iochan"] - sumVersion = "v1.0.0" - ["github.com/mitchellh/iochan".fetch] - type = "git" - url = "https://github.com/mitchellh/iochan" - rev = "b6e3aadd28864e14dae41ff5c7261455b1242d24" - sha256 = "058n9bbf536f2nw3pbs7pysrg9cqvgkb28z2zf5wjyrzrknyk53g" - -["github.com/mitchellh/mapstructure"] - sumVersion = "v1.1.2" - ["github.com/mitchellh/mapstructure".fetch] - type = "git" - url = "https://github.com/mitchellh/mapstructure" - rev = "3536a929edddb9a5b34bd6861dc4a9647cb459fe" - sha256 = "03bpv28jz9zhn4947saqwi328ydj7f6g6pf1m2d4m5zdh5jlfkrr" - -["github.com/modern-go/concurrent"] - sumVersion = "v0.0.0-20180306012644-bacd9c7ef1dd" - ["github.com/modern-go/concurrent".fetch] - type = "git" - url = "https://github.com/modern-go/concurrent" - rev = "bacd9c7ef1dd9b15be4a9909b8ac7a4e313eec94" - sha256 = "0s0fxccsyb8icjmiym5k7prcqx36hvgdwl588y0491gi18k5i4zs" - -["github.com/modern-go/reflect2"] - sumVersion = "v1.0.1" - ["github.com/modern-go/reflect2".fetch] - type = "git" - url = "https://github.com/modern-go/reflect2" - rev = "94122c33edd36123c84d5368cfb2b69df93a0ec8" - sha256 = "06a3sablw53n1dqqbr2f53jyksbxdmmk8axaas4yvnhyfi55k4lf" - -["github.com/mtibben/percent"] - sumVersion = "v0.2.1" - ["github.com/mtibben/percent".fetch] - type = "git" - url = "https://github.com/mtibben/percent" - rev = "07b18b68c1413ce9f8137a8cbd4509fac9e15f0c" - sha256 = "1iqivw8pigj259rj5yifibbvic70f9hb7k24a4sa967s4fj6agb6" - -["github.com/mwitkow/go-conntrack"] - sumVersion = "v0.0.0-20190716064945-2f068394615f" - ["github.com/mwitkow/go-conntrack".fetch] - type = "git" - url = "https://github.com/mwitkow/go-conntrack" - rev = "2f068394615f73e460c2f3d2c158b0ad9321cadb" - sha256 = "0ymjmy12ks7smgwmrwsa5kf07d9w5kpk1dn650azlzr61b561aw7" - -["github.com/nats-io/jwt"] - sumVersion = "v0.3.2" - ["github.com/nats-io/jwt".fetch] - type = "git" - url = "https://github.com/nats-io/jwt" - rev = "0c3fc7aed8bb2534e7bfdf0968a75890402d48cd" - sha256 = "0n44ghpz6hnbd2i074ikrj72rd2vnxpg1g3nhv1ly1kr0832khx6" - -["github.com/nats-io/nats-server/v2"] - sumVersion = "v2.1.2" - ["github.com/nats-io/nats-server/v2".fetch] - type = "git" - url = "https://github.com/nats-io/nats-server" - rev = "679bedafd96f85ddfa56a4d5736517c18842047a" - sha256 = "1jxi6d0zbhisxprlynvqw3dl1lz4wwxiy9gnpaqrwx1yi3kvvg62" - -["github.com/nats-io/nats.go"] - sumVersion = "v1.9.1" - ["github.com/nats-io/nats.go".fetch] - type = "git" - url = "https://github.com/nats-io/nats.go" - rev = "6063d679d23ae5b3edb4030d5e89a6e30ea53bc6" - sha256 = "0mmbwri2k2c8q1w0fr0g5s81709lfr6wyarvaf3gibc7cig10pij" - -["github.com/nats-io/nkeys"] - sumVersion = "v0.1.3" - ["github.com/nats-io/nkeys".fetch] - type = "git" - url = "https://github.com/nats-io/nkeys" - rev = "f1930e19b436412202ab130a733187cc6f40ba7e" - sha256 = "1fip0bja471mavvp67bninpd24jviwpnh7w99kchyiy27lbxy4hp" - -["github.com/nats-io/nuid"] - sumVersion = "v1.0.1" - ["github.com/nats-io/nuid".fetch] - type = "git" - url = "https://github.com/nats-io/nuid" - rev = "4b96681fa6d28dd0ab5fe79bac63b3a493d9ee94" - sha256 = "11zbhg4kds5idsya04bwz4plj0mmiigypzppzih731ppbk2ms1zg" - -["github.com/niemeyer/pretty"] - sumVersion = "v0.0.0-20200227124842-a10e7caefd8e" - ["github.com/niemeyer/pretty".fetch] - type = "git" - url = "https://github.com/niemeyer/pretty" - rev = "a10e7caefd8e0d600cea437f5c3613aeb1553d56" - sha256 = "1jmazh4xzaa3v6g46hz60q2z7nmqs9l9cxdzmmscn3kbcs2znq4v" - -["github.com/nxadm/tail"] - sumVersion = "v1.4.4" - ["github.com/nxadm/tail".fetch] - type = "git" - url = "https://github.com/nxadm/tail" - rev = "327c577245448d8192115e77a76ea3d6aee88202" - sha256 = "1czmwqii0fc8v3ar5bwqpfanprkxg19waly405zlvcflzvj53wwc" - -["github.com/oklog/oklog"] - sumVersion = "v0.3.2" - ["github.com/oklog/oklog".fetch] - type = "git" - url = "https://github.com/oklog/oklog" - rev = "e3ad1c411c27b4bc18c5facb9331820d141a5a54" - sha256 = "1xnjxhgi0zm51skl533la50h133a245i57wqa3h7fr2lv2jqpzny" - -["github.com/oklog/run"] - sumVersion = "v1.0.0" - ["github.com/oklog/run".fetch] - type = "git" - url = "https://github.com/oklog/run" - rev = "4dadeb3030eda0273a12382bb2348ffc7c9d1a39" - sha256 = "1pbjza4claaj95fpqvvfrysvs10y7dm0pl6qr5lzh6qy1vnhmcgw" - -["github.com/oklog/ulid"] - sumVersion = "v1.3.1" - ["github.com/oklog/ulid".fetch] - type = "git" - url = "https://github.com/oklog/ulid" - rev = "02a8604050d8466dd915307496174adb9be4593a" - sha256 = "0hybwyid820n80axrk863k2py93hbqlq6hxhf84ppmz0qd0ys0gq" - -["github.com/olebedev/config"] - sumVersion = "v0.0.0-20190528211619-364964f3a8e4" - ["github.com/olebedev/config".fetch] - type = "git" - url = "https://github.com/olebedev/config" - rev = "364964f3a8e4646b0e2d37b12900e332dfded7c1" - sha256 = "03z04mahkka3zaaz69i4j0sjw8j43by0mrjkn410jx928vs9k0qi" - -["github.com/olekukonko/tablewriter"] - sumVersion = "v0.0.0-20170122224234-a0225b3f23b5" - ["github.com/olekukonko/tablewriter".fetch] - type = "git" - url = "https://github.com/olekukonko/tablewriter" - rev = "a0225b3f23b5ce0cbec6d7a66a968f8a59eca9c4" - sha256 = "0bp9r6xzy6d3p7l2hjmvr25y3rp3p8c9xv1agkllkksm45ng6681" - -["github.com/onsi/ginkgo"] - sumVersion = "v1.14.0" - ["github.com/onsi/ginkgo".fetch] - type = "git" - url = "https://github.com/onsi/ginkgo" - rev = "9c254cb251dc962dc20ca91d0279c870095cfcf9" - sha256 = "0nwvz0pqk2jqscq88fhppad4flrr8avkxfgbci4xklbar4g8i32v" - -["github.com/onsi/gomega"] - sumVersion = "v1.10.1" - ["github.com/onsi/gomega".fetch] - type = "git" - url = "https://github.com/onsi/gomega" - rev = "904ac6ab26e9a888bdff3467eea03b6122a1c027" - sha256 = "068mirdbwl9n9dqlvqr489h52wkd90cv1jvng4yp8kv83lhzk2dq" - -["github.com/op/go-logging"] - sumVersion = "v0.0.0-20160315200505-970db520ece7" - ["github.com/op/go-logging".fetch] - type = "git" - url = "https://github.com/op/go-logging" - rev = "970db520ece77730c7e4724c61121037378659d9" - sha256 = "1cpna2x5l071z1vrnk7zipdkka8dzwsjyx7m79xk0lr08rip0kcj" - -["github.com/opentracing-contrib/go-observer"] - sumVersion = "v0.0.0-20170622124052-a52f23424492" - ["github.com/opentracing-contrib/go-observer".fetch] - type = "git" - url = "https://github.com/opentracing-contrib/go-observer" - rev = "a52f2342449246d5bcc273e65cbdcfa5f7d6c63c" - sha256 = "1q7z458m2vh3bzml4x9vm2paffqn1jcgiydbisl0zg2asfniq7k3" - -["github.com/opentracing/basictracer-go"] - sumVersion = "v1.0.0" - ["github.com/opentracing/basictracer-go".fetch] - type = "git" - url = "https://github.com/opentracing/basictracer-go" - rev = "1b32af207119a14b1b231d451df3ed04a72efebf" - sha256 = "0hs969asib4yqj5k755zr0byz2iqvjbs6z1szcnr50q6fihigca0" - -["github.com/opentracing/opentracing-go"] - sumVersion = "v1.1.0" - ["github.com/opentracing/opentracing-go".fetch] - type = "git" - url = "https://github.com/opentracing/opentracing-go" - rev = "659c90643e714681897ec2521c60567dd21da733" - sha256 = "0aj9cbm21zsg1i5l25hz8gn0yf99yxyxcp1gqh3yd5g4knj2cgzf" - -["github.com/openzipkin-contrib/zipkin-go-opentracing"] - sumVersion = "v0.4.5" - ["github.com/openzipkin-contrib/zipkin-go-opentracing".fetch] - type = "git" - url = "https://github.com/openzipkin-contrib/zipkin-go-opentracing" - rev = "223664cff43dfd9f54659ff15dc4bd6e023d0c14" - sha256 = "0mdvx50mw17c926rhhkjg8z54v8h0jvnqahdlpij2kbxi3ncgr7q" - -["github.com/openzipkin/zipkin-go"] - sumVersion = "v0.2.2" - ["github.com/openzipkin/zipkin-go".fetch] - type = "git" - url = "https://github.com/openzipkin/zipkin-go" - rev = "c29478e51bfb2e9c93e0e9f5e015e5993a490399" - sha256 = "18c884anq0pkahmjwyhrdg247wyq33ccxp5k7fcq5gzh8g6dj92s" - -["github.com/otiai10/copy"] - sumVersion = "v1.4.2" - ["github.com/otiai10/copy".fetch] - type = "git" - url = "https://github.com/otiai10/copy" - rev = "bdad3b4eb1c7bdcfe4fdddf048ddcfd29367cf69" - sha256 = "1igbsp6cqv4x835a49qqnz9knbhabiwsnvmgnfclj4f49ljhgz5y" - -["github.com/otiai10/curr"] - sumVersion = "v1.0.0" - ["github.com/otiai10/curr".fetch] - type = "git" - url = "https://github.com/otiai10/curr" - rev = "88e2f2cffa0b5f13e90ee963a321bd1b2f715561" - sha256 = "0fpw20adq2wff7l4c87zaavj9jra4d64a8bbjixiiv3bbarim987" - -["github.com/otiai10/mint"] - sumVersion = "v1.3.2" - ["github.com/otiai10/mint".fetch] - type = "git" - url = "https://github.com/otiai10/mint" - rev = "3588d691480a831b1e78b776d3bccd9d5ce6461c" - sha256 = "0448nkhmp1ny64g2d7m5x8inz118zj03j6q0b97q3dszzs7hhan4" - -["github.com/pact-foundation/pact-go"] - sumVersion = "v1.0.4" - ["github.com/pact-foundation/pact-go".fetch] - type = "git" - url = "https://github.com/pact-foundation/pact-go" - rev = "3ce08c8af46b7bc33a06efc9b8807c08806c8af2" - sha256 = "08mnyf1yb6zjqfzs1pdh44drv390lfilhh4vi4asnjk52gknqfn0" - -["github.com/pascaldekloe/goe"] - sumVersion = "v0.1.0" - ["github.com/pascaldekloe/goe".fetch] - type = "git" - url = "https://github.com/pascaldekloe/goe" - rev = "57f6aae5913c64c9bcae5dbdffd33365b5a7f138" - sha256 = "1dqd3mfb4z2vmv6pg6fhgvfc53vhndk24wcl9lj1rz02n6m279fq" - -["github.com/pborman/uuid"] - sumVersion = "v1.2.0" - ["github.com/pborman/uuid".fetch] - type = "git" - url = "https://github.com/pborman/uuid" - rev = "8b1b92947f46224e3b97bb1a3a5b0382be00d31e" - sha256 = "0f146yjqwx2mr110kl8scjhqd08hys7vr5z0d0a3lskb6yy22gfg" - -["github.com/pelletier/go-toml"] - sumVersion = "v1.8.0" - ["github.com/pelletier/go-toml".fetch] - type = "git" - url = "https://github.com/pelletier/go-toml" - rev = "16c9a8bdc086a2130a88eff98df4088e4c359bb2" - sha256 = "0fxmjm85c9h43lvqz71wr93fcc63bhj82nwby80222xx8ja63g7y" - -["github.com/performancecopilot/speed"] - sumVersion = "v3.0.0+incompatible" - ["github.com/performancecopilot/speed".fetch] - type = "git" - url = "https://github.com/performancecopilot/speed" - rev = "839069a3ed70162d3bcefb9891c8ca852d877c1c" - sha256 = "1r0l6i80xkx9dcysa7ajvs5ypqkw2k0422k0hbz28fizaq9d8y0m" - -["github.com/petermattis/goid"] - sumVersion = "v0.0.0-20180202154549-b0b1615b78e5" - ["github.com/petermattis/goid".fetch] - type = "git" - url = "https://github.com/petermattis/goid" - rev = "b0b1615b78e5ee59739545bb38426383b2cda4c9" - sha256 = "0ghfxn045r0bbn2vszw897lxzmhnm4k59aypjvpxl0pbzsw9ab2c" - -["github.com/pierrec/lz4"] - sumVersion = "v2.0.5+incompatible" - ["github.com/pierrec/lz4".fetch] - type = "git" - url = "https://github.com/pierrec/lz4" - rev = "ea731401f5c95a8ba30f15787e5e0fb77c60c66b" - sha256 = "0y5rh7z01zycd59nnjpkqq0ydyjmcg9j1xw15q1i600l9j9g617p" - -["github.com/pkg/errors"] - sumVersion = "v0.9.1" - ["github.com/pkg/errors".fetch] - type = "git" - url = "https://github.com/pkg/errors" - rev = "614d223910a179a466c1767a985424175c39b465" - sha256 = "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq" - -["github.com/pkg/profile"] - sumVersion = "v1.2.1" - ["github.com/pkg/profile".fetch] - type = "git" - url = "https://github.com/pkg/profile" - rev = "5b67d428864e92711fcbd2f8629456121a56d91f" - sha256 = "0blqmvgqvdbqmh3fp9pfdxc9w1qfshrr0zy9whj0sn372bw64qnr" - -["github.com/pkg/sftp"] - sumVersion = "v1.10.1" - ["github.com/pkg/sftp".fetch] - type = "git" - url = "https://github.com/pkg/sftp" - rev = "3edd153f213d8d4191a0ee4577c61cca19436632" - sha256 = "0iw6lijdljwh5xw5hsy0b578cr52h6vvm7hbnzlrvciwhh4sfhhp" - -["github.com/pmezard/go-difflib"] - sumVersion = "v1.0.0" - ["github.com/pmezard/go-difflib".fetch] - type = "git" - url = "https://github.com/pmezard/go-difflib" - rev = "792786c7400a136282c1664665ae0a8db921c6c2" - sha256 = "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw" - -["github.com/posener/complete"] - sumVersion = "v1.1.1" - ["github.com/posener/complete".fetch] - type = "git" - url = "https://github.com/posener/complete" - rev = "98eb9847f27ba2008d380a32c98be474dea55bdf" - sha256 = "1nbdiybjizbaxbf5q0xwbq0cjqw4bl6jggvsjzrpif0w86fcjda2" - -["github.com/prometheus/client_golang"] - sumVersion = "v1.8.0" - ["github.com/prometheus/client_golang".fetch] - type = "git" - url = "https://github.com/prometheus/client_golang" - rev = "47cfdc9bb8ceaf18b12a4b7ba778b06e12d1a97a" - sha256 = "0hdfjfn49782zmqzc61jfrp4bz9gj33hrxivj9ylqh8b0cws0k1w" - -["github.com/prometheus/client_model"] - sumVersion = "v0.2.0" - ["github.com/prometheus/client_model".fetch] - type = "git" - url = "https://github.com/prometheus/client_model" - rev = "7bc5445566f0fe75b15de23e6b93886e982d7bf9" - sha256 = "0jffnz94d6ff39fr96b5w8i8yk26pwnrfggzz8jhi8k0yihg2c9d" - -["github.com/prometheus/common"] - sumVersion = "v0.15.0" - ["github.com/prometheus/common".fetch] - type = "git" - url = "https://github.com/prometheus/common" - rev = "20c99e7aa07352b599bd0517cd5ca945f4af0407" - sha256 = "1hxdvj1w6gkzca3sfca3vv4kpkq210j4n2dhqj3w9wa64clxkdyq" - -["github.com/prometheus/procfs"] - sumVersion = "v0.2.0" - ["github.com/prometheus/procfs".fetch] - type = "git" - url = "https://github.com/prometheus/procfs" - rev = "9dece15c53cd5e9fbfbd72d5108adcf526a3f486" - sha256 = "0rkpyq1grk3qyfahnfry5qkxjg5qb10yh1l8cvm8b79nqsmdyjbm" - -["github.com/prometheus/tsdb"] - sumVersion = "v0.7.1" - ["github.com/prometheus/tsdb".fetch] - type = "git" - url = "https://github.com/prometheus/tsdb" - rev = "c20450564cc42983bf923c13f3fda42de709ac13" - sha256 = "1c1da8i5byvhh4fp3vqjfb65aaksjskn3ggb8wg9hcfzjrhgpz04" - -["github.com/rakyll/statik"] - sumVersion = "v0.1.7" - ["github.com/rakyll/statik".fetch] - type = "git" - url = "https://github.com/rakyll/statik" - rev = "46bd79c4540341fe472fe71dd2ce0ccd4e635450" - sha256 = "0y0kbzma55vmyqhyrw9ssgvxn6nw7d0zg72a7nz8vp1zly4hs6va" - -["github.com/rcrowley/go-metrics"] - sumVersion = "v0.0.0-20200313005456-10cdbea86bc0" - ["github.com/rcrowley/go-metrics".fetch] - type = "git" - url = "https://github.com/rcrowley/go-metrics" - rev = "10cdbea86bc0b922507ce91d43f4f78a5bea2e8f" - sha256 = "157rfn5kf1mdn65gay38zpv6zam3sfa5a3zkx9wxk77y7w3kam19" - -["github.com/regen-network/cosmos-proto"] - sumVersion = "v0.3.1" - ["github.com/regen-network/cosmos-proto".fetch] - type = "git" - url = "https://github.com/regen-network/cosmos-proto" - rev = "f793b6157c2cfb8c1c797100e1918b2d1eb40615" - sha256 = "05sk9jhk4qz5m4vkj0wr0swhvq9niz7v7bvpxh063vz0y6mmpj05" - -["github.com/rogpeppe/fastuuid"] - sumVersion = "v1.2.0" - ["github.com/rogpeppe/fastuuid".fetch] - type = "git" - url = "https://github.com/rogpeppe/fastuuid" - rev = "10c3923834d38e951ae8f627bfec2dc632c5b6cb" - sha256 = "028acdg63zkxpjz3l639nlhki2l0canr2v5jglrmwa1wpjqcfff8" - -["github.com/rogpeppe/go-internal"] - sumVersion = "v1.3.0" - ["github.com/rogpeppe/go-internal".fetch] - type = "git" - url = "https://github.com/rogpeppe/go-internal" - rev = "438578804ca6f31be148c27683afc419ce47c06e" - sha256 = "0mcdh1licgnnahwml9y2iq6xy5x9xmjw5frcnds2s3wpjyqrl216" - -["github.com/rs/cors"] - sumVersion = "v1.7.0" - ["github.com/rs/cors".fetch] - type = "git" - url = "https://github.com/rs/cors" - rev = "db0fe48135e83b5812a5a31be0eea66984b1b521" - sha256 = "1abz6jxp7bhcwwsgcz9ajkijspkc46s0chrhqspy4czskmmazygi" - -["github.com/rs/xid"] - sumVersion = "v1.2.1" - ["github.com/rs/xid".fetch] - type = "git" - url = "https://github.com/rs/xid" - rev = "15d26544def341f036c5f8dca987a4cbe575032c" - sha256 = "1vgw1dikqw273awcci6pzifs7shkl5ah4l88j1zjbnpgbiwzlx9j" - -["github.com/rs/zerolog"] - sumVersion = "v1.20.0" - ["github.com/rs/zerolog".fetch] - type = "git" - url = "https://github.com/rs/zerolog" - rev = "72acd6cfe8bbbf5c52bfc805a3889c6941499c95" - sha256 = "1g62d8pca2sg0k1qjqcppv7n68wjw2iv04x9vwswlnphg6caf6wy" - -["github.com/russross/blackfriday"] - sumVersion = "v1.5.2" - ["github.com/russross/blackfriday".fetch] - type = "git" - url = "https://github.com/russross/blackfriday" - rev = "05f3235734ad95d0016f6a23902f06461fcf567a" - sha256 = "0jzbfzcywqcrnym4gxlz6nphmm1grg6wsl4f0r9x384rn83wkj7c" - -["github.com/russross/blackfriday/v2"] - sumVersion = "v2.0.1" - ["github.com/russross/blackfriday/v2".fetch] - type = "git" - url = "https://github.com/russross/blackfriday" - rev = "d3b5b032dc8e8927d31a5071b56e14c89f045135" - sha256 = "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j" - -["github.com/ryanuber/columnize"] - sumVersion = "v0.0.0-20160712163229-9b3edd62028f" - ["github.com/ryanuber/columnize".fetch] - type = "git" - url = "https://github.com/ryanuber/columnize" - rev = "9b3edd62028f107d7cabb19353292afd29311a4e" - sha256 = "1ya1idkbb0a9fjlhkcnh5a9yvpwzwfmbyg7d56lpplwr9rqi1da4" - -["github.com/samuel/go-zookeeper"] - sumVersion = "v0.0.0-20190923202752-2cc03de413da" - ["github.com/samuel/go-zookeeper".fetch] - type = "git" - url = "https://github.com/samuel/go-zookeeper" - rev = "2cc03de413da42869e2db7ce7965d3e978d917eb" - sha256 = "11z2r73q6qk9xy3mzkhdxd7cbfqsdr0105d5m03q4r47fki46hgx" - -["github.com/sasha-s/go-deadlock"] - sumVersion = "v0.2.1-0.20190427202633-1595213edefa" - ["github.com/sasha-s/go-deadlock".fetch] - type = "git" - url = "https://github.com/sasha-s/go-deadlock" - rev = "1595213edefa28ca5047b00340c63557f9c051d0" - sha256 = "06h5g16zlfnw9wvgaqp7jfav3n3pvli6asfcx1hv44sl601wnwk0" - -["github.com/sean-/seed"] - sumVersion = "v0.0.0-20170313163322-e2103e2c3529" - ["github.com/sean-/seed".fetch] - type = "git" - url = "https://github.com/sean-/seed" - rev = "e2103e2c35297fb7e17febb81e49b312087a2372" - sha256 = "0glir8jxi1w7aga2jwdb63pp1h8q4whknili7xixsqzwyy716125" - -["github.com/shurcooL/sanitized_anchor_name"] - sumVersion = "v1.0.0" - ["github.com/shurcooL/sanitized_anchor_name".fetch] - type = "git" - url = "https://github.com/shurcooL/sanitized_anchor_name" - rev = "7bfe4c7ecddb3666a94b053b422cdd8f5aaa3615" - sha256 = "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f" - -["github.com/sirupsen/logrus"] - sumVersion = "v1.6.0" - ["github.com/sirupsen/logrus".fetch] - type = "git" - url = "https://github.com/sirupsen/logrus" - rev = "60c74ad9be0d874af0ab0daef6ab07c5c5911f0d" - sha256 = "1zf9is1yxxnna0d1pyag2m9ziy3l27zb2j92p9msm1gx5jjrvzzj" - -["github.com/smartystreets/assertions"] - sumVersion = "v0.0.0-20180927180507-b2de0cb4f26d" - ["github.com/smartystreets/assertions".fetch] - type = "git" - url = "https://github.com/smartystreets/assertions" - rev = "b2de0cb4f26d0705483a2f495d89896d0b808573" - sha256 = "1i7ldgavgl35c7gk25p7bvdr282ckng090zr4ch9mk1705akx09y" - -["github.com/smartystreets/goconvey"] - sumVersion = "v1.6.4" - ["github.com/smartystreets/goconvey".fetch] - type = "git" - url = "https://github.com/smartystreets/goconvey" - rev = "505e419363375c0dc132d3ac02632a4ee32199ca" - sha256 = "07zjxwszayal88z1j2bwnqrsa32vg8l4nivks5yfr9j8xfsw7n6m" - -["github.com/snikch/goodman"] - sumVersion = "v0.0.0-20171125024755-10e37e294daa" - ["github.com/snikch/goodman".fetch] - type = "git" - url = "https://github.com/snikch/goodman" - rev = "10e37e294daa3c9a90abded60ff9924bafab3888" - sha256 = "0n6m17lmlfsynd7ja3s3w7pgpi7zdyakqbg4ahzdq9918fwddqmp" - -["github.com/soheilhy/cmux"] - sumVersion = "v0.1.4" - ["github.com/soheilhy/cmux".fetch] - type = "git" - url = "https://github.com/soheilhy/cmux" - rev = "e09e9389d85d8492d313d73d1469c029e710623f" - sha256 = "1f736g68d9vwlyfb6g0fxkr0r875369xafk30cz8kaq5niaqwv0h" - -["github.com/sony/gobreaker"] - sumVersion = "v0.4.1" - ["github.com/sony/gobreaker".fetch] - type = "git" - url = "https://github.com/sony/gobreaker" - rev = "21dbfda1fc5e89b91bd0c835a91c31fe4d461e88" - sha256 = "0iarblm3w2d0p997jsw9bkznfj0wa8d586nh37ii5gnqy41va700" - -["github.com/spaolacci/murmur3"] - sumVersion = "v1.1.0" - ["github.com/spaolacci/murmur3".fetch] - type = "git" - url = "https://github.com/spaolacci/murmur3" - rev = "f09979ecbc725b9e6d41a297405f65e7e8804acc" - sha256 = "1lv3zyz3jy2d76bhvvs8svygx66606iygdvwy5cwc0p5z8yghq25" - -["github.com/spf13/afero"] - sumVersion = "v1.3.4" - ["github.com/spf13/afero".fetch] - type = "git" - url = "https://github.com/spf13/afero" - rev = "799ff74c0fd7e7df974e6ffa1c94e3d206f5673b" - sha256 = "0r158myfm55ig49yimqn44g6sp759q80hdv1iccy1kmm08vkizpi" - -["github.com/spf13/cast"] - sumVersion = "v1.3.1" - ["github.com/spf13/cast".fetch] - type = "git" - url = "https://github.com/spf13/cast" - rev = "1ffadf551085444af981432dd0f6d1160c11ec64" - sha256 = "0lb84788glr0qzrq2ifi36rgvp96qrgywvxrr3ggq5hrbr38hgn1" - -["github.com/spf13/cobra"] - sumVersion = "v1.1.1" - ["github.com/spf13/cobra".fetch] - type = "git" - url = "https://github.com/spf13/cobra" - rev = "86f8bfd7fef868a174e1b606783bd7f5c82ddf8f" - sha256 = "0qx2wm34sm92amxackxl1vlwxlhvrpcwr1h474601szb1c49mlk1" - -["github.com/spf13/jwalterweatherman"] - sumVersion = "v1.1.0" - ["github.com/spf13/jwalterweatherman".fetch] - type = "git" - url = "https://github.com/spf13/jwalterweatherman" - rev = "94f6ae3ed3bceceafa716478c5fbf8d29ca601a1" - sha256 = "1ywmkwci5zyd88ijym6f30fj5c0k2yayxarkmnazf5ybljv50q7b" - -["github.com/spf13/pflag"] - sumVersion = "v1.0.5" - ["github.com/spf13/pflag".fetch] - type = "git" - url = "https://github.com/spf13/pflag" - rev = "2e9d26c8c37aae03e3f9d4e90b7116f5accb7cab" - sha256 = "0gpmacngd0gpslnbkzi263f5ishigzgh6pbdv9hp092rnjl4nd31" - -["github.com/spf13/viper"] - sumVersion = "v1.7.1" - ["github.com/spf13/viper".fetch] - type = "git" - url = "https://github.com/spf13/viper" - rev = "3826be313591f83193f048520482a7b3cf17d506" - sha256 = "1bci9wcqj8ghczwnj7wdlqzzbkm24fxpcl580vnrfc67yr5ppi01" - -["github.com/streadway/amqp"] - sumVersion = "v0.0.0-20190827072141-edfb9018d271" - ["github.com/streadway/amqp".fetch] - type = "git" - url = "https://github.com/streadway/amqp" - rev = "edfb9018d2714e4ec54dbaba37dbfef2bdadf0e4" - sha256 = "07icg7x7saawzqb9lm9avw6bizs387xdi27zry03m6z5i1a22zq2" - -["github.com/streadway/handy"] - sumVersion = "v0.0.0-20190108123426-d5acb3125c2a" - ["github.com/streadway/handy".fetch] - type = "git" - url = "https://github.com/streadway/handy" - rev = "d5acb3125c2a6654d2d691e6851674a645333da1" - sha256 = "02jwalahfj2lh1snklh6i5hysjl9npx59q31ihdfrva10dssg30r" - -["github.com/stretchr/objx"] - sumVersion = "v0.2.0" - ["github.com/stretchr/objx".fetch] - type = "git" - url = "https://github.com/stretchr/objx" - rev = "ea4fe68685ee0d3cee7032121851b57e7494e8ea" - sha256 = "0pcdvakxgddaiwcdj73ra4da05a3q4cgwbpm2w75ycq4kzv8ij8k" - -["github.com/stretchr/testify"] - sumVersion = "v1.7.0" - ["github.com/stretchr/testify".fetch] - type = "git" - url = "https://github.com/stretchr/testify" - rev = "acba37e5db06f0093b465a7d47822bf13644b66c" - sha256 = "0ixgjsvafr3513pz3r6pmgk074s2dxkll0dadvl25gkf30rkmh10" - -["github.com/subosito/gotenv"] - sumVersion = "v1.2.0" - ["github.com/subosito/gotenv".fetch] - type = "git" - url = "https://github.com/subosito/gotenv" - rev = "2ef7124db659d49edac6aa459693a15ae36c671a" - sha256 = "0mav91j7r4arjkpq5zcf9j74f6pww8ic53x43wy7kg3ibw31yjs5" - -["github.com/syndtr/goleveldb"] - sumVersion = "v1.0.1-0.20200815110645-5c35d600f0ca" - ["github.com/syndtr/goleveldb".fetch] - type = "git" - url = "https://github.com/syndtr/goleveldb" - rev = "5c35d600f0caac04c20d52438103f1a7aa612598" - sha256 = "0wsqybzip0khzgk4cl23ilm30jnf4yd674dkbq4c26ivak9qkmz7" - -["github.com/tecbot/gorocksdb"] - sumVersion = "v0.0.0-20191217155057-f0fad39f321c" - ["github.com/tecbot/gorocksdb".fetch] - type = "git" - url = "https://github.com/tecbot/gorocksdb" - rev = "f0fad39f321c61bf05fcb4a01fe259606235e712" - sha256 = "0brf99da00jf91hf7w0qqk6yj61zcya9ci7pm8d60q6zl40i87c5" - -["github.com/tendermint/btcd"] - sumVersion = "v0.1.1" - ["github.com/tendermint/btcd".fetch] - type = "git" - url = "https://github.com/tendermint/btcd" - rev = "80daadac05d1cd29571fccf27002d79667a88b58" - sha256 = "16s909z5awvqi060rdj577wzbgziyk88s53x24kv9rzc71rm99x1" - -["github.com/tendermint/crypto"] - sumVersion = "v0.0.0-20191022145703-50d29ede1e15" - ["github.com/tendermint/crypto".fetch] - type = "git" - url = "https://github.com/tendermint/crypto" - rev = "50d29ede1e15ab205c8558ad67b85596ee19d3a0" - sha256 = "0vhyxsypb2q1zpcl464hlsdpap7kc3nj6gdff53xwrln2bg1jjin" - -["github.com/tendermint/go-amino"] - sumVersion = "v0.16.0" - ["github.com/tendermint/go-amino".fetch] - type = "git" - url = "https://github.com/tendermint/go-amino" - rev = "ccb15b138dfd74282be78f5e9059387768b12918" - sha256 = "1zcms3l5fihzg8nf4vhdk18qpn1jkbm3rpkjfpskfcrgzlxk6vi5" - -["github.com/tendermint/tendermint"] - sumVersion = "v0.34.9" - ["github.com/tendermint/tendermint".fetch] - type = "git" - url = "https://github.com/tendermint/tendermint" - rev = "e54fdb62046abe5606026e1fd79c293c4f5888d0" - sha256 = "04xq0p5yw0lfdqdj3rb5b0f2j8rzy5h1ibx2x790v52izcph1xfm" - -["github.com/tendermint/tm-db"] - sumVersion = "v0.6.4" - ["github.com/tendermint/tm-db".fetch] - type = "git" - url = "https://github.com/tendermint/tm-db" - rev = "6f9a08cd4522fb13d8df69b1694587d5015114fc" - sha256 = "1sgjf2vaq554ybc0cwkzn17cz2ibzph2rq0dgaw21c2hym09437x" - -["github.com/tendermint/tmlibs"] - sumVersion = "v0.9.0" - ["github.com/tendermint/tmlibs".fetch] - type = "git" - url = "https://github.com/tendermint/tmlibs" - rev = "49596e0a1f48866603813df843c9409fc19805c6" - sha256 = "0xqlyrf6m8r38gnzrckkb6yp0aiksglf9wpki2mhk61hm2phla56" - -["github.com/tidwall/gjson"] - sumVersion = "v1.6.1" - ["github.com/tidwall/gjson".fetch] - type = "git" - url = "https://github.com/tidwall/gjson" - rev = "45d8d3b98f86305c48ae80455ebd56773195ec72" - sha256 = "0qzh24k7rgj5sx1f5vk070aw6hk8gcl0icrcma6306j870x7nani" - -["github.com/tidwall/match"] - sumVersion = "v1.0.1" - ["github.com/tidwall/match".fetch] - type = "git" - url = "https://github.com/tidwall/match" - rev = "33827db735fff6510490d69a8622612558a557ed" - sha256 = "1ip5nkjvmzzzsypyzdd9nsnzbhwssprlx8qs5llqh16fl7kcvi3n" - -["github.com/tidwall/pretty"] - sumVersion = "v1.0.2" - ["github.com/tidwall/pretty".fetch] - type = "git" - url = "https://github.com/tidwall/pretty" - rev = "ef453c788d6a371829f4f9967b014b2b81856df5" - sha256 = "0bfp2nqwd7w3709lsyw2iw71hgbrnhcs1nr9n4vbari408qk2rv0" - -["github.com/tmc/grpc-websocket-proxy"] - sumVersion = "v0.0.0-20190109142713-0ad062ec5ee5" - ["github.com/tmc/grpc-websocket-proxy".fetch] - type = "git" - url = "https://github.com/tmc/grpc-websocket-proxy" - rev = "0ad062ec5ee553a48f6dbd280b7a1b5638e8a113" - sha256 = "1anw4v9wspnw9xf2z5r9w0sszwjklyanl0l85wgg6nxak9gnrqp4" - -["github.com/tv42/httpunix"] - sumVersion = "v0.0.0-20150427012821-b75d8614f926" - ["github.com/tv42/httpunix".fetch] - type = "git" - url = "https://github.com/tv42/httpunix" - rev = "b75d8614f926c077e48d85f1f8f7885b758c6225" - sha256 = "1sd9nnyyjm7n96fa18l0shlnapld4m0yj5ij2ba0l9yaaa2byqm9" - -["github.com/ugorji/go"] - sumVersion = "v1.1.4" - ["github.com/ugorji/go".fetch] - type = "git" - url = "https://github.com/ugorji/go" - rev = "2adff0894ba3bc2eeb9f9aea45fefd49802e1a13" - sha256 = "0ma2qvn5wqvjidpdz74x832a813qnr1cxbx6n6n125ak9b3wbn5w" - -["github.com/ugorji/go/codec"] - sumVersion = "v0.0.0-20181204163529-d75b2dcb6bc8" - relPath = "codec" - ["github.com/ugorji/go/codec".fetch] - type = "git" - url = "https://github.com/ugorji/go" - rev = "d75b2dcb6bc890b13ac61b764f5dc5e5a5591dce" - sha256 = "0di1k35gpq9bp958ywranpbskx2vdwlb38s22vl9rybm3wa5g3ps" - -["github.com/urfave/cli"] - sumVersion = "v1.22.1" - ["github.com/urfave/cli".fetch] - type = "git" - url = "https://github.com/urfave/cli" - rev = "c71fbcefd21552b70cd625b2c54466006e258ad7" - sha256 = "04ymak18flqlfcn8lycmg8r3931al8dvr8f1cg9n4yjaskmg72v8" - -["github.com/xeipuuv/gojsonpointer"] - sumVersion = "v0.0.0-20180127040702-4e3ac2762d5f" - ["github.com/xeipuuv/gojsonpointer".fetch] - type = "git" - url = "https://github.com/xeipuuv/gojsonpointer" - rev = "4e3ac2762d5f479393488629ee9370b50873b3a6" - sha256 = "13y6iq2nzf9z4ls66bfgnnamj2m3438absmbpqry64bpwjfbsi9q" - -["github.com/xeipuuv/gojsonreference"] - sumVersion = "v0.0.0-20180127040603-bd5ef7bd5415" - ["github.com/xeipuuv/gojsonreference".fetch] - type = "git" - url = "https://github.com/xeipuuv/gojsonreference" - rev = "bd5ef7bd5415a7ac448318e64f11a24cd21e594b" - sha256 = "1xby79padc7bmyb8rfbad8wfnfdzpnh51b1n8c0kibch0kwc1db5" - -["github.com/xeipuuv/gojsonschema"] - sumVersion = "v1.2.0" - ["github.com/xeipuuv/gojsonschema".fetch] - type = "git" - url = "https://github.com/xeipuuv/gojsonschema" - rev = "82fcdeb203eb6ab2a67d0a623d9c19e5e5a64927" - sha256 = "1mqiq0r8qw4qlfp3ls8073r6514rmzwrmdn4j33rppk3zh942i6l" - -["github.com/xiang90/probing"] - sumVersion = "v0.0.0-20190116061207-43a291ad63a2" - ["github.com/xiang90/probing".fetch] - type = "git" - url = "https://github.com/xiang90/probing" - rev = "43a291ad63a214a207fefbf03c7d9d78b703162b" - sha256 = "1z22ms16j5j42775mf31isanwx2pwr1d8wqw8006dczjv36qnz5i" - -["github.com/xordataexchange/crypt"] - sumVersion = "v0.0.3-0.20170626215501-b2862e3d0a77" - ["github.com/xordataexchange/crypt".fetch] - type = "git" - url = "https://github.com/xordataexchange/crypt" - rev = "b2862e3d0a775f18c7cfe02273500ae307b61218" - sha256 = "04q3856anpzl4gdfgmg7pbp9cx231nkz3ymq2xp27rnmmwhfxr8y" - -["github.com/yuin/goldmark"] - sumVersion = "v1.2.1" - ["github.com/yuin/goldmark".fetch] - type = "git" - url = "https://github.com/yuin/goldmark" - rev = "91e5269fb0f873f91c9a01e98f32de15ca49440f" - sha256 = "12rsnsf65drcp0jfw2jl9w589vsn3pxdk1zh3v9q908iigngrcmy" - -["github.com/zondax/hid"] - sumVersion = "v0.9.0" - ["github.com/zondax/hid".fetch] - type = "git" - url = "https://github.com/zondax/hid" - rev = "302fd402163c34626286195dfa9adac758334acc" - sha256 = "1wnpfn4bd86nz2v9dgb40xpz1ya66vahdkrhb1gj4jyyxdnnhqkh" - -["go.etcd.io/bbolt"] - sumVersion = "v1.3.5" - ["go.etcd.io/bbolt".fetch] - type = "git" - url = "https://github.com/etcd-io/bbolt" - rev = "232d8fc87f50244f9c808f4745759e08a304c029" - sha256 = "1h64gipvcg7060byv5wjlf524kqwj12p3v08kfh4ygv46vpm8p2r" - -["go.etcd.io/etcd"] - sumVersion = "v0.0.0-20191023171146-3cf2f69b5738" - ["go.etcd.io/etcd".fetch] - type = "git" - url = "https://github.com/etcd-io/etcd" - rev = "3cf2f69b5738fb702ba1a935590f36b52b18979b" - sha256 = "1w5jr8shn6whccksmpbcllcr1f8gjgh1dnix5rmnv3wwr5in5cgq" - -["go.opencensus.io"] - sumVersion = "v0.22.2" - ["go.opencensus.io".fetch] - type = "git" - url = "https://github.com/census-instrumentation/opencensus-go" - rev = "aad2c527c5defcf89b5afab7f37274304195a6b2" - sha256 = "0lz7fid63pdrcvyzk5kn7vlcva102h61igmw7pz824wvj9k3hy4q" - -["go.uber.org/atomic"] - sumVersion = "v1.5.0" - ["go.uber.org/atomic".fetch] - type = "git" - url = "https://github.com/uber-go/atomic" - rev = "9dc4df04d0d1c39369750a9f6c32c39560672089" - sha256 = "1ysc6xzafabcn52pbf4dx0j6vrik4n0x5gxfjib5f9jr9ilzcw7z" - -["go.uber.org/multierr"] - sumVersion = "v1.3.0" - ["go.uber.org/multierr".fetch] - type = "git" - url = "https://github.com/uber-go/multierr" - rev = "c3fc3d02ec864719d8e25be2d7dde1e35a36aa27" - sha256 = "0bq3m8qfx76p0jjgs1idb7fn0s6a4jjkldfqldyxdh3nqhyngb4k" - -["go.uber.org/tools"] - sumVersion = "v0.0.0-20190618225709-2cfd321de3ee" - ["go.uber.org/tools".fetch] - type = "git" - url = "https://github.com/uber-go/tools" - rev = "2cfd321de3ee5d5f8a5fda2521d1703478334d98" - sha256 = "0kcsg9pd3vyp5v9dz8xzd9lkpbqrlhr1rv6hg38afq6ifziw319i" - -["go.uber.org/zap"] - sumVersion = "v1.13.0" - ["go.uber.org/zap".fetch] - type = "git" - url = "https://github.com/uber-go/zap" - rev = "33e58d4d0120aa28d4df84cd244838c490846c9d" - sha256 = "11ayasjz1ki1qzl75qrzcnpd718bpms0wcldkd4f4wbplq0g04ck" - -["golang.org/x/crypto"] - sumVersion = "v0.0.0-20201221181555-eec23a3978ad" - ["golang.org/x/crypto".fetch] - type = "git" - url = "https://go.googlesource.com/crypto" - rev = "eec23a3978adcfd26c29f4153eaa3e3d9b2cc53a" - sha256 = "18cf6vhmx7v83ahyil7j8hkwhwf1012bgixglz7a6nc35qwwqb3r" - -["golang.org/x/exp"] - sumVersion = "v0.0.0-20200331195152-e8c3332aa8e5" - ["golang.org/x/exp".fetch] - type = "git" - url = "https://go.googlesource.com/exp" - rev = "e8c3332aa8e5b8e6acb4707c3a7e5979052b20aa" - sha256 = "085mbasmshl64f2d0awrf5k0iyh1aij888cp9aa12ldzp36404rw" - -["golang.org/x/image"] - sumVersion = "v0.0.0-20190802002840-cff245a6509b" - ["golang.org/x/image".fetch] - type = "git" - url = "https://go.googlesource.com/image" - rev = "cff245a6509b8c4de022d0d5b9037c503c5989d6" - sha256 = "0hiznlkiaay30acwvvyq8g6bm32r7bc6gv47pygrcxqpapasbz84" - -["golang.org/x/lint"] - sumVersion = "v0.0.0-20190930215403-16217165b5de" - ["golang.org/x/lint".fetch] - type = "git" - url = "https://go.googlesource.com/lint" - rev = "16217165b5de779cb6a5e4fc81fa9c1166fda457" - sha256 = "0jhwmwc0vykcmf164na0pnadl8gv7184b6pf3xayknwmzdw6vd7h" - -["golang.org/x/mobile"] - sumVersion = "v0.0.0-20190719004257-d2bd2a29d028" - ["golang.org/x/mobile".fetch] - type = "git" - url = "https://go.googlesource.com/mobile" - rev = "d2bd2a29d028cb94031e5e81788b19b371d00eb8" - sha256 = "1nv6vvhnjr01nx9y06q46ww87dppdwpbqrlsfg1xf2587wxl8xiv" - -["golang.org/x/mod"] - sumVersion = "v0.3.0" - ["golang.org/x/mod".fetch] - type = "git" - url = "https://go.googlesource.com/mod" - rev = "859b3ef565e237f9f1a0fb6b55385c497545680d" - sha256 = "0ldgbx2zpprbsfn6p8pfgs4nn87gwbfcv2z0fa7n8alwsq2yw78q" - -["golang.org/x/net"] - sumVersion = "v0.0.0-20201021035429-f5854403a974" - ["golang.org/x/net".fetch] - type = "git" - url = "https://go.googlesource.com/net" - rev = "f5854403a9740e74b2e9e725e6cd7c8a57711905" - sha256 = "1vw63zpmhi337f3gc432x3wkib4j2ia8dy7if31wxwb9dgqvy222" - -["golang.org/x/oauth2"] - sumVersion = "v0.0.0-20200107190931-bf48bf16ab8d" - ["golang.org/x/oauth2".fetch] - type = "git" - url = "https://go.googlesource.com/oauth2" - rev = "bf48bf16ab8d622ce64ec6ce98d2c98f916b6303" - sha256 = "1sirdib60zwmh93kf9qrx51r8544k1p9rs5mk0797wibz3m4mrdg" - -["golang.org/x/sync"] - sumVersion = "v0.0.0-20201020160332-67f06af15bc9" - ["golang.org/x/sync".fetch] - type = "git" - url = "https://go.googlesource.com/sync" - rev = "67f06af15bc961c363a7260195bcd53487529a21" - sha256 = "093p4panc808ak5bamzz7m9nb0xxib7778jpnr6f0xkz1n4fzyw5" - -["golang.org/x/sys"] - sumVersion = "v0.0.0-20201015000850-e3ed0017c211" - ["golang.org/x/sys".fetch] - type = "git" - url = "https://go.googlesource.com/sys" - rev = "e3ed0017c21142d3345308d92dcc7ad7020040c6" - sha256 = "0nz91nxgfcbcxirscdrxcq5a97z5pyz0g0k2chjxx228dz59aw1i" - -["golang.org/x/term"] - sumVersion = "v0.0.0-20201117132131-f5c789dd3221" - ["golang.org/x/term".fetch] - type = "git" - url = "https://go.googlesource.com/term" - rev = "f5c789dd3221ff39d752ac54467d762de7cfbec6" - sha256 = "1zjj3z607hk777f0cx7jrmypcp7n3gn3mpdal0pjrx076b5rfc3b" - -["golang.org/x/text"] - sumVersion = "v0.3.3" - ["golang.org/x/text".fetch] - type = "git" - url = "https://go.googlesource.com/text" - rev = "23ae387dee1f90d29a23c0e87ee0b46038fbed0e" - sha256 = "19pihqm3phyndmiw6i42pdv6z1rbvlqlsnhsyqf9gsnn0qnmqqlh" - -["golang.org/x/time"] - sumVersion = "v0.0.0-20191024005414-555d28b269f0" - ["golang.org/x/time".fetch] - type = "git" - url = "https://go.googlesource.com/time" - rev = "555d28b269f0569763d25dbe1a237ae74c6bcc82" - sha256 = "1rhl4lyz030kwfsg63yk83yd3ivryv1afmzdz9sxbhcj84ym6h4r" - -["golang.org/x/tools"] - sumVersion = "v0.0.0-20210106214847-113979e3529a" - ["golang.org/x/tools".fetch] - type = "git" - url = "https://go.googlesource.com/tools" - rev = "113979e3529a77b99c4f3e5f3c8a22802a39cc95" - sha256 = "0pq1a7hkamqdwsajyfrb27s56cvxz5838krsgyqz346s2djwdrzl" - -["golang.org/x/xerrors"] - sumVersion = "v0.0.0-20200804184101-5ec99f83aff1" - ["golang.org/x/xerrors".fetch] - type = "git" - url = "https://go.googlesource.com/xerrors" - rev = "5ec99f83aff198f5fbd629d6c8d8eb38a04218ca" - sha256 = "1dbzc3gmf2haazpv7cgmv97rq40g2xzwbglc17vas8dwhgwgwrzb" - -["google.golang.org/api"] - sumVersion = "v0.13.0" - ["google.golang.org/api".fetch] - type = "git" - url = "https://github.com/googleapis/google-api-go-client" - rev = "4f42dad4690a01d7f6fa461106c63889ff1be027" - sha256 = "1mw1k1j5l0ycrf3pwgzj9dzc8y9898lmj94s4ivcn7vc8ap8xppg" - -["google.golang.org/appengine"] - sumVersion = "v1.6.1" - ["google.golang.org/appengine".fetch] - type = "git" - url = "https://github.com/golang/appengine" - rev = "b2f4a3cf3c67576a2ee09e1fe62656a5086ce880" - sha256 = "0zxlvwzxwkwz4bs4h9zc9979dx76y4xf9ks4d22bclg47dv59yry" - -["google.golang.org/genproto"] - sumVersion = "v0.0.0-20210204154452-deb828366460" - ["google.golang.org/genproto".fetch] - type = "git" - url = "https://github.com/googleapis/go-genproto" - rev = "deb82836646031fbd5270d6e494a578ac0b028e6" - sha256 = "06p0vss61qyigrh0yg9abzdh6injf3a6y45i26hv9zrr93db2c5z" - -["google.golang.org/grpc"] - sumVersion = "v1.35.0" - ["google.golang.org/grpc".fetch] - type = "git" - url = "https://github.com/grpc/grpc-go" - rev = "577eb696279ea85069a02c9a4c2defafdab858c5" - sha256 = "15ij5acp9h8dxq0brc0jljj98badri23zpm4yvmsn6gnnxaykl72" - -["google.golang.org/protobuf"] - sumVersion = "v1.25.0" - ["google.golang.org/protobuf".fetch] - type = "git" - url = "https://go.googlesource.com/protobuf" - rev = "3f7a61f89bb6813f89d981d1870ed68da0b3c3f1" - sha256 = "0apfl42x166dh96zfq5kvv4b4ax9xljik6bq1mnvn2240ir3mc23" - -["gopkg.in/alecthomas/kingpin.v2"] - sumVersion = "v2.2.6" - ["gopkg.in/alecthomas/kingpin.v2".fetch] - type = "git" - url = "https://gopkg.in/alecthomas/kingpin.v2" - rev = "947dcec5ba9c011838740e680966fd7087a71d0d" - sha256 = "0mndnv3hdngr3bxp7yxfd47cas4prv98sqw534mx7vp38gd88n5r" - -["gopkg.in/check.v1"] - sumVersion = "v1.0.0-20200902074654-038fdea0a05b" - ["gopkg.in/check.v1".fetch] - type = "git" - url = "https://gopkg.in/check.v1" - rev = "038fdea0a05bc030b0bfda479dc2e08d2220ec74" - sha256 = "060kpz01bfglrd7przzgq8a1fqf1x0hlkmdj6isindzwx3kfhnm4" - -["gopkg.in/cheggaaa/pb.v1"] - sumVersion = "v1.0.25" - ["gopkg.in/cheggaaa/pb.v1".fetch] - type = "git" - url = "https://gopkg.in/cheggaaa/pb.v1" - rev = "2af8bbdea9e99e83b3ac400d8f6b6d1b8cbbf338" - sha256 = "0vxqiw6f3xyv0zy3g4lksf8za0z8i0hvfpw92hqimsy84f79j3dp" - -["gopkg.in/errgo.v2"] - sumVersion = "v2.1.0" - ["gopkg.in/errgo.v2".fetch] - type = "git" - url = "https://gopkg.in/errgo.v2" - rev = "f768c5ab0476c50e978b039312180859c10fe8c0" - sha256 = "065mbihiy7q67wnql0bzl9y1kkvck5ivra68254zbih52jxwrgr2" - -["gopkg.in/fsnotify.v1"] - sumVersion = "v1.4.7" - ["gopkg.in/fsnotify.v1".fetch] - type = "git" - url = "https://gopkg.in/fsnotify.v1" - rev = "c2828203cd70a50dcccfb2761f8b1f8ceef9a8e9" - sha256 = "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g" - -["gopkg.in/gcfg.v1"] - sumVersion = "v1.2.3" - ["gopkg.in/gcfg.v1".fetch] - type = "git" - url = "https://gopkg.in/gcfg.v1" - rev = "61b2c08bc8f6068f7c5ca684372f9a6cb1c45ebe" - sha256 = "165f9wincwnkblp8x6m1f4ch4m8k4gvy5v4x4gqdpmf59kqv5y7s" - -["gopkg.in/ini.v1"] - sumVersion = "v1.51.0" - ["gopkg.in/ini.v1".fetch] - type = "git" - url = "https://gopkg.in/ini.v1" - rev = "87e589f4917038ae250cff2446db7573f47e97ca" - sha256 = "1wccpzmf4kmz6hl6pd3mjwlzr9p6m6j9vc9302svzcwbaidgn3l1" - -["gopkg.in/resty.v1"] - sumVersion = "v1.12.0" - ["gopkg.in/resty.v1".fetch] - type = "git" - url = "https://gopkg.in/resty.v1" - rev = "fa5875c0caa5c260ab78acec5a244215a730247f" - sha256 = "062mn735rqzhha5ag07z4gz08hxzrfm2yx067jfmaaxmb6797lmp" - -["gopkg.in/tomb.v1"] - sumVersion = "v1.0.0-20141024135613-dd632973f1e7" - ["gopkg.in/tomb.v1".fetch] - type = "git" - url = "https://gopkg.in/tomb.v1" - rev = "dd632973f1e7218eb1089048e0798ec9ae7dceb8" - sha256 = "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv" - -["gopkg.in/warnings.v0"] - sumVersion = "v0.1.2" - ["gopkg.in/warnings.v0".fetch] - type = "git" - url = "https://gopkg.in/warnings.v0" - rev = "ec4a0fea49c7b46c2aeb0b51aac55779c607e52b" - sha256 = "1kzj50jn708cingn7a13c2wdlzs6qv89dr2h4zj8d09647vlnd81" - -["gopkg.in/yaml.v2"] - sumVersion = "v2.4.0" - ["gopkg.in/yaml.v2".fetch] - type = "git" - url = "https://gopkg.in/yaml.v2" - rev = "7649d4548cb53a614db133b2a8ac1f31859dda8c" - sha256 = "1pbmrpj7gcws34g8vwna4i2nhm9p6235piww36436xhyaa10cldr" - -["gopkg.in/yaml.v3"] - sumVersion = "v3.0.0-20200313102051-9f266ea9e77c" - ["gopkg.in/yaml.v3".fetch] - type = "git" - url = "https://gopkg.in/yaml.v3" - rev = "9f266ea9e77c4c7aab4cf02650570e7c7b3031a5" - sha256 = "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35" - -["honnef.co/go/tools"] - sumVersion = "v0.0.1-2019.2.3" - ["honnef.co/go/tools".fetch] - type = "git" - url = "https://github.com/dominikh/go-tools" - rev = "afd67930eec2a9ed3e9b19f684d17a062285f16a" - sha256 = "1rwwahmbs4dwxncwjj56likir1kps9937vm2id3rygxzzla40zal" - -["rsc.io/binaryregexp"] - sumVersion = "v0.2.0" - ["rsc.io/binaryregexp".fetch] - type = "git" - url = "https://github.com/rsc/binaryregexp" - rev = "857b9542aaa89cfa42a1477b43fa1f24192fe921" - sha256 = "1kar0myy85waw418zslviwx8846zj0m9cmqkxjx0fvgjdi70nc4b" - -["sigs.k8s.io/yaml"] - sumVersion = "v1.1.0" - ["sigs.k8s.io/yaml".fetch] - type = "git" - url = "https://github.com/kubernetes-sigs/yaml" - rev = "fd68e9863619f6ec2fdd8625fe1f02e7c877e480" - sha256 = "1p7hvjdr5jsyk7nys1g1pmgnf3ys6n320i6hds85afppk81k01kb" - -["sourcegraph.com/sourcegraph/appdash"] - sumVersion = "v0.0.0-20190731080439-ebfcffb1b5c0" - ["sourcegraph.com/sourcegraph/appdash".fetch] - type = "git" - url = "https://github.com/sourcegraph/appdash" - rev = "ebfcffb1b5c00031ce797183546746715a3cfe87" - sha256 = "1xlff68pa7jchg1xr2nkrkk94mrd0ba2z38968j7swlfyf8rkk3d" diff --git a/resources/iris/last-synced.narHash b/resources/iris/last-synced.narHash deleted file mode 100644 index c0b2b3c7..00000000 --- a/resources/iris/last-synced.narHash +++ /dev/null @@ -1 +0,0 @@ -sha256-1nPJOuYeGjzBYFCS0IiC5j9TJd5KVa9IL0kROks328E= diff --git a/resources/juno/default.nix b/resources/juno/default.nix deleted file mode 100644 index 14ddb6a9..00000000 --- a/resources/juno/default.nix +++ /dev/null @@ -1,25 +0,0 @@ -{ pkgs, juno-src, ledgerSupport ? false }: -let - pname = "juno"; - version = "v2.1.0"; - tendermint-version = (fromTOML (builtins.readFile ./go-modules.toml))."github.com/tendermint/tendermint".sumVersion; -in -pkgs.buildGoApplication { - name = "juno"; - src = "${juno-src}"; - modules = ./go-modules.toml; - preCheck = '' - export HOME="$(mktemp -d)" - ''; - doCheck = false; - CGO_ENABLED = "1"; - buildFlags = "-tags netgo" + pkgs.lib.optionalString ledgerSupport ",ledger"; - buildFlagsArray = '' - -ldflags= - -X github.com/cosmos/cosmos-sdk/version.Name=${pname} - -X github.com/cosmos/cosmos-sdk/version.AppName=junod - -X github.com/cosmos/cosmos-sdk/version.Version=${version} - -X github.com/cosmos/cosmos-sdk/version.Commit=${juno-src.rev} - -X github.com/tendermint/tendermint/version.TMCoreSemVer=${tendermint-version} - ''; -} diff --git a/resources/juno/go-modules.toml b/resources/juno/go-modules.toml deleted file mode 100644 index e3ca5e79..00000000 --- a/resources/juno/go-modules.toml +++ /dev/null @@ -1,3938 +0,0 @@ -["bazil.org/fuse"] - sumVersion = "v0.0.0-20200407214033-5883e5a4b512" - ["bazil.org/fuse".fetch] - type = "git" - url = "https://github.com/bazil/fuse" - rev = "5883e5a4b512fe2e32f915b1c66a1ddfef81cb3f" - sha256 = "15w644acjhz04cpplk62h12r1k17iw61k0s4gby72lavclfcjpks" - -["cloud.google.com/go"] - sumVersion = "v0.99.0" - ["cloud.google.com/go".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "5563382a8560ea851e6d54962ea71165b2807b24" - sha256 = "1h5w5rnfaifg6frgyh7pz6604zhdacy0jmha0i0vvmb8n2vadx2n" - -["cloud.google.com/go/bigquery"] - sumVersion = "v1.8.0" - relPath = "bigquery" - ["cloud.google.com/go/bigquery".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "0aa265f094062dbc111a6906d279fbb88a6cc761" - sha256 = "1127ha4r0xjsfl04mdb134b6kvpc6yz5bx4bba8m1jmb4k3vyg3j" - -["cloud.google.com/go/datastore"] - sumVersion = "v1.1.0" - relPath = "datastore" - ["cloud.google.com/go/datastore".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "d96ccb2ba7586bb79a416471882d347754a78ce5" - sha256 = "18f1l28665x1a8j8a5bh2i7wb2vrwj050d1g5qda50isgqaybixd" - -["cloud.google.com/go/firestore"] - sumVersion = "v1.6.1" - relPath = "firestore" - ["cloud.google.com/go/firestore".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "fd062bed4252b6281f65721a22e56d601a879b20" - sha256 = "0bgkcivkq1gsz1017mlxlxy9dv39jxmb9pf5djrp3wq0pf7z65l7" - -["cloud.google.com/go/pubsub"] - sumVersion = "v1.3.1" - relPath = "pubsub" - ["cloud.google.com/go/pubsub".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "f4685751540ab300d8e99946847a75f7d0837e45" - sha256 = "1fxsj63d773yf6mjas5gwsq2caa6iqxmss6mms0yfdcc6krg6zkf" - -["cloud.google.com/go/storage"] - sumVersion = "v1.10.0" - relPath = "storage" - ["cloud.google.com/go/storage".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "3f2988d48e253a8e290b8c0e821284eead1131a0" - sha256 = "10fp6galzz8jwx35159xdcrwsqaz95xw78iwv1z5n67vhglwi5nf" - -["dmitri.shuralyov.com/gpu/mtl"] - sumVersion = "v0.0.0-20190408044501-666a987793e9" - ["dmitri.shuralyov.com/gpu/mtl".fetch] - type = "git" - url = "https://dmitri.shuralyov.com/gpu/mtl" - rev = "666a987793e9432fbb48592aa2f3bf3463685dfa" - sha256 = "1isd03hgiwcf2ld1rlp0plrnfz7r4i7c5q4kb6hkcd22axnmrv0z" - -["filippo.io/edwards25519"] - sumVersion = "v1.0.0-beta.2" - ["filippo.io/edwards25519".fetch] - type = "git" - url = "https://github.com/FiloSottile/edwards25519" - rev = "6944ac7e84c8dffcf51f4e1b0bc2d75a822549e5" - sha256 = "1fv6mssk1r96jbkbb413kxmcf87xz2knyx1bivdam2aa3mhxrim5" - -["github.com/99designs/keyring"] - sumVersion = "v1.1.6" - ["github.com/99designs/keyring".fetch] - type = "git" - url = "https://github.com/99designs/keyring" - rev = "68286ee5140ad1c5cce93fcc054e6cc90015b0ea" - sha256 = "08rcdqpxaa9n348q10fw40q4gxpjajkyrighykk71i7mxzwkcgwn" - -["github.com/Azure/azure-pipeline-go"] - sumVersion = "v0.2.2" - ["github.com/Azure/azure-pipeline-go".fetch] - type = "git" - url = "https://github.com/Azure/azure-pipeline-go" - rev = "232aee85e8e3a6223a11c0943f7df2ae0fac00e4" - sha256 = "1agn2nzmm1dkwggm4w7h4bnrav4n5jrl0vqbqy2s49vqlr8zirn6" - -["github.com/Azure/azure-storage-blob-go"] - sumVersion = "v0.7.0" - ["github.com/Azure/azure-storage-blob-go".fetch] - type = "git" - url = "https://github.com/Azure/azure-storage-blob-go" - rev = "3efca72bd11c050222deab57e25ea90df03b9692" - sha256 = "03lxg2v7gjl49cli818g9rnkz6818zvwhw8zm8z16y6cjmj8qmzv" - -["github.com/Azure/go-ansiterm"] - sumVersion = "v0.0.0-20210617225240-d185dfc1b5a1" - ["github.com/Azure/go-ansiterm".fetch] - type = "git" - url = "https://github.com/Azure/go-ansiterm" - rev = "d185dfc1b5a126116ea5a19e148e29d16b4574c9" - sha256 = "1y54b1fx80qlyvv2915xrryb9vcc8nnbsdkxszhxjg8bcg85ps5c" - -["github.com/Azure/go-autorest/autorest"] - sumVersion = "v0.9.0" - relPath = "autorest" - ["github.com/Azure/go-autorest/autorest".fetch] - type = "git" - url = "https://github.com/Azure/go-autorest" - rev = "85d9c035382e5537c3c76e84ca5b82c5f09825e9" - sha256 = "01fg6x3a6as2kh0km8kvjzjalq7xiqa17hnsdwawzlpnfpqgslvq" - -["github.com/Azure/go-autorest/autorest/adal"] - sumVersion = "v0.8.0" - relPath = "autorest/adal" - ["github.com/Azure/go-autorest/autorest/adal".fetch] - type = "git" - url = "https://github.com/Azure/go-autorest" - rev = "740293c019d8314ce3378d456b4327fa646297e6" - sha256 = "1ga12qs31v95010jdn8raw0mf2kvlxhfl8z856y7dn2x3fviv7r4" - -["github.com/Azure/go-autorest/autorest/date"] - sumVersion = "v0.2.0" - relPath = "autorest/date" - ["github.com/Azure/go-autorest/autorest/date".fetch] - type = "git" - url = "https://github.com/Azure/go-autorest" - rev = "5bd9621f41a06b08038be5c0522971a35316d5ef" - sha256 = "0fifmqljld72v0g545qqljmynhjgg8jm0ying35wzni0m7cg6n4y" - -["github.com/Azure/go-autorest/autorest/mocks"] - sumVersion = "v0.3.0" - relPath = "autorest/mocks" - ["github.com/Azure/go-autorest/autorest/mocks".fetch] - type = "git" - url = "https://github.com/Azure/go-autorest" - rev = "5bd9621f41a06b08038be5c0522971a35316d5ef" - sha256 = "0fifmqljld72v0g545qqljmynhjgg8jm0ying35wzni0m7cg6n4y" - -["github.com/Azure/go-autorest/logger"] - sumVersion = "v0.1.0" - relPath = "logger" - ["github.com/Azure/go-autorest/logger".fetch] - type = "git" - url = "https://github.com/Azure/go-autorest" - rev = "4bb4e3c99dd98a53e3d65a6f28aa05e2d435cb24" - sha256 = "1w94wxjjkiv8m44rcdm1af9h0ap2r8kpp9198cxpxj8d5xxkaxpz" - -["github.com/Azure/go-autorest/tracing"] - sumVersion = "v0.5.0" - relPath = "tracing" - ["github.com/Azure/go-autorest/tracing".fetch] - type = "git" - url = "https://github.com/Azure/go-autorest" - rev = "5e7a399d8bbf4953ab0c8e3167d7fd535fd74ce1" - sha256 = "0n482cjr2pk6ql6awcnn6llrnygjzakihbjaahgmylf3znwil7jp" - -["github.com/BurntSushi/toml"] - sumVersion = "v0.4.1" - ["github.com/BurntSushi/toml".fetch] - type = "git" - url = "https://github.com/BurntSushi/toml" - rev = "641c3cf2148ad11ca058c000eab0453dd5d67954" - sha256 = "0bz7q3v4m2rq5z47q81bvb4lw6ss2r1x3phgr43a6nls9x5kcpp1" - -["github.com/BurntSushi/xgb"] - sumVersion = "v0.0.0-20160522181843-27f122750802" - ["github.com/BurntSushi/xgb".fetch] - type = "git" - url = "https://github.com/BurntSushi/xgb" - rev = "27f122750802c950b2c869a5b63dafcf590ced95" - sha256 = "18lp2x8f5bljvlz0r7xn744f0c9rywjsb9ifiszqqdcpwhsa0kvj" - -["github.com/ChainSafe/go-schnorrkel"] - sumVersion = "v0.0.0-20200405005733-88cbf1b4c40d" - ["github.com/ChainSafe/go-schnorrkel".fetch] - type = "git" - url = "https://github.com/ChainSafe/go-schnorrkel" - rev = "88cbf1b4c40de64a5ea4863476c6c8ae5433c594" - sha256 = "09ncxdzy4scwmgj96lq83a40bb29nkws1y9x0nim86l9x5jmgi4b" - -["github.com/CosmWasm/wasmd"] - sumVersion = "v1.0.0-juno5" - vendorPath = "github.com/cosmoscontracts/wasmd" - ["github.com/CosmWasm/wasmd".fetch] - type = "git" - url = "https://github.com/cosmoscontracts/wasmd" - rev = "07dbcf696d6677d6c4db9ed5c2a4eb326cb73255" - sha256 = "1g2qsa2zc8vbadvf6v6h7asjll2x46vl5zbanvz97wlgbkvp6l9q" - -["github.com/CosmWasm/wasmvm"] - sumVersion = "v1.0.0-soon2.0.20211209162446-b96c92d21aaf" - ["github.com/CosmWasm/wasmvm".fetch] - type = "git" - url = "https://github.com/CosmWasm/wasmvm" - rev = "b96c92d21aafc2fcd854e1bb77a321464ae1287c" - sha256 = "0vq6nw1hhgpd4n88yym2xac22zpmdv6jzr8082zayiaz66h72zbs" - -["github.com/DataDog/datadog-go"] - sumVersion = "v3.2.0+incompatible" - ["github.com/DataDog/datadog-go".fetch] - type = "git" - url = "https://github.com/DataDog/datadog-go" - rev = "8bfdc335936a79b55b3e2c1080930bc5a3eb57f2" - sha256 = "1m8anll166rwcprjyv3bb0l450p35m0gzn6fs7bcd3ck2s527k7x" - -["github.com/DataDog/zstd"] - sumVersion = "v1.4.5" - ["github.com/DataDog/zstd".fetch] - type = "git" - url = "https://github.com/DataDog/zstd" - rev = "0e71ac6221c995a831bb393da70730c3d3a07091" - sha256 = "0xhgh7nzxq3lzba7w7v3w5mb4nb799v5xh5ylml0hk21ricm7g9s" - -["github.com/HdrHistogram/hdrhistogram-go"] - sumVersion = "v1.1.2" - ["github.com/HdrHistogram/hdrhistogram-go".fetch] - type = "git" - url = "https://github.com/HdrHistogram/hdrhistogram-go" - rev = "494271c4c016b36c8cee88480288f33b419cf7b0" - sha256 = "0l12j3dvljp868p1d2izpiq7ysll05fchvxij8zb8r160lmqv58r" - -["github.com/Knetic/govaluate"] - sumVersion = "v3.0.1-0.20171022003610-9aa49832a739+incompatible" - ["github.com/Knetic/govaluate".fetch] - type = "git" - url = "https://github.com/Knetic/govaluate" - rev = "9aa49832a739dcd78a5542ff189fb82c3e423116" - sha256 = "12klijhq4fckzbhv0cwygbazj6lvhmdqksha9y6jgfmwzv51kwv5" - -["github.com/Microsoft/go-winio"] - sumVersion = "v0.5.0" - ["github.com/Microsoft/go-winio".fetch] - type = "git" - url = "https://github.com/Microsoft/go-winio" - rev = "58dba89befbca5b5a2c944f84642f5b0540bcfd5" - sha256 = "123p5by5craqigydfqj0hchplcv75zz81xzj5s3ixq624qjbg0z5" - -["github.com/Nvveen/Gotty"] - sumVersion = "v0.0.0-20120604004816-cd527374f1e5" - ["github.com/Nvveen/Gotty".fetch] - type = "git" - url = "https://github.com/Nvveen/Gotty" - rev = "cd527374f1e5bff4938207604a14f2e38a9cf512" - sha256 = "1ylvr1p6p036ns3g3wdz8f92f69symshkc8j54fa6gpg4hyk0k6q" - -["github.com/OneOfOne/xxhash"] - sumVersion = "v1.2.2" - ["github.com/OneOfOne/xxhash".fetch] - type = "git" - url = "https://github.com/OneOfOne/xxhash" - rev = "6def279d2ce6c81a79dd1c1be580f03bb216fb8a" - sha256 = "1mjfhrwhvxa48rycjnqpqzm521i38h1hdyz6pdwmhd7xb8j6gwi6" - -["github.com/Shopify/sarama"] - sumVersion = "v1.19.0" - ["github.com/Shopify/sarama".fetch] - type = "git" - url = "https://github.com/Shopify/sarama" - rev = "ec843464b50d4c8b56403ec9d589cf41ea30e722" - sha256 = "0q1z3pvcd011yprwzws2s293v4cjvsszhai6vnfrahjcbsz79q0z" - -["github.com/Shopify/toxiproxy"] - sumVersion = "v2.1.4+incompatible" - ["github.com/Shopify/toxiproxy".fetch] - type = "git" - url = "https://github.com/Shopify/toxiproxy" - rev = "49b4ea27da29ae83ad3bfe7f7f090d18cbee1dc3" - sha256 = "07yhsvscdv1qjfc2fyyh9qsrrdwrrw04wadk5gaq4qddcway7vig" - -["github.com/StackExchange/wmi"] - sumVersion = "v0.0.0-20180116203802-5d049714c4a6" - ["github.com/StackExchange/wmi".fetch] - type = "git" - url = "https://github.com/StackExchange/wmi" - rev = "5d049714c4a64225c3c79a7cf7d02f7fb5b96338" - sha256 = "1slw6v1fl8i0hz4db9lph55pbhnrxhqyndq6vm27dgvpj22k29fk" - -["github.com/VictoriaMetrics/fastcache"] - sumVersion = "v1.5.7" - ["github.com/VictoriaMetrics/fastcache".fetch] - type = "git" - url = "https://github.com/VictoriaMetrics/fastcache" - rev = "2c7a92dc306a8b0402608403e97ae9c3cb3c2328" - sha256 = "19fsx8ha2kdjbsinlllz70fj96z6xhvn38x8qrmml0abmsf5z60k" - -["github.com/VividCortex/gohistogram"] - sumVersion = "v1.0.0" - ["github.com/VividCortex/gohistogram".fetch] - type = "git" - url = "https://github.com/VividCortex/gohistogram" - rev = "51564d9861991fb0ad0f531c99ef602d0f9866e6" - sha256 = "1ykpvrkri3mzc0z77kdva93ylh0bqg7jq3i024r3iv0i6bwx3rnf" - -["github.com/Workiva/go-datastructures"] - sumVersion = "v1.0.53" - ["github.com/Workiva/go-datastructures".fetch] - type = "git" - url = "https://github.com/Workiva/go-datastructures" - rev = "c466da296827daa1e1efba14c912e2802533fe7f" - sha256 = "0ilnb6rmk9y1wc3ykiw33xpxc1l3f4d56f2b3mxl5j3qxy4zhdk9" - -["github.com/Zilliqa/gozilliqa-sdk"] - sumVersion = "v1.2.1-0.20201201074141-dd0ecada1be6" - ["github.com/Zilliqa/gozilliqa-sdk".fetch] - type = "git" - url = "https://github.com/Zilliqa/gozilliqa-sdk" - rev = "dd0ecada1be6987976b9f3b557dbb4de305ecf5b" - sha256 = "06hzp118gzkbfvmzpwsqd4iky9br99lxgidgs5xnxwhzhli017w1" - -["github.com/adlio/schema"] - sumVersion = "v1.1.14" - ["github.com/adlio/schema".fetch] - type = "git" - url = "https://github.com/adlio/schema" - rev = "033e84c7bb2cfbbf5cb059403c4d5f20a984284a" - sha256 = "0kw93shxhrjaaxdwp8l5mlkh91lw9mqvw5hbd3rga3mqskv8v67g" - -["github.com/aead/siphash"] - sumVersion = "v1.0.1" - ["github.com/aead/siphash".fetch] - type = "git" - url = "https://github.com/aead/siphash" - rev = "83563a290f60225eb120d724600b9690c3fb536f" - sha256 = "01kd1z82sc4nh3nj9c25aryyp396s7jrqc2kz9d7qq1vy2hdbznc" - -["github.com/afex/hystrix-go"] - sumVersion = "v0.0.0-20180502004556-fa1af6a1f4f5" - ["github.com/afex/hystrix-go".fetch] - type = "git" - url = "https://github.com/afex/hystrix-go" - rev = "fa1af6a1f4f56e0e50d427fe901cd604d8c6fb8a" - sha256 = "0zlj0330j816flvwvis4d4vv1gigpxlghph7awbc9jb7ggf2qssn" - -["github.com/ajstarks/svgo"] - sumVersion = "v0.0.0-20180226025133-644b8db467af" - ["github.com/ajstarks/svgo".fetch] - type = "git" - url = "https://github.com/ajstarks/svgo" - rev = "644b8db467afccf19a0692a3e31a1868e4287ab8" - sha256 = "1m56v06gpdzfmw0hgjri487gdlc5w40s3pz1l7lp8hbw2l6lbjhk" - -["github.com/alecthomas/template"] - sumVersion = "v0.0.0-20190718012654-fb15b899a751" - ["github.com/alecthomas/template".fetch] - type = "git" - url = "https://github.com/alecthomas/template" - rev = "fb15b899a75114aa79cc930e33c46b577cc664b1" - sha256 = "1vlasv4dgycydh5wx6jdcvz40zdv90zz1h7836z7lhsi2ymvii26" - -["github.com/alecthomas/units"] - sumVersion = "v0.0.0-20190924025748-f65c72e2690d" - ["github.com/alecthomas/units".fetch] - type = "git" - url = "https://github.com/alecthomas/units" - rev = "f65c72e2690dc4b403c8bd637baf4611cd4c069b" - sha256 = "04jyqm7m3m01ppfy1f9xk4qvrwvs78q9zml6llyf2b3v5k6b2bbc" - -["github.com/allegro/bigcache"] - sumVersion = "v1.2.1-0.20190218064605-e24eb225f156" - ["github.com/allegro/bigcache".fetch] - type = "git" - url = "https://github.com/allegro/bigcache" - rev = "e24eb225f15679bbe54f91bfa7da3b00e59b9768" - sha256 = "1ha36q4km0i1klhpxywkfc8w77ldddl7nvqg0wl0ixy17j20na7m" - -["github.com/antihax/optional"] - sumVersion = "v1.0.0" - ["github.com/antihax/optional".fetch] - type = "git" - url = "https://github.com/antihax/optional" - rev = "c3f0ba9c1a592b971d66b2787679af55b5c58f21" - sha256 = "1ix08vl49qxr58rc6201cl97g1yznhhkwvqldslawind99js4rj0" - -["github.com/apache/thrift"] - sumVersion = "v0.13.0" - ["github.com/apache/thrift".fetch] - type = "git" - url = "https://github.com/apache/thrift" - rev = "cecee50308fc7e6f77f55b3fd906c1c6c471fa2f" - sha256 = "17ckl7p7s3ga33yrjisilsimp80ansqxl54wvpkv0j7vx2zvc13y" - -["github.com/aristanetworks/goarista"] - sumVersion = "v0.0.0-20170210015632-ea17b1a17847" - ["github.com/aristanetworks/goarista".fetch] - type = "git" - url = "https://github.com/aristanetworks/goarista" - rev = "ea17b1a17847fb6e4c0a91de0b674704693469b0" - sha256 = "02q3dhrgcbdx2826vs7gwrnw6yg9kwcyqyhrvnyf5fj5wfdqzdmp" - -["github.com/armon/circbuf"] - sumVersion = "v0.0.0-20150827004946-bbbad097214e" - ["github.com/armon/circbuf".fetch] - type = "git" - url = "https://github.com/armon/circbuf" - rev = "bbbad097214e2918d8543d5201d12bfd7bca254d" - sha256 = "1idpr0lzb2px2p3wgfq2276yl7jpaz43df6n91kf790404s4zmk3" - -["github.com/armon/consul-api"] - sumVersion = "v0.0.0-20180202201655-eb2c6b5be1b6" - ["github.com/armon/consul-api".fetch] - type = "git" - url = "https://github.com/armon/consul-api" - rev = "eb2c6b5be1b66bab83016e0b05f01b8d5496ffbd" - sha256 = "1j6fdr1sg36qy4n4xjl7brq739fpm5npq98cmvklzjc9qrx98nk9" - -["github.com/armon/go-metrics"] - sumVersion = "v0.3.10" - ["github.com/armon/go-metrics".fetch] - type = "git" - url = "https://github.com/armon/go-metrics" - rev = "d1e5690ba72f7651735eb0a618d5523a6bdccf58" - sha256 = "07ycr1qswxx2r30r1dr27ggnjwxllcab17193sy2hfyps2ka31s2" - -["github.com/armon/go-radix"] - sumVersion = "v1.0.0" - ["github.com/armon/go-radix".fetch] - type = "git" - url = "https://github.com/armon/go-radix" - rev = "1a2de0c21c94309923825da3df33a4381872c795" - sha256 = "1m1k0jz9gjfrk4m7hjm7p03qmviamfgxwm2ghakqxw3hdds8v503" - -["github.com/aryann/difflib"] - sumVersion = "v0.0.0-20170710044230-e206f873d14a" - ["github.com/aryann/difflib".fetch] - type = "git" - url = "https://github.com/aryann/difflib" - rev = "e206f873d14a916d3d26c40ab667bca123f365a3" - sha256 = "00zb9sx6l6b2zq614x45zlyshl20zjhwfj8r5krw4f9y0mx3n2dm" - -["github.com/aws/aws-lambda-go"] - sumVersion = "v1.13.3" - ["github.com/aws/aws-lambda-go".fetch] - type = "git" - url = "https://github.com/aws/aws-lambda-go" - rev = "b5b7267d297de263cc5b61f8c37543daa9c95ffd" - sha256 = "049zq6gr9xdjjsxd3yimawqlh2ibfkj2434cnjm4x93ph62hppm9" - -["github.com/aws/aws-sdk-go"] - sumVersion = "v1.40.45" - ["github.com/aws/aws-sdk-go".fetch] - type = "git" - url = "https://github.com/aws/aws-sdk-go" - rev = "a05b60637f0c4b5e6ce8abb6464f838787217f54" - sha256 = "0lxkssdbi8bvx1v10477dldm86drr9cgzn8xl0jjkj0fy4dhf76i" - -["github.com/aws/aws-sdk-go-v2"] - sumVersion = "v1.9.1" - ["github.com/aws/aws-sdk-go-v2".fetch] - type = "git" - url = "https://github.com/aws/aws-sdk-go-v2" - rev = "a930583ec3794253f8fb7bc5cc099e3cda8a355f" - sha256 = "0w6jckys4mvbb4nv2xra17zmv28rp2v4ysx71k09vjgkc52nbcxm" - -["github.com/aws/aws-sdk-go-v2/service/cloudwatch"] - sumVersion = "v1.8.1" - relPath = "service/cloudwatch" - ["github.com/aws/aws-sdk-go-v2/service/cloudwatch".fetch] - type = "git" - url = "https://github.com/aws/aws-sdk-go-v2" - rev = "3ddb4d670277f173ec60e271ced9a07b605fbc0c" - sha256 = "1436fagw6fzx4adwr047sv2k99h2vbzcmhvwxjsbpb5ymmrnydjd" - -["github.com/aws/smithy-go"] - sumVersion = "v1.8.0" - ["github.com/aws/smithy-go".fetch] - type = "git" - url = "https://github.com/aws/smithy-go" - rev = "565695c30ec008cde865c535293c7111fac7ce1f" - sha256 = "1sz6bcg60k00khhs89in8vapgqzkjm26fampa79b8al887fc7qsh" - -["github.com/benbjohnson/clock"] - sumVersion = "v1.1.0" - ["github.com/benbjohnson/clock".fetch] - type = "git" - url = "https://github.com/benbjohnson/clock" - rev = "307483a2173c76d3ded778bd68214865fcf05ec8" - sha256 = "1xq55i5jsfy0lw035c479sb8dqymjgm2v6scq22nw4rzm3syfgq5" - -["github.com/beorn7/perks"] - sumVersion = "v1.0.1" - ["github.com/beorn7/perks".fetch] - type = "git" - url = "https://github.com/beorn7/perks" - rev = "37c8de3658fcb183f997c4e13e8337516ab753e6" - sha256 = "17n4yygjxa6p499dj3yaqzfww2g7528165cl13haj97hlx94dgl7" - -["github.com/bgentry/speakeasy"] - sumVersion = "v0.1.0" - ["github.com/bgentry/speakeasy".fetch] - type = "git" - url = "https://github.com/bgentry/speakeasy" - rev = "4aabc24848ce5fd31929f7d1e4ea74d3709c14cd" - sha256 = "02dfrj0wyphd3db9zn2mixqxwiz1ivnyc5xc7gkz58l5l27nzp8s" - -["github.com/bits-and-blooms/bitset"] - sumVersion = "v1.2.0" - ["github.com/bits-and-blooms/bitset".fetch] - type = "git" - url = "https://github.com/bits-and-blooms/bitset" - rev = "59de210119f50cedaa42d175dc88b6335fcf63f6" - sha256 = "0r9f7lvz6znl7yr6njg77m8hj472yhdshf1qaybwyw7j8as6c4r3" - -["github.com/bketelsen/crypt"] - sumVersion = "v0.0.4" - ["github.com/bketelsen/crypt".fetch] - type = "git" - url = "https://github.com/bketelsen/crypt" - rev = "3f0829aaee54a3e9eabd45afbf68257a5cf754f7" - sha256 = "0fyfcvy73zskd1p1mv0cn03anxkkr5gvlawsc87znqk60hdypq3v" - -["github.com/btcsuite/btcd"] - sumVersion = "v0.22.0-beta" - ["github.com/btcsuite/btcd".fetch] - type = "git" - url = "https://github.com/btcsuite/btcd" - rev = "63438c6d3661a7dec09013f7731035abdf1eb4bc" - sha256 = "0rcsd3wcs0cii8qq0573h9fi1x92i8c1gzdvifnkm2r0ndl4knla" - -["github.com/btcsuite/btclog"] - sumVersion = "v0.0.0-20170628155309-84c8d2346e9f" - ["github.com/btcsuite/btclog".fetch] - type = "git" - url = "https://github.com/btcsuite/btclog" - rev = "84c8d2346e9fc8c7b947e243b9c24e6df9fd206a" - sha256 = "02dl46wcnfpg9sqvg0ipipkpnd7lrf4fnvb9zy56jqa7mfcwc7wk" - -["github.com/btcsuite/btcutil"] - sumVersion = "v1.0.3-0.20201208143702-a53e38424cce" - ["github.com/btcsuite/btcutil".fetch] - type = "git" - url = "https://github.com/btcsuite/btcutil" - rev = "a53e38424cce1c9de2062b69364efd35fd428d15" - sha256 = "1izjvgi0d5wnknfwdnqa196hn4vj1n5ga7swbhcfsgghk2zngwr4" - -["github.com/btcsuite/go-socks"] - sumVersion = "v0.0.0-20170105172521-4720035b7bfd" - ["github.com/btcsuite/go-socks".fetch] - type = "git" - url = "https://github.com/btcsuite/go-socks" - rev = "4720035b7bfd2a9bb130b1c184f8bbe41b6f0d0f" - sha256 = "18cv2icj059lq4s99p6yh91hlas5f2gi3f1p4c10sjgwrs933d7b" - -["github.com/btcsuite/goleveldb"] - sumVersion = "v1.0.0" - ["github.com/btcsuite/goleveldb".fetch] - type = "git" - url = "https://github.com/btcsuite/goleveldb" - rev = "3fd0373267b6461dbefe91cef614278064d05465" - sha256 = "0kwllw5yflpn362xbsqphbm10qcy08v3zqs15zbyp4mkjjk0bl9z" - -["github.com/btcsuite/snappy-go"] - sumVersion = "v1.0.0" - ["github.com/btcsuite/snappy-go".fetch] - type = "git" - url = "https://github.com/btcsuite/snappy-go" - rev = "b3db38edf0a9a11a115eb6b022d8c946024a9ac0" - sha256 = "0b2536a58l6advb0ag9ywz7i5cdzclvmm3x796jydv1yrbj5x2vk" - -["github.com/btcsuite/websocket"] - sumVersion = "v0.0.0-20150119174127-31079b680792" - ["github.com/btcsuite/websocket".fetch] - type = "git" - url = "https://github.com/btcsuite/websocket" - rev = "31079b6807923eb23992c421b114992b95131b55" - sha256 = "0xpkf257ml6fpfdgv7hxxc41n0d5yxxm3njm50qpzp7j71l9cjwa" - -["github.com/btcsuite/winsvc"] - sumVersion = "v1.0.0" - ["github.com/btcsuite/winsvc".fetch] - type = "git" - url = "https://github.com/btcsuite/winsvc" - rev = "f8fb11f83f7e860e3769a08e6811d1b399a43722" - sha256 = "0nsw8y86a5hzr2a3j6ch9myrpccj5bnsgaxpgajhzfk5d31xlw1z" - -["github.com/casbin/casbin/v2"] - sumVersion = "v2.37.0" - ["github.com/casbin/casbin/v2".fetch] - type = "git" - url = "https://github.com/casbin/casbin" - rev = "74a03c56dda888c69eff820f7f684b066995fb0e" - sha256 = "09l5rmbranq6pnpnfqlbxmsw249p6w6qj97rfgxlgc5rc2a4q61p" - -["github.com/cenkalti/backoff"] - sumVersion = "v2.2.1+incompatible" - ["github.com/cenkalti/backoff".fetch] - type = "git" - url = "https://github.com/cenkalti/backoff" - rev = "5267b6dd4d2666b980a911bf235efa276222cbe2" - sha256 = "1mf4lsl3rbb8kk42x0mrhzzy4ikqy0jf6nxpzhkr02rdgwh6rjk8" - -["github.com/cenkalti/backoff/v4"] - sumVersion = "v4.1.1" - ["github.com/cenkalti/backoff/v4".fetch] - type = "git" - url = "https://github.com/cenkalti/backoff" - rev = "a78d3804c2c84f0a3178648138442c9b07665bda" - sha256 = "08c28226q612i1pv83161y57qh16631vpc51ai9f76qfrzsy946z" - -["github.com/census-instrumentation/opencensus-proto"] - sumVersion = "v0.3.0" - ["github.com/census-instrumentation/opencensus-proto".fetch] - type = "git" - url = "https://github.com/census-instrumentation/opencensus-proto" - rev = "4aa53e15cbf1a47bc9087e6cfdca214c1eea4e89" - sha256 = "1ngp6jb345xahsijjpwwlcy2giymyzsy7kdhkrvgjafqssk6aw6f" - -["github.com/cespare/cp"] - sumVersion = "v0.1.0" - ["github.com/cespare/cp".fetch] - type = "git" - url = "https://github.com/cespare/cp" - rev = "165db2f241fd235aec29ba6d9b1ccd5f1c14637c" - sha256 = "1x76x985q9av29smybpc3g4az2qjmzqw181vp9z38wpbips31nm9" - -["github.com/cespare/xxhash"] - sumVersion = "v1.1.0" - ["github.com/cespare/xxhash".fetch] - type = "git" - url = "https://github.com/cespare/xxhash" - rev = "569f7c8abf1f58d9043ab804d364483cb1c853b6" - sha256 = "1qyzlcdcayavfazvi03izx83fvip8h36kis44zr2sg7xf6sx6l4x" - -["github.com/cespare/xxhash/v2"] - sumVersion = "v2.1.2" - ["github.com/cespare/xxhash/v2".fetch] - type = "git" - url = "https://github.com/cespare/xxhash" - rev = "e7a6b52374f7e2abfb8abb27249d53a1997b09a7" - sha256 = "1f3wyr9msnnz94szrkmnfps9wm40s5sp9i4ak0kl92zcrkmpy29a" - -["github.com/checkpoint-restore/go-criu/v5"] - sumVersion = "v5.0.0" - ["github.com/checkpoint-restore/go-criu/v5".fetch] - type = "git" - url = "https://github.com/checkpoint-restore/go-criu" - rev = "885cc36edb02fc5afeed0759885b473c16d249d8" - sha256 = "07dal5a9y43azkkh61jf6s81h7anbl17drkh2mal9mzcsi8wa2z8" - -["github.com/chzyer/logex"] - sumVersion = "v1.1.10" - ["github.com/chzyer/logex".fetch] - type = "git" - url = "https://github.com/chzyer/logex" - rev = "cd112f618178aaaf4ea8592c8839f5276145d9cf" - sha256 = "08pbjj3wx9acavlwyr055isa8a5hnmllgdv5k6ra60l5y1brmlq4" - -["github.com/chzyer/readline"] - sumVersion = "v0.0.0-20180603132655-2972be24d48e" - ["github.com/chzyer/readline".fetch] - type = "git" - url = "https://github.com/chzyer/readline" - rev = "2972be24d48e78746da79ba8e24e8b488c9880de" - sha256 = "104q8dazj8yf6b089jjr82fy9h1g80zyyzvp3g8b44a7d8ngjj6r" - -["github.com/chzyer/test"] - sumVersion = "v0.0.0-20180213035817-a1ea475d72b1" - ["github.com/chzyer/test".fetch] - type = "git" - url = "https://github.com/chzyer/test" - rev = "a1ea475d72b168a29f44221e0ad031a842642302" - sha256 = "0rns2aqk22i9xsgyap0pq8wi4cfaxsri4d9q6xxhhyma8jjsnj2k" - -["github.com/cilium/ebpf"] - sumVersion = "v0.6.2" - ["github.com/cilium/ebpf".fetch] - type = "git" - url = "https://github.com/cilium/ebpf" - rev = "ca492085341e0e917f48ec30704d5054c5d42ca8" - sha256 = "0x64sg0kyc8bbsp75dpv8g2jfmpdldsshf9ni49jh6rgsnnqhpf8" - -["github.com/circonus-labs/circonus-gometrics"] - sumVersion = "v2.3.1+incompatible" - ["github.com/circonus-labs/circonus-gometrics".fetch] - type = "git" - url = "https://github.com/circonus-labs/circonus-gometrics" - rev = "9eb673b3d5f6bf1c932ae7596831eefb0c0c3c2f" - sha256 = "0s2wir711h0k2h8xsypgpzshccnx8jkwjfni7n32l7wd8yng9ngs" - -["github.com/circonus-labs/circonusllhist"] - sumVersion = "v0.1.3" - ["github.com/circonus-labs/circonusllhist".fetch] - type = "git" - url = "https://github.com/circonus-labs/circonusllhist" - rev = "87d4d00b35adeefe4911ece727838749e0fab113" - sha256 = "127js92p5gx84vfj3vdmf7nn6dmqmkrxg927z0jh91fdkipmmv3i" - -["github.com/clbanning/mxj"] - sumVersion = "v1.8.4" - ["github.com/clbanning/mxj".fetch] - type = "git" - url = "https://github.com/clbanning/mxj" - rev = "b0d71e6effe1addc982453290a91f15ba0a50922" - sha256 = "13qlrycdp63q1v8sdpv6n720b6h6jpg58r38ldg4a70iv1wg7s9g" - -["github.com/clbanning/x2j"] - sumVersion = "v0.0.0-20191024224557-825249438eec" - ["github.com/clbanning/x2j".fetch] - type = "git" - url = "https://github.com/clbanning/x2j" - rev = "825249438eec392bc87b980fb635b336e496a888" - sha256 = "1khqy1m22vnyw0x24i4bwd37zvgzj25q139mh79bddj1rw5hf7hy" - -["github.com/cloudflare/cloudflare-go"] - sumVersion = "v0.10.2-0.20190916151808-a80f83b9add9" - ["github.com/cloudflare/cloudflare-go".fetch] - type = "git" - url = "https://github.com/cloudflare/cloudflare-go" - rev = "a80f83b9add9d67ca4098ccbf42cd865ebb36ffb" - sha256 = "07q34xpgw1p091v2mmf64s2lx1gi7wxn7mnzr9182sxa7xp0bj52" - -["github.com/cncf/udpa/go"] - sumVersion = "v0.0.0-20210930031921-04548b0d99d4" - relPath = "go" - ["github.com/cncf/udpa/go".fetch] - type = "git" - url = "https://github.com/cncf/udpa" - rev = "04548b0d99d4e70b29310ebccc8e01f2deeed43a" - sha256 = "16z9iqs7g6c084fh6y9v3skdbxnpyqw3d1y19v42llyl9hzx361v" - -["github.com/cncf/xds/go"] - sumVersion = "v0.0.0-20211130200136-a8f946100490" - relPath = "go" - ["github.com/cncf/xds/go".fetch] - type = "git" - url = "https://github.com/cncf/xds" - rev = "a8f946100490e3c4aef5c069e41b58d1a8705836" - sha256 = "1r1qhzv8nccjdaipf6klvsf262n7dqjzzww23pzzk9nyw9nsz55i" - -["github.com/cockroachdb/datadriven"] - sumVersion = "v0.0.0-20190809214429-80d97fb3cbaa" - ["github.com/cockroachdb/datadriven".fetch] - type = "git" - url = "https://github.com/cockroachdb/datadriven" - rev = "80d97fb3cbaa752564320702f409fdb2ef3da0ef" - sha256 = "0rvavka9zhri6r50n8fy98247fl5vycb1hffjrhshsicjv1frmlp" - -["github.com/codahale/hdrhistogram"] - sumVersion = "v0.0.0-20161010025455-3a0bb77429bd" - ["github.com/codahale/hdrhistogram".fetch] - type = "git" - url = "https://github.com/codahale/hdrhistogram" - rev = "3a0bb77429bd3a61596f5e8a3172445844342120" - sha256 = "1zampgfjbxy192cbwdi7g86l1idxaam96d834wncnpfdwgh5kl57" - -["github.com/coinbase/rosetta-sdk-go"] - sumVersion = "v0.6.10" - ["github.com/coinbase/rosetta-sdk-go".fetch] - type = "git" - url = "https://github.com/coinbase/rosetta-sdk-go" - rev = "9ba330f0a51ab41c1c8738a040eb2b28894b82d9" - sha256 = "0idsqyxjdvb2j7h97g5jyr7nniphwcd8pjgw969fvrg08rjm7qr7" - -["github.com/confio/ics23/go"] - sumVersion = "v0.6.6" - relPath = "go" - ["github.com/confio/ics23/go".fetch] - type = "git" - url = "https://github.com/confio/ics23" - rev = "6cf2f712b5ecccf0a138c29a77b726d57bdaad51" - sha256 = "0r1vk5lvjfri57hd5dk75dfiyzz57qaljshw6sr80aj5v8krzxsn" - -["github.com/containerd/console"] - sumVersion = "v1.0.2" - ["github.com/containerd/console".fetch] - type = "git" - url = "https://github.com/containerd/console" - rev = "2f1e3d2b6afd18e8b2077816c711205a0b4d8769" - sha256 = "0rxwgq578hphs2ldx1gg6c9fq1qm8rgqfx3vgi2sbrsmxn6m2438" - -["github.com/containerd/continuity"] - sumVersion = "v0.2.0" - ["github.com/containerd/continuity".fetch] - type = "git" - url = "https://github.com/containerd/continuity" - rev = "7e9eee85bd9966ac84b134cab592e8fa37ff3e8a" - sha256 = "0pbhzxa6fjg2dcksl3bwbzi9nvbbl1q061hc4ls2nhg4kypma1d0" - -["github.com/coreos/bbolt"] - sumVersion = "v1.3.2" - ["github.com/coreos/bbolt".fetch] - type = "git" - url = "https://github.com/coreos/bbolt" - rev = "63597a96ec0ad9e6d43c3fc81e809909e0237461" - sha256 = "13d5l6p6c5wvkr6vn9hkhz9c593qifn7fgx0hg4d6jcvg1y0bnm2" - -["github.com/coreos/etcd"] - sumVersion = "v3.3.13+incompatible" - ["github.com/coreos/etcd".fetch] - type = "git" - url = "https://github.com/coreos/etcd" - rev = "98d308426819d892e149fe45f6fd542464cb1f9d" - sha256 = "1kac4qfr83f2hdz35403f1ald05wc85vvhw79vxb431n61jvyaqy" - -["github.com/coreos/go-etcd"] - sumVersion = "v2.0.0+incompatible" - ["github.com/coreos/go-etcd".fetch] - type = "git" - url = "https://github.com/coreos/go-etcd" - rev = "f02171fbd43c7b9b53ce8679b03235a1ef3c7b12" - sha256 = "1xb34hzaa1lkbq5vkzy9vcz6gqwj7hp6cdbvyack2bf28dwn33jj" - -["github.com/coreos/go-semver"] - sumVersion = "v0.3.0" - ["github.com/coreos/go-semver".fetch] - type = "git" - url = "https://github.com/coreos/go-semver" - rev = "e214231b295a8ea9479f11b70b35d5acf3556d9b" - sha256 = "0770h1mpig2j5sbiha3abnwaw8p6dg9i87r8pc7cf6m4kwml3sc9" - -["github.com/coreos/go-systemd"] - sumVersion = "v0.0.0-20190321100706-95778dfbb74e" - ["github.com/coreos/go-systemd".fetch] - type = "git" - url = "https://github.com/coreos/go-systemd" - rev = "95778dfbb74eb7e4dbaf43bf7d71809650ef8076" - sha256 = "1s3bg9p78wkixn2bqb2p23wbsqfg949ml6crw2b498s71mwh8rcf" - -["github.com/coreos/go-systemd/v22"] - sumVersion = "v22.3.2" - ["github.com/coreos/go-systemd/v22".fetch] - type = "git" - url = "https://github.com/coreos/go-systemd" - rev = "777e73a89cef78631ccaa97f53a9bae67e166186" - sha256 = "1ndi86b8va84ha93njqgafypz4di7yxfd5r5kf1r0s3y3ghcjajq" - -["github.com/coreos/pkg"] - sumVersion = "v0.0.0-20180928190104-399ea9e2e55f" - ["github.com/coreos/pkg".fetch] - type = "git" - url = "https://github.com/coreos/pkg" - rev = "399ea9e2e55f791b6e3d920860dbecb99c3692f0" - sha256 = "0nxbn0m7lr4dg0yrwnvlkfiyg3ndv8vdpssjx7b714nivpc6ar0y" - -["github.com/cosmos/btcutil"] - sumVersion = "v1.0.4" - ["github.com/cosmos/btcutil".fetch] - type = "git" - url = "https://github.com/cosmos/btcutil" - rev = "a68c44d216624107f23b6c8e66704ff4ecee879a" - sha256 = "10x22k92ra1sdddj2pksprfhsm683sldflcnjm8nfz4rjjhjwkay" - -["github.com/cosmos/cosmos-sdk"] - sumVersion = "v0.44.5" - ["github.com/cosmos/cosmos-sdk".fetch] - type = "git" - url = "https://github.com/cosmos/cosmos-sdk" - rev = "33dbf6a795e68c744a2c312b76d41614b3563c01" - sha256 = "06hl39q4kil1j7cf9l0a0b7g797qxyqzz8s8m33pqa1d643cj4kg" - -["github.com/cosmos/go-bip39"] - sumVersion = "v1.0.0" - ["github.com/cosmos/go-bip39".fetch] - type = "git" - url = "https://github.com/cosmos/go-bip39" - rev = "3027fe585f89a39da9b7389bd4e3482e056f6d3f" - sha256 = "0q063bsalxffq41l3f6xlr50xa2985liw6y5niiwnjysdc5rlva2" - -["github.com/cosmos/iavl"] - sumVersion = "v0.17.3" - ["github.com/cosmos/iavl".fetch] - type = "git" - url = "https://github.com/cosmos/iavl" - rev = "d99448032e95a6ce05d342737cd745a20ef0b6ce" - sha256 = "115964xzwlr8j0l8f5x0v31f5hnxhd0rh5cvgy560l0dd77i735k" - -["github.com/cosmos/ibc-go"] - sumVersion = "v1.2.2" - ["github.com/cosmos/ibc-go".fetch] - type = "git" - url = "https://github.com/cosmos/ibc-go" - rev = "7cd110e8e58b84a283af8abe0af6eade6a0126b9" - sha256 = "02b16mrj5dvr03ib883pw157a807vqxvgs88iwlhwdww0zrfx9p6" - -["github.com/cosmos/ibc-go/v2"] - sumVersion = "v2.0.2" - ["github.com/cosmos/ibc-go/v2".fetch] - type = "git" - url = "https://github.com/cosmos/ibc-go" - rev = "e1ac41a95915d21f6ae95053c74c5b7ec7e7139e" - sha256 = "1d3g4y0lnk8418rjfxkqlylrzzmxy5h3yf18vr83w8nsax7hd31q" - -["github.com/cosmos/ledger-cosmos-go"] - sumVersion = "v0.11.1" - ["github.com/cosmos/ledger-cosmos-go".fetch] - type = "git" - url = "https://github.com/cosmos/ledger-cosmos-go" - rev = "c03f491cbf1740e5ec7919683019c2c84d9fbc10" - sha256 = "0c584nig16mz1i5w1pp741q1ymb1ln70kvxkv3l62rkdymbbwn6a" - -["github.com/cosmos/ledger-go"] - sumVersion = "v0.9.2" - ["github.com/cosmos/ledger-go".fetch] - type = "git" - url = "https://github.com/cosmos/ledger-go" - rev = "1c99b41f1877b58e3517ef93012cc76fe5cd335b" - sha256 = "10vnj13c8diq3bxvf2m46s8ifj4fj1iwsw5hg7i1h55h1v83x0ni" - -["github.com/cpuguy83/go-md2man"] - sumVersion = "v1.0.10" - ["github.com/cpuguy83/go-md2man".fetch] - type = "git" - url = "https://github.com/cpuguy83/go-md2man" - rev = "7762f7e404f8416dfa1d9bb6a8c192aa9acb4d19" - sha256 = "1bqkf2bvy1dns9zd24k81mh2p1zxsx2nhq5cj8dz2vgkv1xkh60i" - -["github.com/cpuguy83/go-md2man/v2"] - sumVersion = "v2.0.0" - ["github.com/cpuguy83/go-md2man/v2".fetch] - type = "git" - url = "https://github.com/cpuguy83/go-md2man" - rev = "f79a8a8ca69da163eee19ab442bedad7a35bba5a" - sha256 = "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv" - -["github.com/creack/pty"] - sumVersion = "v1.1.9" - ["github.com/creack/pty".fetch] - type = "git" - url = "https://github.com/creack/pty" - rev = "3a6a957789163cacdfe0e291617a1c8e80612c11" - sha256 = "1v52599qq76dwq742mffakzj6mxqqccv2szn3hjicjld56nmd2d3" - -["github.com/cyphar/filepath-securejoin"] - sumVersion = "v0.2.2" - ["github.com/cyphar/filepath-securejoin".fetch] - type = "git" - url = "https://github.com/cyphar/filepath-securejoin" - rev = "a261ee33d7a517f054effbf451841abaafe3e0fd" - sha256 = "0id32zjb92wm569m29nfrzz5mw9z1glr3klayr6j134pp4h1sgq4" - -["github.com/danieljoos/wincred"] - sumVersion = "v1.0.2" - ["github.com/danieljoos/wincred".fetch] - type = "git" - url = "https://github.com/danieljoos/wincred" - rev = "b892d337201d1400370ebf4fa919941c9ea222ee" - sha256 = "1ym8mygjrf3rw1qka9irw76b2yisr2l5pq2w581s40yldnbfq4lc" - -["github.com/davecgh/go-spew"] - sumVersion = "v1.1.1" - ["github.com/davecgh/go-spew".fetch] - type = "git" - url = "https://github.com/davecgh/go-spew" - rev = "8991bc29aa16c548c550c7ff78260e27b9ab7c73" - sha256 = "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y" - -["github.com/deckarep/golang-set"] - sumVersion = "v0.0.0-20180603214616-504e848d77ea" - ["github.com/deckarep/golang-set".fetch] - type = "git" - url = "https://github.com/deckarep/golang-set" - rev = "504e848d77ea4752b3057b8fb46da0e7f746ccf3" - sha256 = "0n0dgz82vvwpxh2fp3d9ciawzrwv0w3hsnkk4y7z64pxp27r4k7n" - -["github.com/decred/dcrd/lru"] - sumVersion = "v1.0.0" - relPath = "lru" - ["github.com/decred/dcrd/lru".fetch] - type = "git" - url = "https://github.com/decred/dcrd" - rev = "5c3e0d6454001c8d14fcf06be94381d93991aaea" - sha256 = "0m2mxrkbnr4dfan9ljxq9dd5hhqmpx5n9pd4hnwn5mlj4zgv018a" - -["github.com/desertbit/timer"] - sumVersion = "v0.0.0-20180107155436-c41aec40b27f" - ["github.com/desertbit/timer".fetch] - type = "git" - url = "https://github.com/desertbit/timer" - rev = "c41aec40b27f0eeb2b94300fffcd624c69b02990" - sha256 = "1jsy04ga79xbdfn0xqzs7q8gyh2sz9jpfqdsb210m6188yscxck9" - -["github.com/dgraph-io/badger/v2"] - sumVersion = "v2.2007.2" - ["github.com/dgraph-io/badger/v2".fetch] - type = "git" - url = "https://github.com/dgraph-io/badger" - rev = "d5a25b83fbf4f3f61ff03a9202e36f5b75544426" - sha256 = "0cck8ap61bi56dv070cirkkl6fjavz05kwyxjv08lbfykhlpz3da" - -["github.com/dgraph-io/ristretto"] - sumVersion = "v0.0.3" - ["github.com/dgraph-io/ristretto".fetch] - type = "git" - url = "https://github.com/dgraph-io/ristretto" - rev = "bcb54d096f2303ce80960e125b5991ac4d6325c3" - sha256 = "1v29j6b0r87pf5dwsxi3rxa8yavkl3h79i63rbddfd42p2jyssyg" - -["github.com/dgrijalva/jwt-go"] - sumVersion = "v3.2.0+incompatible" - ["github.com/dgrijalva/jwt-go".fetch] - type = "git" - url = "https://github.com/dgrijalva/jwt-go" - rev = "06ea1031745cb8b3dab3f6a236daf2b0aa468b7e" - sha256 = "08m27vlms74pfy5z79w67f9lk9zkx6a9jd68k3c4msxy75ry36mp" - -["github.com/dgryski/go-farm"] - sumVersion = "v0.0.0-20200201041132-a6ae2369ad13" - ["github.com/dgryski/go-farm".fetch] - type = "git" - url = "https://github.com/dgryski/go-farm" - rev = "a6ae2369ad13dc757768086f0cb902728c7e03e5" - sha256 = "1qbz4a4fv3853ix974x02q1129kc4xxf0c92ib5sdpsq04zjbqv8" - -["github.com/dgryski/go-sip13"] - sumVersion = "v0.0.0-20181026042036-e10d5fee7954" - ["github.com/dgryski/go-sip13".fetch] - type = "git" - url = "https://github.com/dgryski/go-sip13" - rev = "e10d5fee79544bd84105c9329adcc7b745fd588c" - sha256 = "15fyibfas209ljz3f7g07kdmfbl3hhyd9n5n7aq5n5p9m5mn41d6" - -["github.com/dlclark/regexp2"] - sumVersion = "v1.2.0" - ["github.com/dlclark/regexp2".fetch] - type = "git" - url = "https://github.com/dlclark/regexp2" - rev = "92c702aa5812963ef9193a9624191932d44073d7" - sha256 = "011l1prsywvhhi0yc7qmpsca1cwavmawyyld5kjzi0ff9ghvj4ng" - -["github.com/docker/docker"] - sumVersion = "v1.4.2-0.20180625184442-8e610b2b55bf" - ["github.com/docker/docker".fetch] - type = "git" - url = "https://github.com/docker/docker" - rev = "8e610b2b55bfd1bfa9436ab110d311f5e8a74dcb" - sha256 = "00d27aj6c2vi9q0djy9pqk3h8fqp066vffqckil43qq1c5b83c1j" - -["github.com/docker/go-connections"] - sumVersion = "v0.4.0" - ["github.com/docker/go-connections".fetch] - type = "git" - url = "https://github.com/docker/go-connections" - rev = "7395e3f8aa162843a74ed6d48e79627d9792ac55" - sha256 = "0mv6f6b5nljc17dmwmc28hc0y11pqglz7x0d2mjrwdmfxf64hwqq" - -["github.com/docker/go-units"] - sumVersion = "v0.4.0" - ["github.com/docker/go-units".fetch] - type = "git" - url = "https://github.com/docker/go-units" - rev = "519db1ee28dcc9fd2474ae59fca29a810482bfb1" - sha256 = "0k8gja8ql4pqg5rzmqvka42vjfs6rzablak87whcnqba6qxpimvz" - -["github.com/dop251/goja"] - sumVersion = "v0.0.0-20200721192441-a695b0cdd498" - ["github.com/dop251/goja".fetch] - type = "git" - url = "https://github.com/dop251/goja" - rev = "a695b0cdd4987b22f979a6f4d4ea30689058441a" - sha256 = "1s9358a30gmmbizvavd977n1zyla46bpxb2ymmr6qmmixw8ry4zv" - -["github.com/dustin/go-humanize"] - sumVersion = "v1.0.0" - ["github.com/dustin/go-humanize".fetch] - type = "git" - url = "https://github.com/dustin/go-humanize" - rev = "9f541cc9db5d55bce703bd99987c9d5cb8eea45e" - sha256 = "1kqf1kavdyvjk7f8kx62pnm7fbypn9z1vbf8v2qdh3y7z7a0cbl3" - -["github.com/dvsekhvalnov/jose2go"] - sumVersion = "v0.0.0-20200901110807-248326c1351b" - ["github.com/dvsekhvalnov/jose2go".fetch] - type = "git" - url = "https://github.com/dvsekhvalnov/jose2go" - rev = "248326c1351b716b2820b01a49d53837bfd9ac59" - sha256 = "06zj4n96pa5lnx8pxjhn3vis01fjklhsdqbcbqdv9m4kc7qip27s" - -["github.com/dvyukov/go-fuzz"] - sumVersion = "v0.0.0-20200318091601-be3528f3a813" - ["github.com/dvyukov/go-fuzz".fetch] - type = "git" - url = "https://github.com/dvyukov/go-fuzz" - rev = "be3528f3a81351d8a438aed216130e1e7da39f7c" - sha256 = "1sxl62r8c13p4sm60c77mzcn6dlxbbk6c2nmic6j8z55dx4nlg1a" - -["github.com/eapache/go-resiliency"] - sumVersion = "v1.1.0" - ["github.com/eapache/go-resiliency".fetch] - type = "git" - url = "https://github.com/eapache/go-resiliency" - rev = "ea41b0fad31007accc7f806884dcdf3da98b79ce" - sha256 = "1zmgw3c4w5r6m2r340n4jc5l5ll3m3nbszqrmrgbqc2xixxyk2gx" - -["github.com/eapache/go-xerial-snappy"] - sumVersion = "v0.0.0-20180814174437-776d5712da21" - ["github.com/eapache/go-xerial-snappy".fetch] - type = "git" - url = "https://github.com/eapache/go-xerial-snappy" - rev = "776d5712da21bc4762676d614db1d8a64f4238b0" - sha256 = "0ncc41dv7xwb1znyzmzh7cvs6j5fzz0f1n8h1v3grl9ma6s1si9d" - -["github.com/eapache/queue"] - sumVersion = "v1.1.0" - ["github.com/eapache/queue".fetch] - type = "git" - url = "https://github.com/eapache/queue" - rev = "44cc805cf13205b55f69e14bcb69867d1ae92f98" - sha256 = "07dp54n94gn3gsvdcki56yqh7py7wqqigxbamhxwgbr05n61fqyg" - -["github.com/edsrzf/mmap-go"] - sumVersion = "v1.0.0" - ["github.com/edsrzf/mmap-go".fetch] - type = "git" - url = "https://github.com/edsrzf/mmap-go" - rev = "188cc3b666ba704534fa4f96e9e61f21f1e1ba7c" - sha256 = "0ajmkk5cj6xmbngx3nhar7672i2vrkwpnbv1f26i5p4f5aydhl4k" - -["github.com/envoyproxy/go-control-plane"] - sumVersion = "v0.10.1" - ["github.com/envoyproxy/go-control-plane".fetch] - type = "git" - url = "https://github.com/envoyproxy/go-control-plane" - rev = "dcf5642c8e54496938e0311fe9c48e39b609e583" - sha256 = "0amjw4x1904r14ps07l3wi5vdph5v2m9c97kkrr567kxr5xpjsv3" - -["github.com/envoyproxy/protoc-gen-validate"] - sumVersion = "v0.6.2" - ["github.com/envoyproxy/protoc-gen-validate".fetch] - type = "git" - url = "https://github.com/envoyproxy/protoc-gen-validate" - rev = "8c0f6372216272771488d63323787e86377aefe0" - sha256 = "15n0iimdvirxmd1kyysss8fcnlds316dzh3rfzmcz4k3ip26npw5" - -["github.com/ethereum/go-ethereum"] - sumVersion = "v1.9.25" - ["github.com/ethereum/go-ethereum".fetch] - type = "git" - url = "https://github.com/ethereum/go-ethereum" - rev = "e7872729012a4871397307b12cc3f4772ffcbec6" - sha256 = "1gilb29gcjw8x3s9krbq9cf6kzvq5cvkad4wc20g91a3i2hd7daf" - -["github.com/facebookgo/ensure"] - sumVersion = "v0.0.0-20200202191622-63f1cf65ac4c" - ["github.com/facebookgo/ensure".fetch] - type = "git" - url = "https://github.com/facebookgo/ensure" - rev = "63f1cf65ac4cf1f4bd7e93292149a456001b0e0b" - sha256 = "05vi49g2967i5awcb1z69i2n5b5hwn06682kw90x81hbxlr0px36" - -["github.com/facebookgo/stack"] - sumVersion = "v0.0.0-20160209184415-751773369052" - ["github.com/facebookgo/stack".fetch] - type = "git" - url = "https://github.com/facebookgo/stack" - rev = "751773369052141c013c6e827a71e8f35c07879c" - sha256 = "07yr05mz7h007ldpij90zjflwgixp148sbyrdlh1fj5bikr4p8m3" - -["github.com/facebookgo/subset"] - sumVersion = "v0.0.0-20200203212716-c811ad88dec4" - ["github.com/facebookgo/subset".fetch] - type = "git" - url = "https://github.com/facebookgo/subset" - rev = "c811ad88dec4edb3d7af0a88b34e6865d7460ba2" - sha256 = "1sjczgmq26mgqvh7267saypnn4sfdjx467wsm1pgdhyss77mc650" - -["github.com/fatih/color"] - sumVersion = "v1.13.0" - ["github.com/fatih/color".fetch] - type = "git" - url = "https://github.com/fatih/color" - rev = "a05da93ebe62ca9fc6791d3376ec4dad01196448" - sha256 = "029qkxsdpblhrpgbv4fcmqwkqnjhx08hwiqp19pd7zz6l8a373ay" - -["github.com/felixge/httpsnoop"] - sumVersion = "v1.0.1" - ["github.com/felixge/httpsnoop".fetch] - type = "git" - url = "https://github.com/felixge/httpsnoop" - rev = "33ec42cfe005395fb4cc4b296781f65d7ffef2c3" - sha256 = "0ncd8lar5zxiwjhsp315s4hsl4bhnm271h49jhyxc66r5yffgmac" - -["github.com/fjl/memsize"] - sumVersion = "v0.0.0-20180418122429-ca190fb6ffbc" - ["github.com/fjl/memsize".fetch] - type = "git" - url = "https://github.com/fjl/memsize" - rev = "ca190fb6ffbc076ff49197b7168a760f30182d2e" - sha256 = "02vz4mfsajpsjk9nwrb6djs5zd9f70iqxf6z3x7h7kq5lqc2wfjc" - -["github.com/fogleman/gg"] - sumVersion = "v1.2.1-0.20190220221249-0403632d5b90" - ["github.com/fogleman/gg".fetch] - type = "git" - url = "https://github.com/fogleman/gg" - rev = "0403632d5b905943a1c2a5b2763aaecd568467ec" - sha256 = "1nkldjghbqnzj2djfaxhiv35kk341xhcrj9m2dwq65v684iqkk8n" - -["github.com/fortytw2/leaktest"] - sumVersion = "v1.3.0" - ["github.com/fortytw2/leaktest".fetch] - type = "git" - url = "https://github.com/fortytw2/leaktest" - rev = "9a23578d06a26ec1b47bfc8965bf5e7011df8bd6" - sha256 = "0487zghyxqzk6zdbhd2j074pcc2l15l4sfg5clrjqwfbql7519wx" - -["github.com/franela/goblin"] - sumVersion = "v0.0.0-20210519012713-85d372ac71e2" - ["github.com/franela/goblin".fetch] - type = "git" - url = "https://github.com/franela/goblin" - rev = "85d372ac71e2957da63d038d375294cae456e90b" - sha256 = "0c5z3kmrzry5pvax1g9npbfg8knjwq9sy113ybm6rb14kmdpnmzm" - -["github.com/franela/goreq"] - sumVersion = "v0.0.0-20171204163338-bcd34c9993f8" - ["github.com/franela/goreq".fetch] - type = "git" - url = "https://github.com/franela/goreq" - rev = "bcd34c9993f899273c74baaa95e15386cd97b6e7" - sha256 = "055a20nc5f1blk2swiwpwqpxd3z495ms1qr6a7cbbss1w3a7a7sb" - -["github.com/frankban/quicktest"] - sumVersion = "v1.11.3" - ["github.com/frankban/quicktest".fetch] - type = "git" - url = "https://github.com/frankban/quicktest" - rev = "e7d1f0b53af1e9c9cf66924bc310190b1db8c339" - sha256 = "0d5njmwkfq2809vlimnlvy8ir6kln0c4cgdwr680fwsclpbr43qs" - -["github.com/fsnotify/fsnotify"] - sumVersion = "v1.5.1" - ["github.com/fsnotify/fsnotify".fetch] - type = "git" - url = "https://github.com/fsnotify/fsnotify" - rev = "466b39d216616549a37ee93c7c47775f6a010790" - sha256 = "0xpdprvab4zgn5igymc5468hk5s429cqyxml9xjsk0cn53rikj87" - -["github.com/gballet/go-libpcsclite"] - sumVersion = "v0.0.0-20190607065134-2772fd86a8ff" - ["github.com/gballet/go-libpcsclite".fetch] - type = "git" - url = "https://github.com/gballet/go-libpcsclite" - rev = "2772fd86a8ff4306d2749f610a386bfee9e0d727" - sha256 = "1j7389jcjdsb73c30cial688m3r2wypspn8zhy5mvm3c9xqnigin" - -["github.com/ghodss/yaml"] - sumVersion = "v1.0.0" - ["github.com/ghodss/yaml".fetch] - type = "git" - url = "https://github.com/ghodss/yaml" - rev = "0ca9ea5df5451ffdf184b4428c902747c2c11cd7" - sha256 = "0skwmimpy7hlh7pva2slpcplnm912rp3igs98xnqmn859kwa5v8g" - -["github.com/gin-contrib/sse"] - sumVersion = "v0.1.0" - ["github.com/gin-contrib/sse".fetch] - type = "git" - url = "https://github.com/gin-contrib/sse" - rev = "54d8467d122d380a14768b6b4e5cd7ca4755938f" - sha256 = "072nq91a65n5xvwslqjyvydfd0mfpnvb3vwjyfvmzm1ym96wr1nd" - -["github.com/gin-gonic/gin"] - sumVersion = "v1.6.3" - ["github.com/gin-gonic/gin".fetch] - type = "git" - url = "https://github.com/gin-gonic/gin" - rev = "6a8b8b6651a228590bbc42145483ff864f4f6e89" - sha256 = "18k0ydx88xh100xp1ff0zpjk2n233rv7qxijbsrrsgqrq9z83w3l" - -["github.com/go-gl/glfw"] - sumVersion = "v0.0.0-20190409004039-e6da0acd62b1" - ["github.com/go-gl/glfw".fetch] - type = "git" - url = "https://github.com/go-gl/glfw" - rev = "e6da0acd62b1b57ee2799d4d0a76a7d4514dc5bc" - sha256 = "0prvx5r7q8yrhqvnwibv4xz3dayjbq36yajzqvh0z4lqsh4hyhch" - -["github.com/go-gl/glfw/v3.3/glfw"] - sumVersion = "v0.0.0-20200222043503-6f7a984d4dc4" - relPath = "v3.3/glfw" - ["github.com/go-gl/glfw/v3.3/glfw".fetch] - type = "git" - url = "https://github.com/go-gl/glfw" - rev = "6f7a984d4dc470c3f197229ad1991ae9e211bba2" - sha256 = "1nyv7h08qf4dp8w9pmcnrc6vv9bkwj8fil6pz0mkbss5hf4i8xcq" - -["github.com/go-kit/kit"] - sumVersion = "v0.12.0" - ["github.com/go-kit/kit".fetch] - type = "git" - url = "https://github.com/go-kit/kit" - rev = "251777ffd4f40c09ed5bf239545b1dc6b1964a98" - sha256 = "15cm24sjyvwxpprfha2k0s3c1hhpg5y2kljnw04hayfyazqc79wl" - -["github.com/go-kit/log"] - sumVersion = "v0.2.0" - ["github.com/go-kit/log".fetch] - type = "git" - url = "https://github.com/go-kit/log" - rev = "71fa7d7d64785c98d3814e53b3544fd8cccff897" - sha256 = "13gbqrwvqy9j903j44x0kix5gnn34a8hl8skbdijy7arpkxpj6h3" - -["github.com/go-logfmt/logfmt"] - sumVersion = "v0.5.1" - ["github.com/go-logfmt/logfmt".fetch] - type = "git" - url = "https://github.com/go-logfmt/logfmt" - rev = "2fe45f2cf057d707c50bc1949e25ec2cd6b7a015" - sha256 = "01fs4x2aqw2qcsz18s4nfvyqv3rcwz5xmgpk3bic6nzgyzsjd7dp" - -["github.com/go-ole/go-ole"] - sumVersion = "v1.2.1" - ["github.com/go-ole/go-ole".fetch] - type = "git" - url = "https://github.com/go-ole/go-ole" - rev = "a41e3c4b706f6ae8dfbff342b06e40fa4d2d0506" - sha256 = "114h8x7dh4jp7w7k678fm98lr9icavsf74v6jfipyq7q35bsfr1p" - -["github.com/go-playground/assert/v2"] - sumVersion = "v2.0.1" - ["github.com/go-playground/assert/v2".fetch] - type = "git" - url = "https://github.com/go-playground/assert" - rev = "8eb943fbae8448cf47383208d8d0c396e26011a9" - sha256 = "1cl9c4s405zddzrj36hhs0a18g02zscdl46fyipp6k91mhvai8wz" - -["github.com/go-playground/locales"] - sumVersion = "v0.13.0" - ["github.com/go-playground/locales".fetch] - type = "git" - url = "https://github.com/go-playground/locales" - rev = "9f105231d3a5f6877a2bf8321dfa15ea6f844b1b" - sha256 = "0qydcpkvss3mf8mk3xzg6a34n8i69aydrigcl2apifrkx72jw7pf" - -["github.com/go-playground/universal-translator"] - sumVersion = "v0.17.0" - ["github.com/go-playground/universal-translator".fetch] - type = "git" - url = "https://github.com/go-playground/universal-translator" - rev = "f87b1403479a348651dbf5f07f5cc6e5fcf07008" - sha256 = "1zdiaisb32iv4x93cpbqrgx8ll7sxh4hcd2iibpswy4bwvjbjlz6" - -["github.com/go-playground/validator/v10"] - sumVersion = "v10.2.0" - ["github.com/go-playground/validator/v10".fetch] - type = "git" - url = "https://github.com/go-playground/validator" - rev = "c68441b7f4748b48ad9a0c9a79d346019730e207" - sha256 = "0pfbn06n7ll7slp36vvv94gf8ylm6mynp332r5q7j78nca1bjb5b" - -["github.com/go-sourcemap/sourcemap"] - sumVersion = "v2.1.2+incompatible" - ["github.com/go-sourcemap/sourcemap".fetch] - type = "git" - url = "https://github.com/go-sourcemap/sourcemap" - rev = "b019cc30c1eaa584753491b0d8f8c1534bf1eb44" - sha256 = "03k44fdrnknba05f7cd58lq4rzk7jdpiqksmc0wxrdzwschrbgw8" - -["github.com/go-sql-driver/mysql"] - sumVersion = "v1.4.0" - ["github.com/go-sql-driver/mysql".fetch] - type = "git" - url = "https://github.com/go-sql-driver/mysql" - rev = "d523deb1b23d913de5bdada721a6071e71283618" - sha256 = "1jwz2j3vd5hlzmnkh20d4276yd8cxy7pac3x3dfi52jkm82ms99n" - -["github.com/go-stack/stack"] - sumVersion = "v1.8.0" - ["github.com/go-stack/stack".fetch] - type = "git" - url = "https://github.com/go-stack/stack" - rev = "2fee6af1a9795aafbe0253a0cfbdf668e1fb8a9a" - sha256 = "0wk25751ryyvxclyp8jdk5c3ar0cmfr8lrjb66qbg4808x66b96v" - -["github.com/go-task/slim-sprig"] - sumVersion = "v0.0.0-20210107165309-348f09dbbbc0" - ["github.com/go-task/slim-sprig".fetch] - type = "git" - url = "https://github.com/go-task/slim-sprig" - rev = "348f09dbbbc0ff8b922a311da7a90cd014b69aa3" - sha256 = "16i1w4sm1h8wd132gdaq1z0asj9nc36zs8b3q9jy5kcbjzidl34f" - -["github.com/go-zookeeper/zk"] - sumVersion = "v1.0.2" - ["github.com/go-zookeeper/zk".fetch] - type = "git" - url = "https://github.com/go-zookeeper/zk" - rev = "50daf81d01a3f5d6209441a9e4d7f6e7d32fab64" - sha256 = "0z7xvpww2mfgbbl6id68wggkvflfczy637vsyhjijfz86yhjkqza" - -["github.com/gobwas/httphead"] - sumVersion = "v0.0.0-20180130184737-2c6c146eadee" - ["github.com/gobwas/httphead".fetch] - type = "git" - url = "https://github.com/gobwas/httphead" - rev = "2c6c146eadee0b69f856f87e3e9f1d0cd6aad2f5" - sha256 = "0j7nlrf79cafl8ap69ri2c7v3psr2y133cr2wn735z7yn3dz3kss" - -["github.com/gobwas/pool"] - sumVersion = "v0.2.0" - ["github.com/gobwas/pool".fetch] - type = "git" - url = "https://github.com/gobwas/pool" - rev = "fa3125c39d7eca32e1387bb69b1b38dcb31b1e0b" - sha256 = "1avpa8c75j1y4hs7awazrjjy7w0pjfw80l424ddn5zyizvh7s67i" - -["github.com/gobwas/ws"] - sumVersion = "v1.0.2" - ["github.com/gobwas/ws".fetch] - type = "git" - url = "https://github.com/gobwas/ws" - rev = "05baaea2bbcfe8963301c62d9931c882d59595cd" - sha256 = "070mfcjbfb40bglc9aw9zjvd4jb1hp3l1s12ww6mjlwbjcg0mm9s" - -["github.com/godbus/dbus"] - sumVersion = "v0.0.0-20190726142602-4481cbc300e2" - ["github.com/godbus/dbus".fetch] - type = "git" - url = "https://github.com/godbus/dbus" - rev = "4481cbc300e2df0c0b3cecc18b6c16c6c0bb885d" - sha256 = "0h0cl1r136g0kxbw3i7ggb9mhavpi1yr7d7312iwhkxm93dxkphg" - -["github.com/godbus/dbus/v5"] - sumVersion = "v5.0.4" - ["github.com/godbus/dbus/v5".fetch] - type = "git" - url = "https://github.com/godbus/dbus" - rev = "c88335c0b1d28a30e7fc76d526a06154b85e5d97" - sha256 = "0znax8kskb5gmp5fj75w56bc9p7b22wrdswzlh4d04sprlc471yi" - -["github.com/gogo/gateway"] - sumVersion = "v1.1.0" - ["github.com/gogo/gateway".fetch] - type = "git" - url = "https://github.com/gogo/gateway" - rev = "817b4cf527e834d7d563b7329355c45801d5e02d" - sha256 = "1jj7vr3sdk7yz8jl1kzv8473pkhd388f95byc8pdwrh6y7fh0xrq" - -["github.com/gogo/protobuf"] - sumVersion = "v1.3.3-alpha.regen.1" - vendorPath = "github.com/regen-network/protobuf" - ["github.com/gogo/protobuf".fetch] - type = "git" - url = "https://github.com/regen-network/protobuf" - rev = "8a70ddfdaf94e68497f7b26a6896ad75e03b6616" - sha256 = "0jmhiv9gq0a6brs9p8dk9phafs62yggyhlav07cqwakcq70ss6r2" - -["github.com/golang-jwt/jwt/v4"] - sumVersion = "v4.0.0" - ["github.com/golang-jwt/jwt/v4".fetch] - type = "git" - url = "https://github.com/golang-jwt/jwt" - rev = "2ebb50f957d606de5909fcf9ed49f9af3bc35e97" - sha256 = "0vc122v3aycq3g9mgaxs5cbs5p762n2x61nxhsniw1x2cz7jgwcv" - -["github.com/golang/freetype"] - sumVersion = "v0.0.0-20170609003504-e2365dfdc4a0" - ["github.com/golang/freetype".fetch] - type = "git" - url = "https://github.com/golang/freetype" - rev = "e2365dfdc4a05e4b8299a783240d4a7d5a65d4e4" - sha256 = "194w3djc6fv1rgcjqds085b9fq074panc5vw582bcb8dbfzsrqxc" - -["github.com/golang/glog"] - sumVersion = "v0.0.0-20160126235308-23def4e6c14b" - ["github.com/golang/glog".fetch] - type = "git" - url = "https://github.com/golang/glog" - rev = "23def4e6c14b4da8ac2ed8007337bc5eb5007998" - sha256 = "0jb2834rw5sykfr937fxi8hxi2zy80sj2bdn9b3jb4b26ksqng30" - -["github.com/golang/groupcache"] - sumVersion = "v0.0.0-20210331224755-41bb18bfe9da" - ["github.com/golang/groupcache".fetch] - type = "git" - url = "https://github.com/golang/groupcache" - rev = "41bb18bfe9da5321badc438f91158cd790a33aa3" - sha256 = "07amgr8ji4mnq91qbsw2jlcmw6hqiwdf4kzfdrj8c4b05w4knszc" - -["github.com/golang/mock"] - sumVersion = "v1.6.0" - ["github.com/golang/mock".fetch] - type = "git" - url = "https://github.com/golang/mock" - rev = "aba2ff9a6844d5e3289e8472d3217d5b3090f083" - sha256 = "1hara8j0x431njjhqxfrg1png7xa1gbrpwza6ya4mwlx76hppap4" - -["github.com/golang/protobuf"] - sumVersion = "v1.5.2" - ["github.com/golang/protobuf".fetch] - type = "git" - url = "https://github.com/golang/protobuf" - rev = "ae97035608a719c7a1c1c41bed0ae0744bdb0c6f" - sha256 = "1mh5fyim42dn821nsd3afnmgscrzzhn3h8rag635d2jnr23r1zhk" - -["github.com/golang/snappy"] - sumVersion = "v0.0.3" - ["github.com/golang/snappy".fetch] - type = "git" - url = "https://github.com/golang/snappy" - rev = "674baa8c7fc30da5df3074a459494a7e6b427dff" - sha256 = "1dc8sdca0nrqb8wri91mi2xcjm16wyawm4y0fwc5gp24ahjbrg7g" - -["github.com/google/btree"] - sumVersion = "v1.0.0" - ["github.com/google/btree".fetch] - type = "git" - url = "https://github.com/google/btree" - rev = "4030bb1f1f0c35b30ca7009e9ebd06849dd45306" - sha256 = "0ba430m9fbnagacp57krgidsyrgp3ycw5r7dj71brgp5r52g82p6" - -["github.com/google/go-cmp"] - sumVersion = "v0.5.6" - ["github.com/google/go-cmp".fetch] - type = "git" - url = "https://github.com/google/go-cmp" - rev = "d103655696d8ae43c4125ee61454dbf03d8e8324" - sha256 = "0lrb0pacv5iy3m6fn1qb3nv7zwimfhpzqq8f6hwpwx88cx3g6p1s" - -["github.com/google/gofuzz"] - sumVersion = "v1.2.0" - ["github.com/google/gofuzz".fetch] - type = "git" - url = "https://github.com/google/gofuzz" - rev = "379e164120fbc98885a8f494b5aa41ba94f64c56" - sha256 = "19bykk6y9d1ivylxchkx1r1d02xrh3wfvvd02zvr5qv5ippv78ag" - -["github.com/google/martian"] - sumVersion = "v2.1.0+incompatible" - ["github.com/google/martian".fetch] - type = "git" - url = "https://github.com/google/martian" - rev = "195b986b4b6d4c513582cf4d2b8c4fd7e2494f7e" - sha256 = "197hil6vrjk50b9wvwyzf61csid83whsjj6ik8mc9r2lryxlyyrp" - -["github.com/google/martian/v3"] - sumVersion = "v3.2.1" - ["github.com/google/martian/v3".fetch] - type = "git" - url = "https://github.com/google/martian" - rev = "7e75073889cd2324f33b959c4fb4545440da046c" - sha256 = "0ylsicpiaprq6yvgbl4qiclvj4xsnsmjsjmyi21rqgxhnvyjbfyf" - -["github.com/google/orderedcode"] - sumVersion = "v0.0.1" - ["github.com/google/orderedcode".fetch] - type = "git" - url = "https://github.com/google/orderedcode" - rev = "9a3d15e0d5340bb1ba5db4071afd931e18b6e013" - sha256 = "0sdqfjji2skc1f7fbv9krbrb0cgfz43ksrld333hllgdidi33c9a" - -["github.com/google/pprof"] - sumVersion = "v0.0.0-20210720184732-4bb14d4b1be1" - ["github.com/google/pprof".fetch] - type = "git" - url = "https://github.com/google/pprof" - rev = "4bb14d4b1be14417e47d0bbaf2bd4e188eda647f" - sha256 = "15lgdlblmw0f0cj0k7qn8bbk15k5b61n4r3vm2gaac2zribxk47b" - -["github.com/google/renameio"] - sumVersion = "v0.1.0" - ["github.com/google/renameio".fetch] - type = "git" - url = "https://github.com/google/renameio" - rev = "f0e32980c006571efd537032e5f9cd8c1a92819e" - sha256 = "1ki2x5a9nrj17sn092d6n4zr29lfg5ydv4xz5cp58z6cw8ip43jx" - -["github.com/google/uuid"] - sumVersion = "v1.1.2" - ["github.com/google/uuid".fetch] - type = "git" - url = "https://github.com/google/uuid" - rev = "0e4e31197428a347842d152773b4cace4645ca25" - sha256 = "1rbpfa0v0ly9sdnixcxhf79swki54ikgm1zkwwkj64p1ws66syqd" - -["github.com/googleapis/gax-go/v2"] - sumVersion = "v2.1.1" - relPath = "v2" - ["github.com/googleapis/gax-go/v2".fetch] - type = "git" - url = "https://github.com/googleapis/gax-go" - rev = "0968b165da19974432147e6058bc859f6c488642" - sha256 = "0y959pdc2yqajhk5wxdsvfjkz3pb5ppi6yrcmpy2dkviwhx2kz73" - -["github.com/gopherjs/gopherjs"] - sumVersion = "v0.0.0-20181017120253-0766667cb4d1" - ["github.com/gopherjs/gopherjs".fetch] - type = "git" - url = "https://github.com/gopherjs/gopherjs" - rev = "0766667cb4d1cfb8d5fde1fe210ae41ead3cf589" - sha256 = "13pfc9sxiwjky2lm1xb3i3lcisn8p6mgjk2d927l7r92ysph8dmw" - -["github.com/gordonklaus/ineffassign"] - sumVersion = "v0.0.0-20200309095847-7953dde2c7bf" - ["github.com/gordonklaus/ineffassign".fetch] - type = "git" - url = "https://github.com/gordonklaus/ineffassign" - rev = "7953dde2c7bf4ce700d9f14c2e41c0966763760c" - sha256 = "088r2jcxgfhabg7mcgyr42yvnd1iab5kncr0cc898p9cf7fyd95z" - -["github.com/gorilla/context"] - sumVersion = "v1.1.1" - ["github.com/gorilla/context".fetch] - type = "git" - url = "https://github.com/gorilla/context" - rev = "08b5f424b9271eedf6f9f0ce86cb9396ed337a42" - sha256 = "03p4hn87vcmfih0p9w663qbx9lpsf7i7j3lc7yl7n84la3yz63m4" - -["github.com/gorilla/handlers"] - sumVersion = "v1.5.1" - ["github.com/gorilla/handlers".fetch] - type = "git" - url = "https://github.com/gorilla/handlers" - rev = "d453effd20e6817a8acfd9d278dadd21371da0ba" - sha256 = "15gycdz9lkjnsvvichsbdf25vf6pi1sfn41khhz53iqf300l0w0s" - -["github.com/gorilla/mux"] - sumVersion = "v1.8.0" - ["github.com/gorilla/mux".fetch] - type = "git" - url = "https://github.com/gorilla/mux" - rev = "98cb6bf42e086f6af920b965c38cacc07402d51b" - sha256 = "18f0q9qxgq1yh4ji07mqhiydfcwvi56z9d775v7dc7yckj33kpdk" - -["github.com/gorilla/websocket"] - sumVersion = "v1.4.2" - ["github.com/gorilla/websocket".fetch] - type = "git" - url = "https://github.com/gorilla/websocket" - rev = "b65e62901fc1c0d968042419e74789f6af455eb9" - sha256 = "0mkm9w6kjkrlzab5wh8p4qxkc0icqawjbvr01d2nk6ykylrln40s" - -["github.com/gotestyourself/gotestyourself"] - sumVersion = "v2.2.0+incompatible" - ["github.com/gotestyourself/gotestyourself".fetch] - type = "git" - url = "https://github.com/gotestyourself/gotestyourself" - rev = "7c797b5133e5460410dbb22ba779bf35e6975dea" - sha256 = "0yif3gdyckmf8i54jq0xn00kflla5rhib9sarw66ngnbl7bn9kyl" - -["github.com/graph-gophers/graphql-go"] - sumVersion = "v0.0.0-20191115155744-f33e81362277" - ["github.com/graph-gophers/graphql-go".fetch] - type = "git" - url = "https://github.com/graph-gophers/graphql-go" - rev = "f33e813622776db7efec756a9e951bef40932197" - sha256 = "12vbls1kvn3lfgj86y4r258x6papgcj3h4pcg4xbdi5l2cy1idmy" - -["github.com/grpc-ecosystem/go-grpc-middleware"] - sumVersion = "v1.3.0" - ["github.com/grpc-ecosystem/go-grpc-middleware".fetch] - type = "git" - url = "https://github.com/grpc-ecosystem/go-grpc-middleware" - rev = "df0f91b29bbbdfc3a686a7a8edbe2b9de2072fdd" - sha256 = "1c9chw2nwj46ayx6cbq1sq21gmfmm3fx1gg579hn7srwywq0xsw0" - -["github.com/grpc-ecosystem/go-grpc-prometheus"] - sumVersion = "v1.2.0" - ["github.com/grpc-ecosystem/go-grpc-prometheus".fetch] - type = "git" - url = "https://github.com/grpc-ecosystem/go-grpc-prometheus" - rev = "c225b8c3b01faf2899099b768856a9e916e5087b" - sha256 = "1lzk54h7np32b3acidg1ggbn8ppbnns0m71gcg9d1qkkdh8zrijl" - -["github.com/grpc-ecosystem/grpc-gateway"] - sumVersion = "v1.16.0" - ["github.com/grpc-ecosystem/grpc-gateway".fetch] - type = "git" - url = "https://github.com/grpc-ecosystem/grpc-gateway" - rev = "094a6fe78b3ca888297d090185cdf30f0e42e157" - sha256 = "0dzq1qbgzz2c6vnh8anx0j3py34sd72p35x6s2wrl001q68am5cc" - -["github.com/gsterjov/go-libsecret"] - sumVersion = "v0.0.0-20161001094733-a6f4afe4910c" - ["github.com/gsterjov/go-libsecret".fetch] - type = "git" - url = "https://github.com/gsterjov/go-libsecret" - rev = "a6f4afe4910cad8688db3e0e9b9ac92ad22d54e1" - sha256 = "09zaiadnll83vs22ib89agg7anj0blw5fywvmckxllsgif6ak6v7" - -["github.com/gtank/merlin"] - sumVersion = "v0.1.1" - ["github.com/gtank/merlin".fetch] - type = "git" - url = "https://github.com/gtank/merlin" - rev = "8318aed1a79f2b4c16cf2d7c2f09d991ec0731d1" - sha256 = "1gcj26hiyb87cjvqrdyr4q201c1rknpbahnsvcnz08agaw6gvwxm" - -["github.com/gtank/ristretto255"] - sumVersion = "v0.1.2" - ["github.com/gtank/ristretto255".fetch] - type = "git" - url = "https://github.com/gtank/ristretto255" - rev = "f33454717c935f5c93978e82b7bd1e848768bb91" - sha256 = "0kn4r28zbxf4vqr2if455wqzak38l27wqrwbzpxygrvczm61a2kw" - -["github.com/hashicorp/consul/api"] - sumVersion = "v1.12.0" - relPath = "api" - ["github.com/hashicorp/consul/api".fetch] - type = "git" - url = "https://github.com/hashicorp/consul" - rev = "fed112e51ee38eee5eb7d7d46bf9b3dc308b70cf" - sha256 = "1vhzvwgip3znkjgmb26ysllbxllj35m4xgj63xsqx7smcawmh5xz" - -["github.com/hashicorp/consul/sdk"] - sumVersion = "v0.8.0" - relPath = "sdk" - ["github.com/hashicorp/consul/sdk".fetch] - type = "git" - url = "https://github.com/hashicorp/consul" - rev = "402636ff2db998edef392ac6d59210d2170b3ebf" - sha256 = "0vhbdkzqbs3nfg8dnkfiqjmhxc8cf81mnmy9003zqmlv9i1vfid9" - -["github.com/hashicorp/errwrap"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/errwrap".fetch] - type = "git" - url = "https://github.com/hashicorp/errwrap" - rev = "8a6fb523712970c966eefc6b39ed2c5e74880354" - sha256 = "0slfb6w3b61xz04r32bi0a1bygc82rjzhqkxj2si2074wynqnr1c" - -["github.com/hashicorp/go-cleanhttp"] - sumVersion = "v0.5.2" - ["github.com/hashicorp/go-cleanhttp".fetch] - type = "git" - url = "https://github.com/hashicorp/go-cleanhttp" - rev = "6d9e2ac5d828e5f8594b97f88c4bde14a67bb6d2" - sha256 = "1i5xslizzwd966w81bz6dxjwzgml4q9bwqa186bsxd1vi8lqxl9p" - -["github.com/hashicorp/go-hclog"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-hclog".fetch] - type = "git" - url = "https://github.com/hashicorp/go-hclog" - rev = "e5a68744f479c29cfe6af834a241e8176529cede" - sha256 = "1bhpqrjjfsr97wkr8dkwzxsvfvxbbmwq6z4cfpgq7zaccda76n9r" - -["github.com/hashicorp/go-immutable-radix"] - sumVersion = "v1.3.1" - ["github.com/hashicorp/go-immutable-radix".fetch] - type = "git" - url = "https://github.com/hashicorp/go-immutable-radix" - rev = "49d1d02c49a783de548d1ba8ae8fde466a20b9e6" - sha256 = "0s7sf8y5lj8rx4gdymrz29gg6y2xwksfpgniaz32yzcmg3c817zb" - -["github.com/hashicorp/go-msgpack"] - sumVersion = "v0.5.3" - ["github.com/hashicorp/go-msgpack".fetch] - type = "git" - url = "https://github.com/hashicorp/go-msgpack" - rev = "be3a5be7ee2202386d02936a19ae4fbde1c77800" - sha256 = "00jv0ajqd58pkb2yyhlrjp0rv1mvb1ijx3yqjyikcmzvk9jb4h5m" - -["github.com/hashicorp/go-multierror"] - sumVersion = "v1.1.0" - ["github.com/hashicorp/go-multierror".fetch] - type = "git" - url = "https://github.com/hashicorp/go-multierror" - rev = "2004d9dba6b07a5b8d133209244f376680f9d472" - sha256 = "0pmjpzpra7lqgikxzwlcp5mh01b46j2vhyxkixz0v86fr9kf0k3k" - -["github.com/hashicorp/go-retryablehttp"] - sumVersion = "v0.5.3" - ["github.com/hashicorp/go-retryablehttp".fetch] - type = "git" - url = "https://github.com/hashicorp/go-retryablehttp" - rev = "357460732517ec3b57c05c51443296bdd6df1874" - sha256 = "008mimxs8a970rdhvgmc5v1wk0gmpcl96mrkwz7wq6ik6fhg1sjl" - -["github.com/hashicorp/go-rootcerts"] - sumVersion = "v1.0.2" - ["github.com/hashicorp/go-rootcerts".fetch] - type = "git" - url = "https://github.com/hashicorp/go-rootcerts" - rev = "98fadc2a5ba2ad2a534a179b352ecdfd1f4259aa" - sha256 = "06z1bxcnr0rma02b6r52m6y0q7niikqjs090vm1i8xi3scyaw1qa" - -["github.com/hashicorp/go-sockaddr"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-sockaddr".fetch] - type = "git" - url = "https://github.com/hashicorp/go-sockaddr" - rev = "a6a0d2df398f7e0e9f6e43f589c8b51cec0eb6b0" - sha256 = "1yn1xq8ysn0lszmkygz3a9lgpswbz1p91jv7q8l20s4749a22xgi" - -["github.com/hashicorp/go-syslog"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-syslog".fetch] - type = "git" - url = "https://github.com/hashicorp/go-syslog" - rev = "8d1874e3e8d1862b74e0536851e218c4571066a5" - sha256 = "09vccqggz212cg0jir6vv708d6mx0f9w5bxrcdah3h6chgmal6v1" - -["github.com/hashicorp/go-uuid"] - sumVersion = "v1.0.1" - ["github.com/hashicorp/go-uuid".fetch] - type = "git" - url = "https://github.com/hashicorp/go-uuid" - rev = "4f571afc59f3043a65f8fe6bf46d887b10a01d43" - sha256 = "0jvb88m0rq41bwgirsadgw7mnayl27av3gd2vqa3xvxp3fy0hp5k" - -["github.com/hashicorp/go-version"] - sumVersion = "v1.2.0" - ["github.com/hashicorp/go-version".fetch] - type = "git" - url = "https://github.com/hashicorp/go-version" - rev = "ac23dc3fea5d1a983c43f6a0f6e2c13f0195d8bd" - sha256 = "1bwi6y6111xq8ww8kjq0w1cmz15l1h9hb2id6596l8l0ag1vjj1z" - -["github.com/hashicorp/go.net"] - sumVersion = "v0.0.1" - ["github.com/hashicorp/go.net".fetch] - type = "git" - url = "https://github.com/hashicorp/go.net" - rev = "afc3cb3a421746fc66dd55b09a270c750cf536ce" - sha256 = "06arwi95xp5rxyz7rndvhc3wlwg0jn9a5z6djf3yyg5h9zfab9i4" - -["github.com/hashicorp/golang-lru"] - sumVersion = "v0.5.4" - ["github.com/hashicorp/golang-lru".fetch] - type = "git" - url = "https://github.com/hashicorp/golang-lru" - rev = "14eae340515388ca95aa8e7b86f0de668e981f54" - sha256 = "1sdbymypp9vrnzp8ashw0idlxvaq0rb0alwxx3x8g27yjlqi9jfn" - -["github.com/hashicorp/hcl"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/hcl".fetch] - type = "git" - url = "https://github.com/hashicorp/hcl" - rev = "8cb6e5b959231cc1119e43259c4a608f9c51a241" - sha256 = "0q6ml0qqs0yil76mpn4mdx4lp94id8vbv575qm60jzl1ijcl5i66" - -["github.com/hashicorp/logutils"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/logutils".fetch] - type = "git" - url = "https://github.com/hashicorp/logutils" - rev = "a335183dfd075f638afcc820c90591ca3c97eba6" - sha256 = "076wf4sh5p3f953ndqk1cc0x7jhmlqrxak9953rz79rcdw77rjvv" - -["github.com/hashicorp/mdns"] - sumVersion = "v1.0.4" - ["github.com/hashicorp/mdns".fetch] - type = "git" - url = "https://github.com/hashicorp/mdns" - rev = "f504e0b3c01cf50e077ab6805546fa95ed9f2933" - sha256 = "1r0l8akczckyzdrp2jjhqwrn5a55nahhxdvnxzy58ad31k9ig1xr" - -["github.com/hashicorp/memberlist"] - sumVersion = "v0.3.0" - ["github.com/hashicorp/memberlist".fetch] - type = "git" - url = "https://github.com/hashicorp/memberlist" - rev = "923f1b205dd4653f2ea35e1c9531088e52053aa0" - sha256 = "1b75nh8k0xgfypczvai5f9x0np1flby3rvlvwllcs3blmbyqvmdz" - -["github.com/hashicorp/serf"] - sumVersion = "v0.9.6" - ["github.com/hashicorp/serf".fetch] - type = "git" - url = "https://github.com/hashicorp/serf" - rev = "d223c6912c28d0c527d9c865dd4976344e908f4c" - sha256 = "1j2p6rdggzyynizd9c48f4g0zkf1h4635jam8cd61a9h458jksv6" - -["github.com/hdevalence/ed25519consensus"] - sumVersion = "v0.0.0-20210204194344-59a8610d2b87" - ["github.com/hdevalence/ed25519consensus".fetch] - type = "git" - url = "https://github.com/hdevalence/ed25519consensus" - rev = "59a8610d2b877a977e021f711e382bc0e757bf48" - sha256 = "0nw0i884mbya2sdijrhlfnx3ymhdl3jcxk36g6mqk1d91p5b40s2" - -["github.com/holiman/uint256"] - sumVersion = "v1.1.1" - ["github.com/holiman/uint256".fetch] - type = "git" - url = "https://github.com/holiman/uint256" - rev = "99b79c80738390408ef1a47f0e26812ef5506c02" - sha256 = "13v6rnwv1mivqxfmnmj57jg6is81p04gspmykc8slcc1ryvs1qdh" - -["github.com/hpcloud/tail"] - sumVersion = "v1.0.0" - ["github.com/hpcloud/tail".fetch] - type = "git" - url = "https://github.com/hpcloud/tail" - rev = "a30252cb686a21eb2d0b98132633053ec2f7f1e5" - sha256 = "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0" - -["github.com/hudl/fargo"] - sumVersion = "v1.4.0" - ["github.com/hudl/fargo".fetch] - type = "git" - url = "https://github.com/hudl/fargo" - rev = "3eb9752cff0b65fbecf3ea04d7acd8f55a669fcd" - sha256 = "18pk1b5yybkghrjxskgssz8gzpv37k8w7gk0cldhcnffx85rqi0m" - -["github.com/huin/goupnp"] - sumVersion = "v1.0.0" - ["github.com/huin/goupnp".fetch] - type = "git" - url = "https://github.com/huin/goupnp" - rev = "656e61dfadd241c7cbdd22a023fa81ecb6860ea8" - sha256 = "12f7rigf1f4xh1an1qis61xkj5s1r8ygk48zahf3n4gaqxmgm7i6" - -["github.com/huin/goutil"] - sumVersion = "v0.0.0-20170803182201-1ca381bf3150" - ["github.com/huin/goutil".fetch] - type = "git" - url = "https://github.com/huin/goutil" - rev = "1ca381bf315033e89af3286fdec0109ce8d86126" - sha256 = "0alhyacsfqic2wxyqn4gvk9wzjl4pkmy8rhvqjk84xsghgx5xf12" - -["github.com/iancoleman/strcase"] - sumVersion = "v0.2.0" - ["github.com/iancoleman/strcase".fetch] - type = "git" - url = "https://github.com/iancoleman/strcase" - rev = "a61ebb85b34d7b831590cd8fa7faafadc161a652" - sha256 = "0rgfn6zz1r9h7yic3b0dcqq900bi638d6qgcyy9jhvk00f4dlg5j" - -["github.com/ianlancetaylor/demangle"] - sumVersion = "v0.0.0-20200824232613-28f6c0f3b639" - ["github.com/ianlancetaylor/demangle".fetch] - type = "git" - url = "https://github.com/ianlancetaylor/demangle" - rev = "28f6c0f3b63983aaa99575ca3b693afff7996387" - sha256 = "0rsq3622gd40f1x1l7caidsxrmzg1993ich2higwd94fqbxs1r83" - -["github.com/improbable-eng/grpc-web"] - sumVersion = "v0.14.1" - ["github.com/improbable-eng/grpc-web".fetch] - type = "git" - url = "https://github.com/improbable-eng/grpc-web" - rev = "d1462f8004766ff7f0e99962976a853bc9310301" - sha256 = "153a2kn2hpiwyspy9clwsxkgfw1igww5n74vf55fvz0idzv3r10n" - -["github.com/inconshreveable/mousetrap"] - sumVersion = "v1.0.0" - ["github.com/inconshreveable/mousetrap".fetch] - type = "git" - url = "https://github.com/inconshreveable/mousetrap" - rev = "76626ae9c91c4f2a10f34cad8ce83ea42c93bb75" - sha256 = "1mn0kg48xkd74brf48qf5hzp0bc6g8cf5a77w895rl3qnlpfw152" - -["github.com/influxdata/influxdb"] - sumVersion = "v1.2.3-0.20180221223340-01288bdb0883" - ["github.com/influxdata/influxdb".fetch] - type = "git" - url = "https://github.com/influxdata/influxdb" - rev = "01288bdb0883a01cac999326bd34421b29acaec8" - sha256 = "0lk1c2w1ja2w7wc897xp5c04vyrx5yxq5pb187aqcrqbqvy2fp5p" - -["github.com/influxdata/influxdb1-client"] - sumVersion = "v0.0.0-20200827194710-b269163b24ab" - ["github.com/influxdata/influxdb1-client".fetch] - type = "git" - url = "https://github.com/influxdata/influxdb1-client" - rev = "b269163b24ab8e62026d13a92aa988a7389c3b4e" - sha256 = "0pm1j437xk7d32px60j52qm98zgn21nmaqavjflvr44zaglrz5n9" - -["github.com/jackpal/go-nat-pmp"] - sumVersion = "v1.0.2-0.20160603034137-1fa385a6f458" - ["github.com/jackpal/go-nat-pmp".fetch] - type = "git" - url = "https://github.com/jackpal/go-nat-pmp" - rev = "1fa385a6f45828c83361136b45b1a21a12139493" - sha256 = "1n5h3qrd613cfw95vyqpy9vh3xv0zgbk3j5q8zad25q10wvp6ymn" - -["github.com/jedisct1/go-minisign"] - sumVersion = "v0.0.0-20190909160543-45766022959e" - ["github.com/jedisct1/go-minisign".fetch] - type = "git" - url = "https://github.com/jedisct1/go-minisign" - rev = "45766022959ee057eee31300cdc5f45a8c51ea7f" - sha256 = "02rc52v29wyzias9aw4a7kxsfspf27an3kf0pb9pn4kp0br5dn6v" - -["github.com/jessevdk/go-flags"] - sumVersion = "v1.4.0" - ["github.com/jessevdk/go-flags".fetch] - type = "git" - url = "https://github.com/jessevdk/go-flags" - rev = "c6ca198ec95c841fdb89fc0de7496fed11ab854e" - sha256 = "0algnnigph27spgn655zm4723yfjxjjvlf4k14z9drj3682df25a" - -["github.com/jhump/protoreflect"] - sumVersion = "v1.9.0" - ["github.com/jhump/protoreflect".fetch] - type = "git" - url = "https://github.com/jhump/protoreflect" - rev = "d3608faa83b85e64a0e2880cba9be9c951460727" - sha256 = "0pbyvisfjmhx1g5l6m0dqv730hid1jr8h8746yx3d567ms2hgj8f" - -["github.com/jmespath/go-jmespath"] - sumVersion = "v0.4.0" - ["github.com/jmespath/go-jmespath".fetch] - type = "git" - url = "https://github.com/jmespath/go-jmespath" - rev = "3d4fd11601ddca248480565884e34e393313cd62" - sha256 = "18zyr9nlywmwp3wpzcjxrgq9s9d2mmc6zg6xhsna00m663nkyc3n" - -["github.com/jmespath/go-jmespath/internal/testify"] - sumVersion = "v1.5.1" - relPath = "internal/testify" - ["github.com/jmespath/go-jmespath/internal/testify".fetch] - type = "git" - url = "https://github.com/jmespath/go-jmespath" - rev = "ff168ca20786696708c0f3eb2cc29d7912467599" - sha256 = "0swpmim4gn023pkzxfg8adqilz7mfka8axlsjqsxk0d2r372z75m" - -["github.com/jmhodges/levigo"] - sumVersion = "v1.0.0" - ["github.com/jmhodges/levigo".fetch] - type = "git" - url = "https://github.com/jmhodges/levigo" - rev = "853d788c5c416eaaee5b044570784a96c7a26975" - sha256 = "1lhh413mmclnkwn2lk1crwzargam2cx5w7k6zj8pgasy62c78iy4" - -["github.com/jonboulle/clockwork"] - sumVersion = "v0.1.0" - ["github.com/jonboulle/clockwork".fetch] - type = "git" - url = "https://github.com/jonboulle/clockwork" - rev = "2eee05ed794112d45db504eb05aa693efd2b8b09" - sha256 = "1pqxhsdavbp1n5grgyx2j6ylvql2fzn2cvpsgkc8li69dil7sibl" - -["github.com/jpillora/backoff"] - sumVersion = "v1.0.0" - ["github.com/jpillora/backoff".fetch] - type = "git" - url = "https://github.com/jpillora/backoff" - rev = "d80867952dff4e2fbfb4280ded4ff94d67790457" - sha256 = "0x90fif28fjyl07lmj2cnxzlgdm632v7rkra7kq1mwjdqgmy04dv" - -["github.com/jrick/logrotate"] - sumVersion = "v1.0.0" - ["github.com/jrick/logrotate".fetch] - type = "git" - url = "https://github.com/jrick/logrotate" - rev = "a93b200c26cbae3bb09dd0dc2c7c7fe1468a034a" - sha256 = "0srl6figwjqpi3nbp7br8sxpmvh4v8lzbny1b4lar4ny0156p5nl" - -["github.com/json-iterator/go"] - sumVersion = "v1.1.12" - ["github.com/json-iterator/go".fetch] - type = "git" - url = "https://github.com/json-iterator/go" - rev = "024077e996b048517130b21ea6bf12aa23055d3d" - sha256 = "1c8f0hxm18wivx31bs615x3vxs2j3ba0v6vxchsjhldc8kl311bz" - -["github.com/jstemmer/go-junit-report"] - sumVersion = "v0.9.1" - ["github.com/jstemmer/go-junit-report".fetch] - type = "git" - url = "https://github.com/jstemmer/go-junit-report" - rev = "cc1f095d5cc5eca2844f5c5ea7bb37f6b9bf6cac" - sha256 = "1knip80yir1cdsjlb3rzy0a4w3kl4ljpiciaz6hjzwqlfhnv7bkw" - -["github.com/jtolds/gls"] - sumVersion = "v4.20.0+incompatible" - ["github.com/jtolds/gls".fetch] - type = "git" - url = "https://github.com/jtolds/gls" - rev = "b4936e06046bbecbb94cae9c18127ebe510a2cb9" - sha256 = "1k7xd2q2ysv2xsh373qs801v6f359240kx0vrl0ydh7731lngvk6" - -["github.com/julienschmidt/httprouter"] - sumVersion = "v1.3.0" - ["github.com/julienschmidt/httprouter".fetch] - type = "git" - url = "https://github.com/julienschmidt/httprouter" - rev = "4eec211fa4e8df74ed978dc5681612131854144f" - sha256 = "1a6sy0ysqknsjssjh7qg1dqn21xmj9a36c57nrk7srfmab4ffmk1" - -["github.com/jung-kurt/gofpdf"] - sumVersion = "v1.0.3-0.20190309125859-24315acbbda5" - ["github.com/jung-kurt/gofpdf".fetch] - type = "git" - url = "https://github.com/jung-kurt/gofpdf" - rev = "24315acbbda57c4f6b80c8441fd108087dd7e305" - sha256 = "1hyb2vbyz8xwzhinqwlan0fxbdsgfjj975i9ca4bhfzzqqwq9pmk" - -["github.com/karalabe/usb"] - sumVersion = "v0.0.0-20190919080040-51dc0efba356" - ["github.com/karalabe/usb".fetch] - type = "git" - url = "https://github.com/karalabe/usb" - rev = "51dc0efba3568b598359930901dc6647e9b2c6a1" - sha256 = "0rshv04w5f60zv3l9f0zqyhimpwrbzm7dir8jbkdpnszicq1dx3m" - -["github.com/keybase/go-keychain"] - sumVersion = "v0.0.0-20190712205309-48d3d31d256d" - ["github.com/keybase/go-keychain".fetch] - type = "git" - url = "https://github.com/keybase/go-keychain" - rev = "48d3d31d256d9922a90b14c518c4b685f321fab2" - sha256 = "1vb4irkbj5s4v8n8dqngmg2w2fbnaz568z731yqryspvvmrki2a1" - -["github.com/kisielk/errcheck"] - sumVersion = "v1.5.0" - ["github.com/kisielk/errcheck".fetch] - type = "git" - url = "https://github.com/kisielk/errcheck" - rev = "ee08a456fc430219ad80ce5af98415bcc027a219" - sha256 = "0ci3jz2px74pfmr42jv7dpx7fdzx08vai4czp9fkiyb0gcaiqsk6" - -["github.com/kisielk/gotool"] - sumVersion = "v1.0.0" - ["github.com/kisielk/gotool".fetch] - type = "git" - url = "https://github.com/kisielk/gotool" - rev = "80517062f582ea3340cd4baf70e86d539ae7d84d" - sha256 = "14af2pa0ssyp8bp2mvdw184s5wcysk6akil3wzxmr05wwy951iwn" - -["github.com/kkdai/bstream"] - sumVersion = "v0.0.0-20161212061736-f391b8402d23" - ["github.com/kkdai/bstream".fetch] - type = "git" - url = "https://github.com/kkdai/bstream" - rev = "f391b8402d23024e7c0f624b31267a89998fca95" - sha256 = "1hd9caz0yf3r8kciw2pqwrsr8z4w0rhbqv1z7iq08d0542s05j3z" - -["github.com/klauspost/compress"] - sumVersion = "v1.13.6" - ["github.com/klauspost/compress".fetch] - type = "git" - url = "https://github.com/klauspost/compress" - rev = "38d4ba985ac157cb858763e016645e14e74c13c4" - sha256 = "1bgqhv2pp56b8f5mfzpfjlm4cb262gjbqbp3235blhj9xf2wrynj" - -["github.com/konsorten/go-windows-terminal-sequences"] - sumVersion = "v1.0.3" - ["github.com/konsorten/go-windows-terminal-sequences".fetch] - type = "git" - url = "https://github.com/konsorten/go-windows-terminal-sequences" - rev = "edb144dfd453055e1e49a3d8b410a660b5a87613" - sha256 = "1yrsd4s8vhjnxhwbigirymz89dn6qfjnhn28i33vvvdgf96j6ypl" - -["github.com/kr/fs"] - sumVersion = "v0.1.0" - ["github.com/kr/fs".fetch] - type = "git" - url = "https://github.com/kr/fs" - rev = "1455def202f6e05b95cc7bfc7e8ae67ae5141eba" - sha256 = "11zg176x9hr9q7fsk95r6q0wf214gg4czy02slax4x56n79g6a7q" - -["github.com/kr/logfmt"] - sumVersion = "v0.0.0-20140226030751-b84e30acd515" - ["github.com/kr/logfmt".fetch] - type = "git" - url = "https://github.com/kr/logfmt" - rev = "b84e30acd515aadc4b783ad4ff83aff3299bdfe0" - sha256 = "02ldzxgznrfdzvghfraslhgp19la1fczcbzh7wm2zdc6lmpd1qq9" - -["github.com/kr/pretty"] - sumVersion = "v0.2.1" - ["github.com/kr/pretty".fetch] - type = "git" - url = "https://github.com/kr/pretty" - rev = "ead452280cd055b2ae8a7f0db5eb37a878d902f7" - sha256 = "0vzfz06y9q8gs2nxx0kys0591vzp78k0fvpb8digi5n15h3b25hy" - -["github.com/kr/pty"] - sumVersion = "v1.1.1" - ["github.com/kr/pty".fetch] - type = "git" - url = "https://github.com/kr/pty" - rev = "282ce0e5322c82529687d609ee670fac7c7d917c" - sha256 = "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6" - -["github.com/kr/text"] - sumVersion = "v0.2.0" - ["github.com/kr/text".fetch] - type = "git" - url = "https://github.com/kr/text" - rev = "702c74938df48b97370179f33ce2107bd7ff3b3e" - sha256 = "0hf58ypz6rxsw6nx3i856whir9lvy4sdx946wbw1nfaf2rdmr9vx" - -["github.com/kylelemons/godebug"] - sumVersion = "v1.1.0" - ["github.com/kylelemons/godebug".fetch] - type = "git" - url = "https://github.com/kylelemons/godebug" - rev = "9ff306d4fbead574800b66369df5b6144732d58e" - sha256 = "0dkk3friykg8p6wgqryx6745ahhb9z1j740k7px9dac6v5xjp78c" - -["github.com/leodido/go-urn"] - sumVersion = "v1.2.0" - ["github.com/leodido/go-urn".fetch] - type = "git" - url = "https://github.com/leodido/go-urn" - rev = "a0f5013415294bb94553821ace21a1a74c0298cc" - sha256 = "1d4g1vkhc1180l1n7q48vl84b27c7cziywml78cyijbcdz2f8vim" - -["github.com/lib/pq"] - sumVersion = "v1.10.4" - ["github.com/lib/pq".fetch] - type = "git" - url = "https://github.com/lib/pq" - rev = "8446d16b8935fdf2b5c0fe333538ac395e3e1e4b" - sha256 = "0kdr257l1gq82bx2g3qjab6haj31ib8ljbyaa1rg1xsva5j17ngx" - -["github.com/libp2p/go-buffer-pool"] - sumVersion = "v0.0.2" - ["github.com/libp2p/go-buffer-pool".fetch] - type = "git" - url = "https://github.com/libp2p/go-buffer-pool" - rev = "c4a5988a1e475884367015e1a2d0bd5fa4c491f4" - sha256 = "01iwby4xq9znlfhcxxvqv03smllsv42j1w3vpqg9n307s3i0pj3m" - -["github.com/lightstep/lightstep-tracer-common/golang/gogo"] - sumVersion = "v0.0.0-20190605223551-bc2310a04743" - relPath = "golang/gogo" - ["github.com/lightstep/lightstep-tracer-common/golang/gogo".fetch] - type = "git" - url = "https://github.com/lightstep/lightstep-tracer-common" - rev = "bc2310a0474352fa2616bdc0a27457b146b136b4" - sha256 = "0j7qycrva0ngf38br0jy9blzjb98ksdfi87b0sb2gnpmsp6sz4l8" - -["github.com/lightstep/lightstep-tracer-go"] - sumVersion = "v0.18.1" - ["github.com/lightstep/lightstep-tracer-go".fetch] - type = "git" - url = "https://github.com/lightstep/lightstep-tracer-go" - rev = "95891af43e111d60f0ae6adaa39c2abe8caad401" - sha256 = "0jfnsv7y11d247xysc61wp8xmgn33fdl17v6g0lxxnklbw41k91y" - -["github.com/lucasjones/reggen"] - sumVersion = "v0.0.0-20180717132126-cdb49ff09d77" - ["github.com/lucasjones/reggen".fetch] - type = "git" - url = "https://github.com/lucasjones/reggen" - rev = "cdb49ff09d77331d3fdd51e862b4023d2257954c" - sha256 = "1cby9n647v4gh11mpz1dfscks8n0cw0rj8d2hjh4q9mky4m7jzl1" - -["github.com/lyft/protoc-gen-star"] - sumVersion = "v0.5.3" - ["github.com/lyft/protoc-gen-star".fetch] - type = "git" - url = "https://github.com/lyft/protoc-gen-star" - rev = "8ed22a1d0a9ee734c2b61d673e5013a51f3f9bf8" - sha256 = "0xzwh1q27c22ja7ixnsal838f638jxljb5hs1z1rn6dxb87wxkz9" - -["github.com/magiconair/properties"] - sumVersion = "v1.8.5" - ["github.com/magiconair/properties".fetch] - type = "git" - url = "https://github.com/magiconair/properties" - rev = "291b8266af1000c77a12ae6d4dde1145a028012f" - sha256 = "0v4agnkhc30fblbmhs0gq2bikhdnnmqmpp4phrnza68m04j5hxbn" - -["github.com/mattn/go-colorable"] - sumVersion = "v0.1.12" - ["github.com/mattn/go-colorable".fetch] - type = "git" - url = "https://github.com/mattn/go-colorable" - rev = "e1bb79c8d53c38a60962ad4b8f658226cc983710" - sha256 = "09pm6ccaxj4f524fnvmbaj1j0pj9gpp6h3bwa32craqiw5bmi93i" - -["github.com/mattn/go-ieproxy"] - sumVersion = "v0.0.0-20190702010315-6dee0af9227d" - ["github.com/mattn/go-ieproxy".fetch] - type = "git" - url = "https://github.com/mattn/go-ieproxy" - rev = "6dee0af9227d0863f1508ce7937af3396d6605c1" - sha256 = "0kxxxi68wch3rf3iqggiv72fbf0g7s6g8wy7r34ir040j8b7k0ri" - -["github.com/mattn/go-isatty"] - sumVersion = "v0.0.14" - ["github.com/mattn/go-isatty".fetch] - type = "git" - url = "https://github.com/mattn/go-isatty" - rev = "504425e14f742f1f517c4586048b49b37f829c8e" - sha256 = "015zc3j60vb85d7f2al15la24wn45piazxlagqhzrbgfdyqci60z" - -["github.com/mattn/go-runewidth"] - sumVersion = "v0.0.4" - ["github.com/mattn/go-runewidth".fetch] - type = "git" - url = "https://github.com/mattn/go-runewidth" - rev = "3ee7d812e62a0804a7d0a324e0249ca2db3476d3" - sha256 = "00b3ssm7wiqln3k54z2wcnxr3k3c7m1ybyhb9h8ixzbzspld0qzs" - -["github.com/matttproud/golang_protobuf_extensions"] - sumVersion = "v1.0.1" - ["github.com/matttproud/golang_protobuf_extensions".fetch] - type = "git" - url = "https://github.com/matttproud/golang_protobuf_extensions" - rev = "c12348ce28de40eed0136aa2b644d0ee0650e56c" - sha256 = "1d0c1isd2lk9pnfq2nk0aih356j30k3h1gi2w0ixsivi5csl7jya" - -["github.com/miekg/dns"] - sumVersion = "v1.1.43" - ["github.com/miekg/dns".fetch] - type = "git" - url = "https://github.com/miekg/dns" - rev = "996478ee912e69b7dcd57e68d35fd11a49af90ab" - sha256 = "071nz8l4ml347ivzdfjn5vsy089mprislyah62hvbiv4d4f4nsqm" - -["github.com/mimoo/StrobeGo"] - sumVersion = "v0.0.0-20181016162300-f8f6d4d2b643" - ["github.com/mimoo/StrobeGo".fetch] - type = "git" - url = "https://github.com/mimoo/StrobeGo" - rev = "f8f6d4d2b6435f46148e8a6dc2248939893f3ece" - sha256 = "1lgxh3p6aqfc049wn3kz1mj9prm4mqpa9m01p27ph8iw5ry5c7la" - -["github.com/minio/highwayhash"] - sumVersion = "v1.0.2" - ["github.com/minio/highwayhash".fetch] - type = "git" - url = "https://github.com/minio/highwayhash" - rev = "08ce0b4fa7932a018438133f1b632e1c674d4107" - sha256 = "1inrix7720273ccynxcyi7xsgc55cskxrw7gwn08qkmdj9xdxqai" - -["github.com/mitchellh/cli"] - sumVersion = "v1.1.0" - ["github.com/mitchellh/cli".fetch] - type = "git" - url = "https://github.com/mitchellh/cli" - rev = "902dcca838c81f360568876054b74ffcc419e421" - sha256 = "1x1jq0amsa0jpd4w19saz1wahmd8fb9mzs2ii4wk0mckr30n8nki" - -["github.com/mitchellh/go-homedir"] - sumVersion = "v1.1.0" - ["github.com/mitchellh/go-homedir".fetch] - type = "git" - url = "https://github.com/mitchellh/go-homedir" - rev = "af06845cf3004701891bf4fdb884bfe4920b3727" - sha256 = "0ydzkipf28hwj2bfxqmwlww47khyk6d152xax4bnyh60f4lq3nx1" - -["github.com/mitchellh/go-testing-interface"] - sumVersion = "v1.0.0" - ["github.com/mitchellh/go-testing-interface".fetch] - type = "git" - url = "https://github.com/mitchellh/go-testing-interface" - rev = "6d0b8010fcc857872e42fc6c931227569016843c" - sha256 = "1dl2js8di858bawg7dadlf1qjpkl2g3apziihjyf5imri3znyfpw" - -["github.com/mitchellh/gox"] - sumVersion = "v0.4.0" - ["github.com/mitchellh/gox".fetch] - type = "git" - url = "https://github.com/mitchellh/gox" - rev = "c9740af9c6574448fd48eb30a71f964014c7a837" - sha256 = "1q4fdkw904mrmh1q5z8pfd3r0gcn5dm776kldqawddy93iiwnp8r" - -["github.com/mitchellh/iochan"] - sumVersion = "v1.0.0" - ["github.com/mitchellh/iochan".fetch] - type = "git" - url = "https://github.com/mitchellh/iochan" - rev = "b6e3aadd28864e14dae41ff5c7261455b1242d24" - sha256 = "058n9bbf536f2nw3pbs7pysrg9cqvgkb28z2zf5wjyrzrknyk53g" - -["github.com/mitchellh/mapstructure"] - sumVersion = "v1.4.3" - ["github.com/mitchellh/mapstructure".fetch] - type = "git" - url = "https://github.com/mitchellh/mapstructure" - rev = "b9b99d7d59762a5b2a43df840adc318b2fa229ee" - sha256 = "0crp7zd5qlvka5pyr42i16ag4dh1swdlzw6pc67i441b33yqbnys" - -["github.com/moby/sys/mountinfo"] - sumVersion = "v0.4.1" - relPath = "mountinfo" - ["github.com/moby/sys/mountinfo".fetch] - type = "git" - url = "https://github.com/moby/sys" - rev = "b0f1fd7235275d01bd35cc4421e884e522395f45" - sha256 = "1svicfa0gyq8fcbsl475gpr0y5rgv0389d9yq6hzwz2acrdxyxm2" - -["github.com/modern-go/concurrent"] - sumVersion = "v0.0.0-20180306012644-bacd9c7ef1dd" - ["github.com/modern-go/concurrent".fetch] - type = "git" - url = "https://github.com/modern-go/concurrent" - rev = "bacd9c7ef1dd9b15be4a9909b8ac7a4e313eec94" - sha256 = "0s0fxccsyb8icjmiym5k7prcqx36hvgdwl588y0491gi18k5i4zs" - -["github.com/modern-go/reflect2"] - sumVersion = "v1.0.2" - ["github.com/modern-go/reflect2".fetch] - type = "git" - url = "https://github.com/modern-go/reflect2" - rev = "2b33151c9bbc5231aea69b8861c540102b087070" - sha256 = "05a89f9j4nj8v1bchfkv2sy8piz746ikj831ilbp54g8dqhl8vzr" - -["github.com/mrunalp/fileutils"] - sumVersion = "v0.5.0" - ["github.com/mrunalp/fileutils".fetch] - type = "git" - url = "https://github.com/mrunalp/fileutils" - rev = "d7fdd64cc1cabe10bc154ee7d2318b07b7f296ef" - sha256 = "1zrs959gf4zgi6ijwkdn4dcqk0svfblpaikkqy63q30rqz4swm0x" - -["github.com/mtibben/percent"] - sumVersion = "v0.2.1" - ["github.com/mtibben/percent".fetch] - type = "git" - url = "https://github.com/mtibben/percent" - rev = "07b18b68c1413ce9f8137a8cbd4509fac9e15f0c" - sha256 = "1iqivw8pigj259rj5yifibbvic70f9hb7k24a4sa967s4fj6agb6" - -["github.com/mwitkow/go-conntrack"] - sumVersion = "v0.0.0-20190716064945-2f068394615f" - ["github.com/mwitkow/go-conntrack".fetch] - type = "git" - url = "https://github.com/mwitkow/go-conntrack" - rev = "2f068394615f73e460c2f3d2c158b0ad9321cadb" - sha256 = "0ymjmy12ks7smgwmrwsa5kf07d9w5kpk1dn650azlzr61b561aw7" - -["github.com/mwitkow/grpc-proxy"] - sumVersion = "v0.0.0-20181017164139-0f1106ef9c76" - ["github.com/mwitkow/grpc-proxy".fetch] - type = "git" - url = "https://github.com/mwitkow/grpc-proxy" - rev = "0f1106ef9c766333b9acb4b81e705da4bade7215" - sha256 = "087kid1xiaxnhdhljcm1587cgiiwr0iznk931znkrz3f4gdjyqa2" - -["github.com/naoina/go-stringutil"] - sumVersion = "v0.1.0" - ["github.com/naoina/go-stringutil".fetch] - type = "git" - url = "https://github.com/naoina/go-stringutil" - rev = "6b638e95a32d0c1131db0e7fe83775cbea4a0d0b" - sha256 = "00831p1wn3rimybk1z8l30787kn1akv5jax5wx743nn76qcmkmc6" - -["github.com/naoina/toml"] - sumVersion = "v0.1.2-0.20170918210437-9fafd6967416" - ["github.com/naoina/toml".fetch] - type = "git" - url = "https://github.com/naoina/toml" - rev = "9fafd69674167c06933b1787ae235618431ce87f" - sha256 = "0mpvdnidgab48k7dfq1vaiz1wny8n29y7zxpipnp1zm8ibxpism0" - -["github.com/nats-io/jwt"] - sumVersion = "v1.2.2" - ["github.com/nats-io/jwt".fetch] - type = "git" - url = "https://github.com/nats-io/jwt" - rev = "0ea326566cb17313ecf982b6370758a0ac4bc7fd" - sha256 = "0mn5c8mmb1vmqa2hz238z8rb15znm17bfrf518myrssr93ymkfjz" - -["github.com/nats-io/jwt/v2"] - sumVersion = "v2.0.3" - relPath = "v2" - ["github.com/nats-io/jwt/v2".fetch] - type = "git" - url = "https://github.com/nats-io/jwt" - rev = "4ce4ed63235ec89cd741397addd1ffa7f233ed9b" - sha256 = "1348ffv8khj8lcwfdnlp03nk23w3rw7mx90nhgy47xk0qibv91kr" - -["github.com/nats-io/nats-server/v2"] - sumVersion = "v2.5.0" - ["github.com/nats-io/nats-server/v2".fetch] - type = "git" - url = "https://github.com/nats-io/nats-server" - rev = "b3c19b9dd19171b58da5b5135491848cf72da599" - sha256 = "1hhvk5hwqavka1qrhwbnfb8kl1kgx838rp92cpyy5b18n92y195b" - -["github.com/nats-io/nats.go"] - sumVersion = "v1.12.1" - ["github.com/nats-io/nats.go".fetch] - type = "git" - url = "https://github.com/nats-io/nats.go" - rev = "42edba421f77623576fb914344321612944faff7" - sha256 = "0s57gwnrmp3hx0khvixyp605g1kkbd87ycvk5k7lngpw093l1acy" - -["github.com/nats-io/nkeys"] - sumVersion = "v0.3.0" - ["github.com/nats-io/nkeys".fetch] - type = "git" - url = "https://github.com/nats-io/nkeys" - rev = "44384414044304395985410ff55ed78cbf0b09a8" - sha256 = "06wbmb3cxjrcfvgfbn6rdfzb4pfaaw11bnvl1r4kig4ag22qcz7b" - -["github.com/nats-io/nuid"] - sumVersion = "v1.0.1" - ["github.com/nats-io/nuid".fetch] - type = "git" - url = "https://github.com/nats-io/nuid" - rev = "4b96681fa6d28dd0ab5fe79bac63b3a493d9ee94" - sha256 = "11zbhg4kds5idsya04bwz4plj0mmiigypzppzih731ppbk2ms1zg" - -["github.com/neilotoole/errgroup"] - sumVersion = "v0.1.5" - ["github.com/neilotoole/errgroup".fetch] - type = "git" - url = "https://github.com/neilotoole/errgroup" - rev = "1b5ee5ba6837fe62f5c9f2275033db8ec84de004" - sha256 = "0jk0ws9cxdiicfd4w7mpvfgsx4fabgpjhyl8jwbqnzpq2w0pgk6p" - -["github.com/niemeyer/pretty"] - sumVersion = "v0.0.0-20200227124842-a10e7caefd8e" - ["github.com/niemeyer/pretty".fetch] - type = "git" - url = "https://github.com/niemeyer/pretty" - rev = "a10e7caefd8e0d600cea437f5c3613aeb1553d56" - sha256 = "1jmazh4xzaa3v6g46hz60q2z7nmqs9l9cxdzmmscn3kbcs2znq4v" - -["github.com/nishanths/predeclared"] - sumVersion = "v0.0.0-20200524104333-86fad755b4d3" - ["github.com/nishanths/predeclared".fetch] - type = "git" - url = "https://github.com/nishanths/predeclared" - rev = "86fad755b4d311159d91c13de0c9925a433fd6e5" - sha256 = "1prcndh4kds229xhhh4l7m25dn8w1wp7kj5gpcjs1z38w1jcpdh3" - -["github.com/nxadm/tail"] - sumVersion = "v1.4.8" - ["github.com/nxadm/tail".fetch] - type = "git" - url = "https://github.com/nxadm/tail" - rev = "abad231d8d07ef91e09cd4c4c457cac35ed3bbb9" - sha256 = "1j2gi485fhwdpmyzn42wk62103fclwbfywg42p275z1qv2bsz1rc" - -["github.com/oklog/oklog"] - sumVersion = "v0.3.2" - ["github.com/oklog/oklog".fetch] - type = "git" - url = "https://github.com/oklog/oklog" - rev = "e3ad1c411c27b4bc18c5facb9331820d141a5a54" - sha256 = "1xnjxhgi0zm51skl533la50h133a245i57wqa3h7fr2lv2jqpzny" - -["github.com/oklog/run"] - sumVersion = "v1.0.0" - ["github.com/oklog/run".fetch] - type = "git" - url = "https://github.com/oklog/run" - rev = "4dadeb3030eda0273a12382bb2348ffc7c9d1a39" - sha256 = "1pbjza4claaj95fpqvvfrysvs10y7dm0pl6qr5lzh6qy1vnhmcgw" - -["github.com/oklog/ulid"] - sumVersion = "v1.3.1" - ["github.com/oklog/ulid".fetch] - type = "git" - url = "https://github.com/oklog/ulid" - rev = "02a8604050d8466dd915307496174adb9be4593a" - sha256 = "0hybwyid820n80axrk863k2py93hbqlq6hxhf84ppmz0qd0ys0gq" - -["github.com/olekukonko/tablewriter"] - sumVersion = "v0.0.2-0.20190409134802-7e037d187b0c" - ["github.com/olekukonko/tablewriter".fetch] - type = "git" - url = "https://github.com/olekukonko/tablewriter" - rev = "7e037d187b0c13d81ccf0dd1c6b990c2759e6597" - sha256 = "0z7plnnnps1xlbbfjr99xxalpjz5kxizi24n4cdkqgp07gayh0af" - -["github.com/onsi/ginkgo"] - sumVersion = "v1.16.4" - ["github.com/onsi/ginkgo".fetch] - type = "git" - url = "https://github.com/onsi/ginkgo" - rev = "d125cd027fee341b3b3d65858a4121cf4931fead" - sha256 = "0rpzh0vg2k33szcq17rdwjvj3q6djp7vqfvasck40gsibadimnd7" - -["github.com/onsi/gomega"] - sumVersion = "v1.13.0" - ["github.com/onsi/gomega".fetch] - type = "git" - url = "https://github.com/onsi/gomega" - rev = "dbc6ecdcc526d81592dab902de6cbaf7be9a8a13" - sha256 = "1x49qblj010z4xvfj7c4jh9q9awrkvbwnfrglvbh30gglmmsss8g" - -["github.com/op/go-logging"] - sumVersion = "v0.0.0-20160315200505-970db520ece7" - ["github.com/op/go-logging".fetch] - type = "git" - url = "https://github.com/op/go-logging" - rev = "970db520ece77730c7e4724c61121037378659d9" - sha256 = "1cpna2x5l071z1vrnk7zipdkka8dzwsjyx7m79xk0lr08rip0kcj" - -["github.com/opencontainers/go-digest"] - sumVersion = "v1.0.0" - ["github.com/opencontainers/go-digest".fetch] - type = "git" - url = "https://github.com/opencontainers/go-digest" - rev = "ea51bea511f75cfa3ef6098cc253c5c3609b037a" - sha256 = "0i5acjajvr6hi9zb7gxwifd8w28y884cv7cx36adj8lngj647xbi" - -["github.com/opencontainers/image-spec"] - sumVersion = "v1.0.1" - ["github.com/opencontainers/image-spec".fetch] - type = "git" - url = "https://github.com/opencontainers/image-spec" - rev = "d60099175f88c47cd379c4738d158884749ed235" - sha256 = "03dvbj3dln8c55v9gp79mgmz2yi2ws3r08iyz2fk41y3i22iaw1q" - -["github.com/opencontainers/runc"] - sumVersion = "v1.0.2" - ["github.com/opencontainers/runc".fetch] - type = "git" - url = "https://github.com/opencontainers/runc" - rev = "52b36a2dd837e8462de8e01458bf02cf9eea47dd" - sha256 = "1bpckghjah0rczciw1a1ab8z718lb2d3k4mjm4zb45lpm3njmrcp" - -["github.com/opencontainers/runtime-spec"] - sumVersion = "v1.0.3-0.20210326190908-1c3f411f0417" - ["github.com/opencontainers/runtime-spec".fetch] - type = "git" - url = "https://github.com/opencontainers/runtime-spec" - rev = "1c3f411f041711bbeecf35ff7e93461ea6789220" - sha256 = "1azk8z41ga8af35c966f06vrq9y9hwz6mkm59r3py5qaamzim3qq" - -["github.com/opencontainers/selinux"] - sumVersion = "v1.8.2" - ["github.com/opencontainers/selinux".fetch] - type = "git" - url = "https://github.com/opencontainers/selinux" - rev = "76bc82e11d854d3e40c08889d13c98abcea72ea2" - sha256 = "1dl1h8nzpyhsfki1dcjphm5h4n52qwilahyl6qlnwgzcc76pwizq" - -["github.com/opentracing-contrib/go-observer"] - sumVersion = "v0.0.0-20170622124052-a52f23424492" - ["github.com/opentracing-contrib/go-observer".fetch] - type = "git" - url = "https://github.com/opentracing-contrib/go-observer" - rev = "a52f2342449246d5bcc273e65cbdcfa5f7d6c63c" - sha256 = "1q7z458m2vh3bzml4x9vm2paffqn1jcgiydbisl0zg2asfniq7k3" - -["github.com/opentracing/basictracer-go"] - sumVersion = "v1.0.0" - ["github.com/opentracing/basictracer-go".fetch] - type = "git" - url = "https://github.com/opentracing/basictracer-go" - rev = "1b32af207119a14b1b231d451df3ed04a72efebf" - sha256 = "0hs969asib4yqj5k755zr0byz2iqvjbs6z1szcnr50q6fihigca0" - -["github.com/opentracing/opentracing-go"] - sumVersion = "v1.2.0" - ["github.com/opentracing/opentracing-go".fetch] - type = "git" - url = "https://github.com/opentracing/opentracing-go" - rev = "d34af3eaa63c4d08ab54863a4bdd0daa45212e12" - sha256 = "04rgdwl29kimp2wnm4dycnzp7941hvpj6wym85x23c6fclacm94h" - -["github.com/openzipkin-contrib/zipkin-go-opentracing"] - sumVersion = "v0.4.5" - ["github.com/openzipkin-contrib/zipkin-go-opentracing".fetch] - type = "git" - url = "https://github.com/openzipkin-contrib/zipkin-go-opentracing" - rev = "223664cff43dfd9f54659ff15dc4bd6e023d0c14" - sha256 = "0mdvx50mw17c926rhhkjg8z54v8h0jvnqahdlpij2kbxi3ncgr7q" - -["github.com/openzipkin/zipkin-go"] - sumVersion = "v0.2.5" - ["github.com/openzipkin/zipkin-go".fetch] - type = "git" - url = "https://github.com/openzipkin/zipkin-go" - rev = "b98d75699e013868e73c146266a28bc8c9e2c372" - sha256 = "16khin03g3x1nmp4cizga72hg7n3bv9diy11y75nhidx360bg7fc" - -["github.com/ory/dockertest"] - sumVersion = "v3.3.5+incompatible" - ["github.com/ory/dockertest".fetch] - type = "git" - url = "https://github.com/ory/dockertest" - rev = "2b0896a948c60f3207381d9fc259d0fc13227c30" - sha256 = "0fgj60l82sl6chd7i4s7lxqjr9hxkzmkaxnc8h6qbvn42246sy68" - -["github.com/otiai10/copy"] - sumVersion = "v1.6.0" - ["github.com/otiai10/copy".fetch] - type = "git" - url = "https://github.com/otiai10/copy" - rev = "edeb9f37d4d0c28725014fcab6635120197932a1" - sha256 = "1l84qx9n464nh1izgr1kx5xb1ab878b2x803fck0w9gy1bwch25h" - -["github.com/otiai10/curr"] - sumVersion = "v1.0.0" - ["github.com/otiai10/curr".fetch] - type = "git" - url = "https://github.com/otiai10/curr" - rev = "88e2f2cffa0b5f13e90ee963a321bd1b2f715561" - sha256 = "0fpw20adq2wff7l4c87zaavj9jra4d64a8bbjixiiv3bbarim987" - -["github.com/otiai10/mint"] - sumVersion = "v1.3.2" - ["github.com/otiai10/mint".fetch] - type = "git" - url = "https://github.com/otiai10/mint" - rev = "3588d691480a831b1e78b776d3bccd9d5ce6461c" - sha256 = "0448nkhmp1ny64g2d7m5x8inz118zj03j6q0b97q3dszzs7hhan4" - -["github.com/pact-foundation/pact-go"] - sumVersion = "v1.0.4" - ["github.com/pact-foundation/pact-go".fetch] - type = "git" - url = "https://github.com/pact-foundation/pact-go" - rev = "3ce08c8af46b7bc33a06efc9b8807c08806c8af2" - sha256 = "08mnyf1yb6zjqfzs1pdh44drv390lfilhh4vi4asnjk52gknqfn0" - -["github.com/pascaldekloe/goe"] - sumVersion = "v0.1.0" - ["github.com/pascaldekloe/goe".fetch] - type = "git" - url = "https://github.com/pascaldekloe/goe" - rev = "57f6aae5913c64c9bcae5dbdffd33365b5a7f138" - sha256 = "1dqd3mfb4z2vmv6pg6fhgvfc53vhndk24wcl9lj1rz02n6m279fq" - -["github.com/pborman/uuid"] - sumVersion = "v1.2.0" - ["github.com/pborman/uuid".fetch] - type = "git" - url = "https://github.com/pborman/uuid" - rev = "8b1b92947f46224e3b97bb1a3a5b0382be00d31e" - sha256 = "0f146yjqwx2mr110kl8scjhqd08hys7vr5z0d0a3lskb6yy22gfg" - -["github.com/pelletier/go-toml"] - sumVersion = "v1.9.4" - ["github.com/pelletier/go-toml".fetch] - type = "git" - url = "https://github.com/pelletier/go-toml" - rev = "b8ba995eaaba4be30c8a8090bdfb4aa61af52054" - sha256 = "0f2d9m19dadl18i2baf57xygvn9vprm6wb8chvpx8kipx94nchyl" - -["github.com/performancecopilot/speed"] - sumVersion = "v3.0.0+incompatible" - ["github.com/performancecopilot/speed".fetch] - type = "git" - url = "https://github.com/performancecopilot/speed" - rev = "839069a3ed70162d3bcefb9891c8ca852d877c1c" - sha256 = "1r0l6i80xkx9dcysa7ajvs5ypqkw2k0422k0hbz28fizaq9d8y0m" - -["github.com/performancecopilot/speed/v4"] - sumVersion = "v4.0.0" - ["github.com/performancecopilot/speed/v4".fetch] - type = "git" - url = "https://github.com/performancecopilot/speed" - rev = "680d7c7921789aa5ab2d37fc67a7fb64f0b5ba96" - sha256 = "0zpf42pid3cd3sqv4gy2h51adq2zpw0pi0v3fpgxqna4iia280j0" - -["github.com/peterh/liner"] - sumVersion = "v1.1.1-0.20190123174540-a2c9a5303de7" - ["github.com/peterh/liner".fetch] - type = "git" - url = "https://github.com/peterh/liner" - rev = "a2c9a5303de792c7581a3b80a8f10258319bb20e" - sha256 = "1cxpr92adcyv4bimswkfg3cmpmk71zq9gpyckhc64j2p4r4mb8zr" - -["github.com/petermattis/goid"] - sumVersion = "v0.0.0-20180202154549-b0b1615b78e5" - ["github.com/petermattis/goid".fetch] - type = "git" - url = "https://github.com/petermattis/goid" - rev = "b0b1615b78e5ee59739545bb38426383b2cda4c9" - sha256 = "0ghfxn045r0bbn2vszw897lxzmhnm4k59aypjvpxl0pbzsw9ab2c" - -["github.com/philhofer/fwd"] - sumVersion = "v1.1.1" - ["github.com/philhofer/fwd".fetch] - type = "git" - url = "https://github.com/philhofer/fwd" - rev = "9bcb9cab1b0394d8516a132ec243ba944efdb644" - sha256 = "1z88ry83lf01mv69kd2jwbhngh24qwhhknj3l5jn2kz5nycq6bkx" - -["github.com/pierrec/lz4"] - sumVersion = "v2.0.5+incompatible" - ["github.com/pierrec/lz4".fetch] - type = "git" - url = "https://github.com/pierrec/lz4" - rev = "ea731401f5c95a8ba30f15787e5e0fb77c60c66b" - sha256 = "0y5rh7z01zycd59nnjpkqq0ydyjmcg9j1xw15q1i600l9j9g617p" - -["github.com/pkg/errors"] - sumVersion = "v0.9.1" - ["github.com/pkg/errors".fetch] - type = "git" - url = "https://github.com/pkg/errors" - rev = "614d223910a179a466c1767a985424175c39b465" - sha256 = "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq" - -["github.com/pkg/profile"] - sumVersion = "v1.2.1" - ["github.com/pkg/profile".fetch] - type = "git" - url = "https://github.com/pkg/profile" - rev = "5b67d428864e92711fcbd2f8629456121a56d91f" - sha256 = "0blqmvgqvdbqmh3fp9pfdxc9w1qfshrr0zy9whj0sn372bw64qnr" - -["github.com/pkg/sftp"] - sumVersion = "v1.10.1" - ["github.com/pkg/sftp".fetch] - type = "git" - url = "https://github.com/pkg/sftp" - rev = "3edd153f213d8d4191a0ee4577c61cca19436632" - sha256 = "0iw6lijdljwh5xw5hsy0b578cr52h6vvm7hbnzlrvciwhh4sfhhp" - -["github.com/pmezard/go-difflib"] - sumVersion = "v1.0.0" - ["github.com/pmezard/go-difflib".fetch] - type = "git" - url = "https://github.com/pmezard/go-difflib" - rev = "792786c7400a136282c1664665ae0a8db921c6c2" - sha256 = "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw" - -["github.com/posener/complete"] - sumVersion = "v1.2.3" - ["github.com/posener/complete".fetch] - type = "git" - url = "https://github.com/posener/complete" - rev = "05b68ffc813dd10c420993cb1cf927b346c057b8" - sha256 = "0nri6hkfb0z3dkxf2fsfidr4bxbn91rjsqhg5s0c2jplf0aclppz" - -["github.com/prometheus/client_golang"] - sumVersion = "v1.11.0" - ["github.com/prometheus/client_golang".fetch] - type = "git" - url = "https://github.com/prometheus/client_golang" - rev = "8184d76b3b0bd3b01ed903690431ccb6826bf3e0" - sha256 = "1xdspykw6wgp0bv7s1r7gklvhr5jfmi59n8bg8zhy3vi0yi902y3" - -["github.com/prometheus/client_model"] - sumVersion = "v0.2.0" - ["github.com/prometheus/client_model".fetch] - type = "git" - url = "https://github.com/prometheus/client_model" - rev = "7bc5445566f0fe75b15de23e6b93886e982d7bf9" - sha256 = "0jffnz94d6ff39fr96b5w8i8yk26pwnrfggzz8jhi8k0yihg2c9d" - -["github.com/prometheus/common"] - sumVersion = "v0.30.0" - ["github.com/prometheus/common".fetch] - type = "git" - url = "https://github.com/prometheus/common" - rev = "8d1c9f84e3f78cb628a20f8e7be531c508237848" - sha256 = "1zjv2gq62h3x3k8qlw14wyi1ka1qw62654ldqpqphfp2chhxyvna" - -["github.com/prometheus/procfs"] - sumVersion = "v0.7.3" - ["github.com/prometheus/procfs".fetch] - type = "git" - url = "https://github.com/prometheus/procfs" - rev = "f436cbb89ece38bf080d446b3ca27053b305eaac" - sha256 = "00z7ghcb86y2ajx0xvwmn3d18nq4djmvmjn52crgm85gsl442lb4" - -["github.com/prometheus/tsdb"] - sumVersion = "v0.7.1" - ["github.com/prometheus/tsdb".fetch] - type = "git" - url = "https://github.com/prometheus/tsdb" - rev = "c20450564cc42983bf923c13f3fda42de709ac13" - sha256 = "1c1da8i5byvhh4fp3vqjfb65aaksjskn3ggb8wg9hcfzjrhgpz04" - -["github.com/rakyll/statik"] - sumVersion = "v0.1.7" - ["github.com/rakyll/statik".fetch] - type = "git" - url = "https://github.com/rakyll/statik" - rev = "46bd79c4540341fe472fe71dd2ce0ccd4e635450" - sha256 = "0y0kbzma55vmyqhyrw9ssgvxn6nw7d0zg72a7nz8vp1zly4hs6va" - -["github.com/rcrowley/go-metrics"] - sumVersion = "v0.0.0-20200313005456-10cdbea86bc0" - ["github.com/rcrowley/go-metrics".fetch] - type = "git" - url = "https://github.com/rcrowley/go-metrics" - rev = "10cdbea86bc0b922507ce91d43f4f78a5bea2e8f" - sha256 = "157rfn5kf1mdn65gay38zpv6zam3sfa5a3zkx9wxk77y7w3kam19" - -["github.com/regen-network/cosmos-proto"] - sumVersion = "v0.3.1" - ["github.com/regen-network/cosmos-proto".fetch] - type = "git" - url = "https://github.com/regen-network/cosmos-proto" - rev = "f793b6157c2cfb8c1c797100e1918b2d1eb40615" - sha256 = "05sk9jhk4qz5m4vkj0wr0swhvq9niz7v7bvpxh063vz0y6mmpj05" - -["github.com/rjeczalik/notify"] - sumVersion = "v0.9.1" - ["github.com/rjeczalik/notify".fetch] - type = "git" - url = "https://github.com/rjeczalik/notify" - rev = "0f065fa99b48b842c3fd3e2c8b194c6f2b69f6b8" - sha256 = "15zzgyry10hvg0z2d3fm1yncbscln9mmvgsm29w67yncf6n8vcb0" - -["github.com/rogpeppe/fastuuid"] - sumVersion = "v1.2.0" - ["github.com/rogpeppe/fastuuid".fetch] - type = "git" - url = "https://github.com/rogpeppe/fastuuid" - rev = "10c3923834d38e951ae8f627bfec2dc632c5b6cb" - sha256 = "028acdg63zkxpjz3l639nlhki2l0canr2v5jglrmwa1wpjqcfff8" - -["github.com/rogpeppe/go-internal"] - sumVersion = "v1.3.0" - ["github.com/rogpeppe/go-internal".fetch] - type = "git" - url = "https://github.com/rogpeppe/go-internal" - rev = "438578804ca6f31be148c27683afc419ce47c06e" - sha256 = "0mcdh1licgnnahwml9y2iq6xy5x9xmjw5frcnds2s3wpjyqrl216" - -["github.com/rs/cors"] - sumVersion = "v1.8.0" - ["github.com/rs/cors".fetch] - type = "git" - url = "https://github.com/rs/cors" - rev = "64821dda5aedeb954fb2caf787f7a1030085ab34" - sha256 = "07nf0lai4m5m61j6kscynqcwpj28df13g79rrdmk0g3ba3cbf9gr" - -["github.com/rs/xhandler"] - sumVersion = "v0.0.0-20160618193221-ed27b6fd6521" - ["github.com/rs/xhandler".fetch] - type = "git" - url = "https://github.com/rs/xhandler" - rev = "ed27b6fd65218132ee50cd95f38474a3d8a2cd12" - sha256 = "1fpp4rh812nvr5m0s0d5dsa1ypr4333mcijng0dp5bcgg2bqkwdz" - -["github.com/rs/xid"] - sumVersion = "v1.3.0" - ["github.com/rs/xid".fetch] - type = "git" - url = "https://github.com/rs/xid" - rev = "efa678f304ab65d6d57eedcb086798381ae22206" - sha256 = "0w2hva6ymn16yn6zrwb6nx3kxaffva95w7gj2fwg0xx39fyfslbb" - -["github.com/rs/zerolog"] - sumVersion = "v1.26.1" - ["github.com/rs/zerolog".fetch] - type = "git" - url = "https://github.com/rs/zerolog" - rev = "791ca15d999a97768ffd3b040116f9f5a772661a" - sha256 = "027fwbaavn58h94053rzwv9y42jvil4jfdjppq10vjw0qq0q4q04" - -["github.com/russross/blackfriday"] - sumVersion = "v1.5.2" - ["github.com/russross/blackfriday".fetch] - type = "git" - url = "https://github.com/russross/blackfriday" - rev = "05f3235734ad95d0016f6a23902f06461fcf567a" - sha256 = "0jzbfzcywqcrnym4gxlz6nphmm1grg6wsl4f0r9x384rn83wkj7c" - -["github.com/russross/blackfriday/v2"] - sumVersion = "v2.0.1" - ["github.com/russross/blackfriday/v2".fetch] - type = "git" - url = "https://github.com/russross/blackfriday" - rev = "d3b5b032dc8e8927d31a5071b56e14c89f045135" - sha256 = "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j" - -["github.com/ryanuber/columnize"] - sumVersion = "v0.0.0-20160712163229-9b3edd62028f" - ["github.com/ryanuber/columnize".fetch] - type = "git" - url = "https://github.com/ryanuber/columnize" - rev = "9b3edd62028f107d7cabb19353292afd29311a4e" - sha256 = "1ya1idkbb0a9fjlhkcnh5a9yvpwzwfmbyg7d56lpplwr9rqi1da4" - -["github.com/sagikazarmark/crypt"] - sumVersion = "v0.4.0" - ["github.com/sagikazarmark/crypt".fetch] - type = "git" - url = "https://github.com/sagikazarmark/crypt" - rev = "18939ac66bb76d477ec8d562191776e844342fc9" - sha256 = "01njhr580hsyrwld76apr08mmpvx6c70an29a145jsldidsnzszp" - -["github.com/samuel/go-zookeeper"] - sumVersion = "v0.0.0-20190923202752-2cc03de413da" - ["github.com/samuel/go-zookeeper".fetch] - type = "git" - url = "https://github.com/samuel/go-zookeeper" - rev = "2cc03de413da42869e2db7ce7965d3e978d917eb" - sha256 = "11z2r73q6qk9xy3mzkhdxd7cbfqsdr0105d5m03q4r47fki46hgx" - -["github.com/sasha-s/go-deadlock"] - sumVersion = "v0.2.1-0.20190427202633-1595213edefa" - ["github.com/sasha-s/go-deadlock".fetch] - type = "git" - url = "https://github.com/sasha-s/go-deadlock" - rev = "1595213edefa28ca5047b00340c63557f9c051d0" - sha256 = "06h5g16zlfnw9wvgaqp7jfav3n3pvli6asfcx1hv44sl601wnwk0" - -["github.com/sean-/seed"] - sumVersion = "v0.0.0-20170313163322-e2103e2c3529" - ["github.com/sean-/seed".fetch] - type = "git" - url = "https://github.com/sean-/seed" - rev = "e2103e2c35297fb7e17febb81e49b312087a2372" - sha256 = "0glir8jxi1w7aga2jwdb63pp1h8q4whknili7xixsqzwyy716125" - -["github.com/seccomp/libseccomp-golang"] - sumVersion = "v0.9.1" - ["github.com/seccomp/libseccomp-golang".fetch] - type = "git" - url = "https://github.com/seccomp/libseccomp-golang" - rev = "689e3c1541a84461afc49c1c87352a6cedf72e9c" - sha256 = "022c8prvxz0shrifams7lq4xidvkcqg9xi87wjjcpmbikqi72cna" - -["github.com/segmentio/fasthash"] - sumVersion = "v1.0.3" - ["github.com/segmentio/fasthash".fetch] - type = "git" - url = "https://github.com/segmentio/fasthash" - rev = "9dc1b83dc0d8bf7d26ea69d6c6d7a11ebf6fbb89" - sha256 = "0wrlviycj5hz4w576f156h2cpnnmkflfx5jfj298qzn5lymnqv86" - -["github.com/shirou/gopsutil"] - sumVersion = "v2.20.5+incompatible" - ["github.com/shirou/gopsutil".fetch] - type = "git" - url = "https://github.com/shirou/gopsutil" - rev = "663af789c0858f2ede24f71a8dfba3643100dec9" - sha256 = "1q115pn37ymfqis43sm82iivbab4zk4gmjng21yb54vjk8pzsjvr" - -["github.com/shurcooL/sanitized_anchor_name"] - sumVersion = "v1.0.0" - ["github.com/shurcooL/sanitized_anchor_name".fetch] - type = "git" - url = "https://github.com/shurcooL/sanitized_anchor_name" - rev = "7bfe4c7ecddb3666a94b053b422cdd8f5aaa3615" - sha256 = "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f" - -["github.com/sirupsen/logrus"] - sumVersion = "v1.8.1" - ["github.com/sirupsen/logrus".fetch] - type = "git" - url = "https://github.com/sirupsen/logrus" - rev = "bdc0db8ead3853c56b7cd1ac2ba4e11b47d7da6b" - sha256 = "0rvqzic2zz7fpxyizmqxwmhv1m52ii9bgxnqa6km8wsa0l08wh42" - -["github.com/smartystreets/assertions"] - sumVersion = "v0.0.0-20180927180507-b2de0cb4f26d" - ["github.com/smartystreets/assertions".fetch] - type = "git" - url = "https://github.com/smartystreets/assertions" - rev = "b2de0cb4f26d0705483a2f495d89896d0b808573" - sha256 = "1i7ldgavgl35c7gk25p7bvdr282ckng090zr4ch9mk1705akx09y" - -["github.com/smartystreets/goconvey"] - sumVersion = "v1.6.4" - ["github.com/smartystreets/goconvey".fetch] - type = "git" - url = "https://github.com/smartystreets/goconvey" - rev = "505e419363375c0dc132d3ac02632a4ee32199ca" - sha256 = "07zjxwszayal88z1j2bwnqrsa32vg8l4nivks5yfr9j8xfsw7n6m" - -["github.com/snikch/goodman"] - sumVersion = "v0.0.0-20171125024755-10e37e294daa" - ["github.com/snikch/goodman".fetch] - type = "git" - url = "https://github.com/snikch/goodman" - rev = "10e37e294daa3c9a90abded60ff9924bafab3888" - sha256 = "0n6m17lmlfsynd7ja3s3w7pgpi7zdyakqbg4ahzdq9918fwddqmp" - -["github.com/soheilhy/cmux"] - sumVersion = "v0.1.4" - ["github.com/soheilhy/cmux".fetch] - type = "git" - url = "https://github.com/soheilhy/cmux" - rev = "e09e9389d85d8492d313d73d1469c029e710623f" - sha256 = "1f736g68d9vwlyfb6g0fxkr0r875369xafk30cz8kaq5niaqwv0h" - -["github.com/sony/gobreaker"] - sumVersion = "v0.4.1" - ["github.com/sony/gobreaker".fetch] - type = "git" - url = "https://github.com/sony/gobreaker" - rev = "21dbfda1fc5e89b91bd0c835a91c31fe4d461e88" - sha256 = "0iarblm3w2d0p997jsw9bkznfj0wa8d586nh37ii5gnqy41va700" - -["github.com/spaolacci/murmur3"] - sumVersion = "v1.1.0" - ["github.com/spaolacci/murmur3".fetch] - type = "git" - url = "https://github.com/spaolacci/murmur3" - rev = "f09979ecbc725b9e6d41a297405f65e7e8804acc" - sha256 = "1lv3zyz3jy2d76bhvvs8svygx66606iygdvwy5cwc0p5z8yghq25" - -["github.com/spf13/afero"] - sumVersion = "v1.6.0" - ["github.com/spf13/afero".fetch] - type = "git" - url = "https://github.com/spf13/afero" - rev = "bc94f58beda5dbff6f74599fcb1f1717c5b1c111" - sha256 = "0yi8p0yxiidpcg4cagxg2iyqcaapsng89rak4qyxmgails2fqg37" - -["github.com/spf13/cast"] - sumVersion = "v1.4.1" - ["github.com/spf13/cast".fetch] - type = "git" - url = "https://github.com/spf13/cast" - rev = "88075729b052bca4b8b6c31bf198db2fe6c9da93" - sha256 = "06qsfpvcbgkf2pvcvf9l46fj55kmbhp2yz382fkj5gll2bykx9ld" - -["github.com/spf13/cobra"] - sumVersion = "v1.2.1" - ["github.com/spf13/cobra".fetch] - type = "git" - url = "https://github.com/spf13/cobra" - rev = "de187e874d1ca382320088f8f6d76333408e5c2e" - sha256 = "091kz3xnlsgpqb90fc5nhjr4yfr8b8sjnyl0zd4wm1fgzkpw09jh" - -["github.com/spf13/jwalterweatherman"] - sumVersion = "v1.1.0" - ["github.com/spf13/jwalterweatherman".fetch] - type = "git" - url = "https://github.com/spf13/jwalterweatherman" - rev = "94f6ae3ed3bceceafa716478c5fbf8d29ca601a1" - sha256 = "1ywmkwci5zyd88ijym6f30fj5c0k2yayxarkmnazf5ybljv50q7b" - -["github.com/spf13/pflag"] - sumVersion = "v1.0.5" - ["github.com/spf13/pflag".fetch] - type = "git" - url = "https://github.com/spf13/pflag" - rev = "2e9d26c8c37aae03e3f9d4e90b7116f5accb7cab" - sha256 = "0gpmacngd0gpslnbkzi263f5ishigzgh6pbdv9hp092rnjl4nd31" - -["github.com/spf13/viper"] - sumVersion = "v1.10.1" - ["github.com/spf13/viper".fetch] - type = "git" - url = "https://github.com/spf13/viper" - rev = "f646c50b184a0bec644dd1147d6b0e57be17c7aa" - sha256 = "1gk9srmvlg1yqnsjp1a6rlwfw4p34kwr1kf7c72l25i73yfxswqc" - -["github.com/status-im/keycard-go"] - sumVersion = "v0.0.0-20190316090335-8537d3370df4" - ["github.com/status-im/keycard-go".fetch] - type = "git" - url = "https://github.com/status-im/keycard-go" - rev = "8537d3370df43a30a3d450c023783d2e43432b89" - sha256 = "15kbh04282vyb59fy9rjr533aa6vlxxh0cpa66x2qw6wb0896za1" - -["github.com/steakknife/bloomfilter"] - sumVersion = "v0.0.0-20180922174646-6819c0d2a570" - ["github.com/steakknife/bloomfilter".fetch] - type = "git" - url = "https://github.com/steakknife/bloomfilter" - rev = "6819c0d2a57025e1700378ee59b7382d71987f14" - sha256 = "1dr4pb172rwi9cxvxl23j4j8q6ybqjfzll5dd14cd398f231nk81" - -["github.com/steakknife/hamming"] - sumVersion = "v0.0.0-20180906055917-c99c65617cd3" - ["github.com/steakknife/hamming".fetch] - type = "git" - url = "https://github.com/steakknife/hamming" - rev = "c99c65617cd3d686aea8365fe563d6542f01d940" - sha256 = "03scc8fkkwpbc7p9ymlrm6wg57mzr0d6s2k2dz2gp339pllxyxjr" - -["github.com/streadway/amqp"] - sumVersion = "v1.0.0" - ["github.com/streadway/amqp".fetch] - type = "git" - url = "https://github.com/streadway/amqp" - rev = "1c71cc93ed716f9a6f4c2ae8955c25f9176d9f19" - sha256 = "0k740vmzkdv9il201x4mj0md73w30jqlmn1q7m1ng3dmi635qrlr" - -["github.com/streadway/handy"] - sumVersion = "v0.0.0-20200128134331-0f66f006fb2e" - ["github.com/streadway/handy".fetch] - type = "git" - url = "https://github.com/streadway/handy" - rev = "0f66f006fb2ebde51f4ce769641df75d602989e7" - sha256 = "03cm61ndfj6mz8kjsdb5jjka94v21fqn6nd5agnvhb7qx3fkq1y4" - -["github.com/stretchr/objx"] - sumVersion = "v0.2.0" - ["github.com/stretchr/objx".fetch] - type = "git" - url = "https://github.com/stretchr/objx" - rev = "ea4fe68685ee0d3cee7032121851b57e7494e8ea" - sha256 = "0pcdvakxgddaiwcdj73ra4da05a3q4cgwbpm2w75ycq4kzv8ij8k" - -["github.com/stretchr/testify"] - sumVersion = "v1.7.0" - ["github.com/stretchr/testify".fetch] - type = "git" - url = "https://github.com/stretchr/testify" - rev = "acba37e5db06f0093b465a7d47822bf13644b66c" - sha256 = "0ixgjsvafr3513pz3r6pmgk074s2dxkll0dadvl25gkf30rkmh10" - -["github.com/subosito/gotenv"] - sumVersion = "v1.2.0" - ["github.com/subosito/gotenv".fetch] - type = "git" - url = "https://github.com/subosito/gotenv" - rev = "2ef7124db659d49edac6aa459693a15ae36c671a" - sha256 = "0mav91j7r4arjkpq5zcf9j74f6pww8ic53x43wy7kg3ibw31yjs5" - -["github.com/syndtr/gocapability"] - sumVersion = "v0.0.0-20200815063812-42c35b437635" - ["github.com/syndtr/gocapability".fetch] - type = "git" - url = "https://github.com/syndtr/gocapability" - rev = "42c35b4376354fd554efc7ad35e0b7f94e3a0ffb" - sha256 = "00zi0k190ydlm9drnafvj9p4cf6axm858wr71pbmq1p3r94iqws4" - -["github.com/syndtr/goleveldb"] - sumVersion = "v1.0.1-0.20200815110645-5c35d600f0ca" - ["github.com/syndtr/goleveldb".fetch] - type = "git" - url = "https://github.com/syndtr/goleveldb" - rev = "5c35d600f0caac04c20d52438103f1a7aa612598" - sha256 = "0wsqybzip0khzgk4cl23ilm30jnf4yd674dkbq4c26ivak9qkmz7" - -["github.com/tecbot/gorocksdb"] - sumVersion = "v0.0.0-20211202124722-2c356d6d98e4" - vendorPath = "github.com/cosmos/gorocksdb" - ["github.com/tecbot/gorocksdb".fetch] - type = "git" - url = "https://github.com/cosmos/gorocksdb" - rev = "2c356d6d98e4364571350f330ea008765f670856" - sha256 = "11ibfqxvlc5jvwc88in7xadyahy9804bdbfrbil3h76a7mf7zc7q" - -["github.com/tendermint/btcd"] - sumVersion = "v0.1.1" - ["github.com/tendermint/btcd".fetch] - type = "git" - url = "https://github.com/tendermint/btcd" - rev = "80daadac05d1cd29571fccf27002d79667a88b58" - sha256 = "16s909z5awvqi060rdj577wzbgziyk88s53x24kv9rzc71rm99x1" - -["github.com/tendermint/crypto"] - sumVersion = "v0.0.0-20191022145703-50d29ede1e15" - ["github.com/tendermint/crypto".fetch] - type = "git" - url = "https://github.com/tendermint/crypto" - rev = "50d29ede1e15ab205c8558ad67b85596ee19d3a0" - sha256 = "0vhyxsypb2q1zpcl464hlsdpap7kc3nj6gdff53xwrln2bg1jjin" - -["github.com/tendermint/go-amino"] - sumVersion = "v0.16.0" - ["github.com/tendermint/go-amino".fetch] - type = "git" - url = "https://github.com/tendermint/go-amino" - rev = "ccb15b138dfd74282be78f5e9059387768b12918" - sha256 = "1zcms3l5fihzg8nf4vhdk18qpn1jkbm3rpkjfpskfcrgzlxk6vi5" - -["github.com/tendermint/spm"] - sumVersion = "v0.1.8" - ["github.com/tendermint/spm".fetch] - type = "git" - url = "https://github.com/tendermint/spm" - rev = "6f215802f3ec60589a81cbaa3d059f645442773c" - sha256 = "0q3jvcp7f0gja1lrn0s0cq3i1f4kfgd1mw2zjqm7y1k1q918hfjm" - -["github.com/tendermint/tendermint"] - sumVersion = "v0.34.15" - ["github.com/tendermint/tendermint".fetch] - type = "git" - url = "https://github.com/tendermint/tendermint" - rev = "41c176ccc6a75d25631d0f891efb2e19a33329dc" - sha256 = "14n12l4liyrnrzqp3zwyidy1nvianjzakk274zn1v5q5n5ynjlxw" - -["github.com/tendermint/tm-db"] - sumVersion = "v0.6.6" - ["github.com/tendermint/tm-db".fetch] - type = "git" - url = "https://github.com/tendermint/tm-db" - rev = "0e6efdda1b15ef02cdb8f66b36bac942943ab7d5" - sha256 = "1rf4x35q7vbpvx8zm8sckiasm7aim3n7qkcrgfvibwwn9jd7m4rl" - -["github.com/tidwall/gjson"] - sumVersion = "v1.6.7" - ["github.com/tidwall/gjson".fetch] - type = "git" - url = "https://github.com/tidwall/gjson" - rev = "97ec619cbe9546828dc45cb856a5938dcf3d74e1" - sha256 = "1gq689xp5bqxn17hcg8kwciakr05rz84dgd8qpiy7aqdv8iqrghq" - -["github.com/tidwall/match"] - sumVersion = "v1.0.3" - ["github.com/tidwall/match".fetch] - type = "git" - url = "https://github.com/tidwall/match" - rev = "c2f534168b739a7ec1821a33839fb2f029f26bbc" - sha256 = "1haa5p7hsjqx0ijxbypgc9c31v128mykm1g0lyymvkk3qdajvcyr" - -["github.com/tidwall/pretty"] - sumVersion = "v1.0.2" - ["github.com/tidwall/pretty".fetch] - type = "git" - url = "https://github.com/tidwall/pretty" - rev = "ef453c788d6a371829f4f9967b014b2b81856df5" - sha256 = "0bfp2nqwd7w3709lsyw2iw71hgbrnhcs1nr9n4vbari408qk2rv0" - -["github.com/tidwall/sjson"] - sumVersion = "v1.1.4" - ["github.com/tidwall/sjson".fetch] - type = "git" - url = "https://github.com/tidwall/sjson" - rev = "b547b7aea4b0c9a8ed8885f0790aea039483f337" - sha256 = "0nin7n4bfjxznkkrjb4g7clprnmkdx79hgx1rjakxqp821l6s85s" - -["github.com/tinylib/msgp"] - sumVersion = "v1.1.5" - ["github.com/tinylib/msgp".fetch] - type = "git" - url = "https://github.com/tinylib/msgp" - rev = "39957431e67861ab76dd17151171e1d086e5cff7" - sha256 = "1yi5agsmdx4q6d5g8jjbif3lfrkqjjmwqf8fkdqix78x4gs673ra" - -["github.com/tmc/grpc-websocket-proxy"] - sumVersion = "v0.0.0-20190109142713-0ad062ec5ee5" - ["github.com/tmc/grpc-websocket-proxy".fetch] - type = "git" - url = "https://github.com/tmc/grpc-websocket-proxy" - rev = "0ad062ec5ee553a48f6dbd280b7a1b5638e8a113" - sha256 = "1anw4v9wspnw9xf2z5r9w0sszwjklyanl0l85wgg6nxak9gnrqp4" - -["github.com/ttacon/chalk"] - sumVersion = "v0.0.0-20160626202418-22c06c80ed31" - ["github.com/ttacon/chalk".fetch] - type = "git" - url = "https://github.com/ttacon/chalk" - rev = "22c06c80ed312dcb6e1cf394f9634aa2c4676e22" - sha256 = "1yacf9w6vp36hkhl9lq3gk7c551jcsbs348ivv2h3lwkhznldiwl" - -["github.com/tv42/httpunix"] - sumVersion = "v0.0.0-20191220191345-2ba4b9c3382c" - ["github.com/tv42/httpunix".fetch] - type = "git" - url = "https://github.com/tv42/httpunix" - rev = "2ba4b9c3382c77e7b9ea89d00746e6111d142a22" - sha256 = "0xbwpip2hsfhd2kd878jn5ndl8y1i9658lggha4x3xb5m1rsds9w" - -["github.com/tyler-smith/go-bip39"] - sumVersion = "v1.0.2" - ["github.com/tyler-smith/go-bip39".fetch] - type = "git" - url = "https://github.com/tyler-smith/go-bip39" - rev = "5e3853c3f4e1a44df487c7efeb064ee8b43755de" - sha256 = "1nbjm9h0hbchp3rgxlnzix5hzwa474kr311yqb1dqxmvyrngaq9w" - -["github.com/ugorji/go"] - sumVersion = "v1.1.7" - ["github.com/ugorji/go".fetch] - type = "git" - url = "https://github.com/ugorji/go" - rev = "23ab95ef5dc3b70286760af84ce2327a2b64ed62" - sha256 = "068gja55kbh2iivp03x4n9dcml0rxv0k64ivkmq06si2ar1835rm" - -["github.com/ugorji/go/codec"] - sumVersion = "v1.1.7" - relPath = "codec" - ["github.com/ugorji/go/codec".fetch] - type = "git" - url = "https://github.com/ugorji/go" - rev = "23ab95ef5dc3b70286760af84ce2327a2b64ed62" - sha256 = "068gja55kbh2iivp03x4n9dcml0rxv0k64ivkmq06si2ar1835rm" - -["github.com/urfave/cli"] - sumVersion = "v1.22.1" - ["github.com/urfave/cli".fetch] - type = "git" - url = "https://github.com/urfave/cli" - rev = "c71fbcefd21552b70cd625b2c54466006e258ad7" - sha256 = "04ymak18flqlfcn8lycmg8r3931al8dvr8f1cg9n4yjaskmg72v8" - -["github.com/vishvananda/netlink"] - sumVersion = "v1.1.0" - ["github.com/vishvananda/netlink".fetch] - type = "git" - url = "https://github.com/vishvananda/netlink" - rev = "f049be6f391489d3f374498fe0c8df8449258372" - sha256 = "1vhl30p1gx636a088ls4h6a0l8jjyfvz79fr5w0qzdrg4qg9h08h" - -["github.com/vishvananda/netns"] - sumVersion = "v0.0.0-20191106174202-0a2b9b5464df" - ["github.com/vishvananda/netns".fetch] - type = "git" - url = "https://github.com/vishvananda/netns" - rev = "0a2b9b5464df8343199164a0321edf3313202f7e" - sha256 = "1k1zb7pzc4r4wicq7ncspf6zsvq298lvpsq963ibj813shg657xw" - -["github.com/vmihailenco/msgpack/v5"] - sumVersion = "v5.1.4" - ["github.com/vmihailenco/msgpack/v5".fetch] - type = "git" - url = "https://github.com/vmihailenco/msgpack" - rev = "77a6f797778061f2c9c30b13418c3a2f5cb98070" - sha256 = "109nansr75fidx3r00nb4jkc14davfzb88kdf75h6jyk06b50iaa" - -["github.com/vmihailenco/tagparser"] - sumVersion = "v0.1.2" - ["github.com/vmihailenco/tagparser".fetch] - type = "git" - url = "https://github.com/vmihailenco/tagparser" - rev = "be04d19a03d0f4739671a500012335e98ebfeb9f" - sha256 = "0418gkcds57c6g6slf8kl3ya7xp14p5y42w1gqkiqp6p98nhblqh" - -["github.com/wsddn/go-ecdh"] - sumVersion = "v0.0.0-20161211032359-48726bab9208" - ["github.com/wsddn/go-ecdh".fetch] - type = "git" - url = "https://github.com/wsddn/go-ecdh" - rev = "48726bab92085232373de4ec5c51ce7b441c63a0" - sha256 = "1rszp777snp9qvnh2giim7d42cvca5l180gq4j7clbmshnzg6c6m" - -["github.com/xiang90/probing"] - sumVersion = "v0.0.0-20190116061207-43a291ad63a2" - ["github.com/xiang90/probing".fetch] - type = "git" - url = "https://github.com/xiang90/probing" - rev = "43a291ad63a214a207fefbf03c7d9d78b703162b" - sha256 = "1z22ms16j5j42775mf31isanwx2pwr1d8wqw8006dczjv36qnz5i" - -["github.com/xordataexchange/crypt"] - sumVersion = "v0.0.3-0.20170626215501-b2862e3d0a77" - ["github.com/xordataexchange/crypt".fetch] - type = "git" - url = "https://github.com/xordataexchange/crypt" - rev = "b2862e3d0a775f18c7cfe02273500ae307b61218" - sha256 = "04q3856anpzl4gdfgmg7pbp9cx231nkz3ymq2xp27rnmmwhfxr8y" - -["github.com/ybbus/jsonrpc"] - sumVersion = "v2.1.2+incompatible" - ["github.com/ybbus/jsonrpc".fetch] - type = "git" - url = "https://github.com/ybbus/jsonrpc" - rev = "dd866631e904a5df2067d934985c5def68f391ac" - sha256 = "1k2i4q4bliqfkam4gd00729plgi6f7wa60npqpgagrlfnd4w9k4m" - -["github.com/yuin/goldmark"] - sumVersion = "v1.4.0" - ["github.com/yuin/goldmark".fetch] - type = "git" - url = "https://github.com/yuin/goldmark" - rev = "5588d92a56fe1642791cf4aa8e9eae8227cfeecd" - sha256 = "0n3xhna2rnxixjy5d7gfvgjkhddppa8hpzd8i8b68yb2l016g3qk" - -["github.com/zondax/hid"] - sumVersion = "v0.9.0" - ["github.com/zondax/hid".fetch] - type = "git" - url = "https://github.com/zondax/hid" - rev = "302fd402163c34626286195dfa9adac758334acc" - sha256 = "1wnpfn4bd86nz2v9dgb40xpz1ya66vahdkrhb1gj4jyyxdnnhqkh" - -["go.etcd.io/bbolt"] - sumVersion = "v1.3.6" - ["go.etcd.io/bbolt".fetch] - type = "git" - url = "https://github.com/etcd-io/bbolt" - rev = "685b13a4ef0053a4a38623bcebda621db6f7eaf7" - sha256 = "0pj5245d417za41j6p09fmkbv05797vykr1bi9a6rnwddh1dbs8d" - -["go.etcd.io/etcd"] - sumVersion = "v0.0.0-20191023171146-3cf2f69b5738" - ["go.etcd.io/etcd".fetch] - type = "git" - url = "https://github.com/etcd-io/etcd" - rev = "3cf2f69b5738fb702ba1a935590f36b52b18979b" - sha256 = "1w5jr8shn6whccksmpbcllcr1f8gjgh1dnix5rmnv3wwr5in5cgq" - -["go.etcd.io/etcd/api/v3"] - sumVersion = "v3.5.1" - relPath = "api" - ["go.etcd.io/etcd/api/v3".fetch] - type = "git" - url = "https://github.com/etcd-io/etcd" - rev = "d42e8589e1305d893eeec9e7db746f6f4a76c250" - sha256 = "0szqasja7mwm8glhaz9wisrr62g56hngkpf5y0f9f1frcq0wk7i2" - -["go.etcd.io/etcd/client/pkg/v3"] - sumVersion = "v3.5.1" - relPath = "client/pkg" - ["go.etcd.io/etcd/client/pkg/v3".fetch] - type = "git" - url = "https://github.com/etcd-io/etcd" - rev = "d42e8589e1305d893eeec9e7db746f6f4a76c250" - sha256 = "0szqasja7mwm8glhaz9wisrr62g56hngkpf5y0f9f1frcq0wk7i2" - -["go.etcd.io/etcd/client/v2"] - sumVersion = "v2.305.1" - relPath = "client" - ["go.etcd.io/etcd/client/v2".fetch] - type = "git" - url = "https://github.com/etcd-io/etcd" - rev = "d42e8589e1305d893eeec9e7db746f6f4a76c250" - sha256 = "0szqasja7mwm8glhaz9wisrr62g56hngkpf5y0f9f1frcq0wk7i2" - -["go.etcd.io/etcd/client/v3"] - sumVersion = "v3.5.0" - relPath = "client" - ["go.etcd.io/etcd/client/v3".fetch] - type = "git" - url = "https://github.com/etcd-io/etcd" - rev = "946a5a6f25c3b6b89408ab447852731bde6e6289" - sha256 = "1dinf1668bkpq5lff8sr4fjd7dkxw9smm1f9zcadpdz3ci3knpzg" - -["go.opencensus.io"] - sumVersion = "v0.23.0" - ["go.opencensus.io".fetch] - type = "git" - url = "https://github.com/census-instrumentation/opencensus-go" - rev = "49838f207d61097fc0ebb8aeef306913388376ca" - sha256 = "0gw4f7inf8y2ik00yfb36xganiq9rl4w2d1a41bsjqsh83ajz2km" - -["go.opentelemetry.io/proto/otlp"] - sumVersion = "v0.7.0" - relPath = "otlp" - ["go.opentelemetry.io/proto/otlp".fetch] - type = "git" - url = "https://github.com/open-telemetry/opentelemetry-proto-go" - rev = "4fc4e99f9e4387bc9890e74f757d3994ffa384ce" - sha256 = "003p1yjh48sfgq7b2k1hxn8jdpdps17zfhn427lbfpd1z7gd2cdq" - -["go.uber.org/atomic"] - sumVersion = "v1.9.0" - ["go.uber.org/atomic".fetch] - type = "git" - url = "https://github.com/uber-go/atomic" - rev = "3504dfaa1fa414923b1c8693f45d2f6931daf229" - sha256 = "187212bg6dvfwqiqqks936b6v62pkkx3zlnk5b4nz91acscc06xm" - -["go.uber.org/goleak"] - sumVersion = "v1.1.11-0.20210813005559-691160354723" - ["go.uber.org/goleak".fetch] - type = "git" - url = "https://github.com/uber-go/goleak" - rev = "691160354723362697a4dc8aa10cd4c4c072ee45" - sha256 = "1xzbvz7qkcxajp4jhmpsm12i45hskz5clj964z5x14xxndzsfj3v" - -["go.uber.org/multierr"] - sumVersion = "v1.7.0" - ["go.uber.org/multierr".fetch] - type = "git" - url = "https://github.com/uber-go/multierr" - rev = "a5cd5509686189240486545be669e1dff9b98dcf" - sha256 = "1rxnsq38i4skhvbpv891xiih4gvry5l3ph5vhgv0wz67pykvvvwa" - -["go.uber.org/tools"] - sumVersion = "v0.0.0-20190618225709-2cfd321de3ee" - ["go.uber.org/tools".fetch] - type = "git" - url = "https://github.com/uber-go/tools" - rev = "2cfd321de3ee5d5f8a5fda2521d1703478334d98" - sha256 = "0kcsg9pd3vyp5v9dz8xzd9lkpbqrlhr1rv6hg38afq6ifziw319i" - -["go.uber.org/zap"] - sumVersion = "v1.19.1" - ["go.uber.org/zap".fetch] - type = "git" - url = "https://github.com/uber-go/zap" - rev = "eaeb0fc72fd23af7969c9a9f39e51b66827507ca" - sha256 = "1v5njic01hyg6h5k8b0ma7n5jc6mjyk9ci1np8hzg0jsxnz8ly48" - -["golang.org/x/crypto"] - sumVersion = "v0.0.0-20211215165025-cf75a172585e" - ["golang.org/x/crypto".fetch] - type = "git" - url = "https://go.googlesource.com/crypto" - rev = "cf75a172585e01ce0bf0fac704ecd21d30af3fba" - sha256 = "08nvmzqxpy53avnnr6i2vbixg45wbsx44831l96xsfc9slv6w8kf" - -["golang.org/x/exp"] - sumVersion = "v0.0.0-20200331195152-e8c3332aa8e5" - ["golang.org/x/exp".fetch] - type = "git" - url = "https://go.googlesource.com/exp" - rev = "e8c3332aa8e5b8e6acb4707c3a7e5979052b20aa" - sha256 = "085mbasmshl64f2d0awrf5k0iyh1aij888cp9aa12ldzp36404rw" - -["golang.org/x/image"] - sumVersion = "v0.0.0-20190802002840-cff245a6509b" - ["golang.org/x/image".fetch] - type = "git" - url = "https://go.googlesource.com/image" - rev = "cff245a6509b8c4de022d0d5b9037c503c5989d6" - sha256 = "0hiznlkiaay30acwvvyq8g6bm32r7bc6gv47pygrcxqpapasbz84" - -["golang.org/x/lint"] - sumVersion = "v0.0.0-20210508222113-6edffad5e616" - ["golang.org/x/lint".fetch] - type = "git" - url = "https://go.googlesource.com/lint" - rev = "6edffad5e6160f5949cdefc81710b2706fbcd4f6" - sha256 = "1n7lrr3282q3li4f06afms444qy13rfd316za0drqihakwyki2jk" - -["golang.org/x/mobile"] - sumVersion = "v0.0.0-20200801112145-973feb4309de" - ["golang.org/x/mobile".fetch] - type = "git" - url = "https://go.googlesource.com/mobile" - rev = "973feb4309de5c3aad0553fc987d76abf1fa58f7" - sha256 = "0jwz7jq1cqp9x6b9kpfrmw84sg7dg5v4xaa8zdbgq14gskmjx72d" - -["golang.org/x/mod"] - sumVersion = "v0.5.0" - ["golang.org/x/mod".fetch] - type = "git" - url = "https://go.googlesource.com/mod" - rev = "0f08993efd8a8ec67e75bcccf86b0e1569b0ab0a" - sha256 = "0pl0jc5jvg7hxj4z66zg6kglnq5g7li09f3k9klwvyr4jx5dw88k" - -["golang.org/x/net"] - sumVersion = "v0.0.0-20211005001312-d4b1ae081e3b" - ["golang.org/x/net".fetch] - type = "git" - url = "https://go.googlesource.com/net" - rev = "d4b1ae081e3b66345121fd3ad754b645ae798b07" - sha256 = "0mid37a5nk85xxym49cxw9k5y9w8j8hiafgmn4igaympm8yy5dc9" - -["golang.org/x/oauth2"] - sumVersion = "v0.0.0-20211104180415-d3ed0bb246c8" - ["golang.org/x/oauth2".fetch] - type = "git" - url = "https://go.googlesource.com/oauth2" - rev = "d3ed0bb246c8d3c75b63937d9a5eecff9c74d7fe" - sha256 = "1vwkvx9kicl0sx27a41r5nfhaw3r5ni94xrvdg5mdihb0g57skwq" - -["golang.org/x/sync"] - sumVersion = "v0.0.0-20210220032951-036812b2e83c" - ["golang.org/x/sync".fetch] - type = "git" - url = "https://go.googlesource.com/sync" - rev = "036812b2e83c0ddf193dd5a34e034151da389d09" - sha256 = "1gl202py3s4gl6arkaxlf8qa6f0jyyg2f95m6f89qnfmr416h85b" - -["golang.org/x/sys"] - sumVersion = "v0.0.0-20211210111614-af8b64212486" - ["golang.org/x/sys".fetch] - type = "git" - url = "https://go.googlesource.com/sys" - rev = "af8b64212486582a9c87128a5289fc4ad7b9c922" - sha256 = "0mw8mcspjkz8f5dqfjyaia01di9aiy0hr2j1wl4xgmvw3i0r19bw" - -["golang.org/x/term"] - sumVersion = "v0.0.0-20201126162022-7de9c90e9dd1" - ["golang.org/x/term".fetch] - type = "git" - url = "https://go.googlesource.com/term" - rev = "7de9c90e9dd184706b838f536a1cbf40a296ddb7" - sha256 = "1ba252xmv6qsvf1w1gcy98mngrj0vd4inbjw0lsklqvva65nljna" - -["golang.org/x/text"] - sumVersion = "v0.3.7" - ["golang.org/x/text".fetch] - type = "git" - url = "https://go.googlesource.com/text" - rev = "383b2e75a7a4198c42f8f87833eefb772868a56f" - sha256 = "0xkw0qvfjyifdqd25y7nxdqkdh92inymw3q7841nricc9s01p4jy" - -["golang.org/x/time"] - sumVersion = "v0.0.0-20210723032227-1f47c861a9ac" - ["golang.org/x/time".fetch] - type = "git" - url = "https://go.googlesource.com/time" - rev = "1f47c861a9ac5a6e7645609f91b895398ff31642" - sha256 = "1drd4fww92m6k12bh90c59l85rl1j48vgxgax1ki3138gf3iaa33" - -["golang.org/x/tools"] - sumVersion = "v0.1.7" - ["golang.org/x/tools".fetch] - type = "git" - url = "https://go.googlesource.com/tools" - rev = "0df0ca0f43117120bd7cc900ebf765f9b799438a" - sha256 = "0nn8m2j5vz6p6azq2m5yn20qi0m8n5m439ihk7aabf6lc4lpx4g9" - -["golang.org/x/xerrors"] - sumVersion = "v0.0.0-20200804184101-5ec99f83aff1" - ["golang.org/x/xerrors".fetch] - type = "git" - url = "https://go.googlesource.com/xerrors" - rev = "5ec99f83aff198f5fbd629d6c8d8eb38a04218ca" - sha256 = "1dbzc3gmf2haazpv7cgmv97rq40g2xzwbglc17vas8dwhgwgwrzb" - -["gonum.org/v1/gonum"] - sumVersion = "v0.8.2" - ["gonum.org/v1/gonum".fetch] - type = "git" - url = "https://github.com/gonum/gonum" - rev = "5ca75a94b69bf6d4b345c50975da77d99423e91d" - sha256 = "053lzq6vrxzmiscww4lz37wy6pgk91fbv65a02mb15y6klab7f21" - -["gonum.org/v1/netlib"] - sumVersion = "v0.0.0-20190313105609-8cb42192e0e0" - ["gonum.org/v1/netlib".fetch] - type = "git" - url = "https://github.com/gonum/netlib" - rev = "8cb42192e0e0b08ed60c6c306a63d0b2ea460e51" - sha256 = "0p4kgkrjhjzy98qy2a64qr9s5vi4vs7mmvfq4iaqg1iccp47blmx" - -["gonum.org/v1/plot"] - sumVersion = "v0.0.0-20190515093506-e2840ee46a6b" - ["gonum.org/v1/plot".fetch] - type = "git" - url = "https://github.com/gonum/plot" - rev = "e2840ee46a6b612972d746f9fea9920d329a0605" - sha256 = "0373vn32i6cjch0kw7sncskyj9ngqj2qk5jn9529zblknz0yss50" - -["google.golang.org/api"] - sumVersion = "v0.63.0" - ["google.golang.org/api".fetch] - type = "git" - url = "https://github.com/googleapis/google-api-go-client" - rev = "27de32e7fe788edcd34d38cff8a7c0fe35ee4bfe" - sha256 = "1ws1lr584mgff63r9rs4g5g963vvxvds861grlqlc076aknksqs8" - -["google.golang.org/appengine"] - sumVersion = "v1.6.7" - ["google.golang.org/appengine".fetch] - type = "git" - url = "https://github.com/golang/appengine" - rev = "5d1c1d03f8703c2e81478d9a30e9afa2d3e4bd8a" - sha256 = "1wkipg7xxc0ha5p6c3bj0vpgq38l18441n5l6zxdhx0gzvz5z1hs" - -["google.golang.org/genproto"] - sumVersion = "v0.0.0-20211208223120-3a66f561d7aa" - ["google.golang.org/genproto".fetch] - type = "git" - url = "https://github.com/googleapis/go-genproto" - rev = "3a66f561d7aa4010d9715ecf4c19b19e81e19f3c" - sha256 = "1021gpy2753zffim3sh2mi723pvnnpl8mpabsyp18k1880zgxham" - -["google.golang.org/grpc"] - sumVersion = "v1.33.2" - ["google.golang.org/grpc".fetch] - type = "git" - url = "https://github.com/grpc/grpc-go" - rev = "56d63285d528c0d33f9bf8c355139d91edc047de" - sha256 = "03yz4nlf4kqbnpw48f0mvcb2f5zzy0vjd5i2iw0hrjspd0238fzk" - -["google.golang.org/grpc/cmd/protoc-gen-go-grpc"] - sumVersion = "v1.1.0" - relPath = "cmd/protoc-gen-go-grpc" - ["google.golang.org/grpc/cmd/protoc-gen-go-grpc".fetch] - type = "git" - url = "https://github.com/grpc/grpc-go" - rev = "938f6e2f7550e542bd78f3b9e8812665db109e02" - sha256 = "14rjb8j6fm07rnns3dpwgkzf3y6rmia6i9n7ns6cldc5mbf7nwi3" - -["google.golang.org/protobuf"] - sumVersion = "v1.27.1" - ["google.golang.org/protobuf".fetch] - type = "git" - url = "https://go.googlesource.com/protobuf" - rev = "b92717ecb630d4a4824b372bf98c729d87311a4d" - sha256 = "0aszb7cv8fq1m8akgd4kjyg5q7g5z9fdqnry6057ygq9r8r2yif2" - -["gopkg.in/alecthomas/kingpin.v2"] - sumVersion = "v2.2.6" - ["gopkg.in/alecthomas/kingpin.v2".fetch] - type = "git" - url = "https://gopkg.in/alecthomas/kingpin.v2" - rev = "947dcec5ba9c011838740e680966fd7087a71d0d" - sha256 = "0mndnv3hdngr3bxp7yxfd47cas4prv98sqw534mx7vp38gd88n5r" - -["gopkg.in/check.v1"] - sumVersion = "v1.0.0-20200902074654-038fdea0a05b" - ["gopkg.in/check.v1".fetch] - type = "git" - url = "https://gopkg.in/check.v1" - rev = "038fdea0a05bc030b0bfda479dc2e08d2220ec74" - sha256 = "060kpz01bfglrd7przzgq8a1fqf1x0hlkmdj6isindzwx3kfhnm4" - -["gopkg.in/cheggaaa/pb.v1"] - sumVersion = "v1.0.25" - ["gopkg.in/cheggaaa/pb.v1".fetch] - type = "git" - url = "https://gopkg.in/cheggaaa/pb.v1" - rev = "2af8bbdea9e99e83b3ac400d8f6b6d1b8cbbf338" - sha256 = "0vxqiw6f3xyv0zy3g4lksf8za0z8i0hvfpw92hqimsy84f79j3dp" - -["gopkg.in/errgo.v2"] - sumVersion = "v2.1.0" - ["gopkg.in/errgo.v2".fetch] - type = "git" - url = "https://gopkg.in/errgo.v2" - rev = "f768c5ab0476c50e978b039312180859c10fe8c0" - sha256 = "065mbihiy7q67wnql0bzl9y1kkvck5ivra68254zbih52jxwrgr2" - -["gopkg.in/fsnotify.v1"] - sumVersion = "v1.4.7" - ["gopkg.in/fsnotify.v1".fetch] - type = "git" - url = "https://gopkg.in/fsnotify.v1" - rev = "c2828203cd70a50dcccfb2761f8b1f8ceef9a8e9" - sha256 = "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g" - -["gopkg.in/gcfg.v1"] - sumVersion = "v1.2.3" - ["gopkg.in/gcfg.v1".fetch] - type = "git" - url = "https://gopkg.in/gcfg.v1" - rev = "61b2c08bc8f6068f7c5ca684372f9a6cb1c45ebe" - sha256 = "165f9wincwnkblp8x6m1f4ch4m8k4gvy5v4x4gqdpmf59kqv5y7s" - -["gopkg.in/go-playground/assert.v1"] - sumVersion = "v1.2.1" - ["gopkg.in/go-playground/assert.v1".fetch] - type = "git" - url = "https://gopkg.in/go-playground/assert.v1" - rev = "4f4dfbc7d1c48336cf93399deae81aa9067e88af" - sha256 = "1h4amgykpa0djwi619llr3g55p75ia0mi184h9s5zdl8l4rhn9pm" - -["gopkg.in/go-playground/validator.v9"] - sumVersion = "v9.29.1" - ["gopkg.in/go-playground/validator.v9".fetch] - type = "git" - url = "https://gopkg.in/go-playground/validator.v9" - rev = "556b9da3c05f2a935bc086fb5a0bb55dd8112d2d" - sha256 = "1nhh4v5ja23wgpfyqlfbly5jzpag478wxw0p1bjawp4vr9bc7gdb" - -["gopkg.in/ini.v1"] - sumVersion = "v1.66.2" - ["gopkg.in/ini.v1".fetch] - type = "git" - url = "https://gopkg.in/ini.v1" - rev = "c71eccd557feacd4fcd29f322a99e98870f908b7" - sha256 = "1q67prlvr5rv6lmpdg18qlqd3k84g73v1zriln12ipwq0ynjv0ds" - -["gopkg.in/natefinch/npipe.v2"] - sumVersion = "v2.0.0-20160621034901-c1b8fa8bdcce" - ["gopkg.in/natefinch/npipe.v2".fetch] - type = "git" - url = "https://gopkg.in/natefinch/npipe.v2" - rev = "c1b8fa8bdccecb0b8db834ee0b92fdbcfa606dd6" - sha256 = "1qplrvhks05pay169d9lph3hl7apdam4vj1kx3yzik7cphx6b24f" - -["gopkg.in/olebedev/go-duktape.v3"] - sumVersion = "v3.0.0-20200619000410-60c24ae608a6" - ["gopkg.in/olebedev/go-duktape.v3".fetch] - type = "git" - url = "https://gopkg.in/olebedev/go-duktape.v3" - rev = "60c24ae608a642bf894bed9eb53627d2384bedca" - sha256 = "13qirm5nqk6isv9n0wdi18k9wc8h1d7n6zwflhziwix7ghnr7a1q" - -["gopkg.in/resty.v1"] - sumVersion = "v1.12.0" - ["gopkg.in/resty.v1".fetch] - type = "git" - url = "https://gopkg.in/resty.v1" - rev = "fa5875c0caa5c260ab78acec5a244215a730247f" - sha256 = "062mn735rqzhha5ag07z4gz08hxzrfm2yx067jfmaaxmb6797lmp" - -["gopkg.in/tomb.v1"] - sumVersion = "v1.0.0-20141024135613-dd632973f1e7" - ["gopkg.in/tomb.v1".fetch] - type = "git" - url = "https://gopkg.in/tomb.v1" - rev = "dd632973f1e7218eb1089048e0798ec9ae7dceb8" - sha256 = "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv" - -["gopkg.in/urfave/cli.v1"] - sumVersion = "v1.20.0" - ["gopkg.in/urfave/cli.v1".fetch] - type = "git" - url = "https://gopkg.in/urfave/cli.v1" - rev = "cfb38830724cc34fedffe9a2a29fb54fa9169cd1" - sha256 = "0y6f4sbzkiiwrxbl15biivj8c7qwxnvm3zl2dd3mw4wzg4x10ygj" - -["gopkg.in/warnings.v0"] - sumVersion = "v0.1.2" - ["gopkg.in/warnings.v0".fetch] - type = "git" - url = "https://gopkg.in/warnings.v0" - rev = "ec4a0fea49c7b46c2aeb0b51aac55779c607e52b" - sha256 = "1kzj50jn708cingn7a13c2wdlzs6qv89dr2h4zj8d09647vlnd81" - -["gopkg.in/yaml.v2"] - sumVersion = "v2.4.0" - ["gopkg.in/yaml.v2".fetch] - type = "git" - url = "https://gopkg.in/yaml.v2" - rev = "7649d4548cb53a614db133b2a8ac1f31859dda8c" - sha256 = "1pbmrpj7gcws34g8vwna4i2nhm9p6235piww36436xhyaa10cldr" - -["gopkg.in/yaml.v3"] - sumVersion = "v3.0.0-20210107192922-496545a6307b" - ["gopkg.in/yaml.v3".fetch] - type = "git" - url = "https://gopkg.in/yaml.v3" - rev = "496545a6307b2a7d7a710fd516e5e16e8ab62dbc" - sha256 = "06f4lnrp494wqaygv09dggr2dwf3z2bawqhnlnnwiamg5y787k4g" - -["gotest.tools"] - sumVersion = "v2.2.0+incompatible" - ["gotest.tools".fetch] - type = "git" - url = "https://github.com/gotestyourself/gotest.tools" - rev = "7c797b5133e5460410dbb22ba779bf35e6975dea" - sha256 = "0yif3gdyckmf8i54jq0xn00kflla5rhib9sarw66ngnbl7bn9kyl" - -["honnef.co/go/tools"] - sumVersion = "v0.0.1-2020.1.4" - ["honnef.co/go/tools".fetch] - type = "git" - url = "https://github.com/dominikh/go-tools" - rev = "3c17a0d920718d58e7fdc0508f211aff0701dd6d" - sha256 = "182j3zzx1bj4j4jiamqn49v9nd3vcrx727f7i9zgcrgmiscvw3mh" - -["nhooyr.io/websocket"] - sumVersion = "v1.8.6" - ["nhooyr.io/websocket".fetch] - type = "git" - url = "https://github.com/nhooyr/websocket" - rev = "02861b474d9c29660eff53a3c424d589aaf46d1e" - sha256 = "1xw7rhy9bvk0kzqvpcvj92l9zwwnakvqwycfxm724dw7m0d84n52" - -["rsc.io/binaryregexp"] - sumVersion = "v0.2.0" - ["rsc.io/binaryregexp".fetch] - type = "git" - url = "https://github.com/rsc/binaryregexp" - rev = "857b9542aaa89cfa42a1477b43fa1f24192fe921" - sha256 = "1kar0myy85waw418zslviwx8846zj0m9cmqkxjx0fvgjdi70nc4b" - -["rsc.io/pdf"] - sumVersion = "v0.1.1" - ["rsc.io/pdf".fetch] - type = "git" - url = "https://github.com/rsc/pdf" - rev = "48d040297cebccc9e8dc43927e1b8036ecd33bfe" - sha256 = "01qjjwa8nn5a2jzd360xqg5zc8s0i2fpwcn2w2g6y2jgn9wl8x84" - -["rsc.io/quote/v3"] - sumVersion = "v3.1.0" - relPath = "v3" - ["rsc.io/quote/v3".fetch] - type = "git" - url = "https://github.com/rsc/quote" - rev = "0406d7298882187f4c75f75fa85cc808a64bcef1" - sha256 = "0nvv97hwwrl1mx5gzsbdm1ndnwpg3m7i2jb10ig9wily7zmvki0i" - -["rsc.io/sampler"] - sumVersion = "v1.3.0" - ["rsc.io/sampler".fetch] - type = "git" - url = "https://github.com/rsc/sampler" - rev = "0cc034b51e57ed7832d4c67d526f75a900996e5c" - sha256 = "0byxk2ynba50py805kcvbvjzh59l1r308i1xgyzpw6lff4xx9xjh" - -["sigs.k8s.io/yaml"] - sumVersion = "v1.2.0" - ["sigs.k8s.io/yaml".fetch] - type = "git" - url = "https://github.com/kubernetes-sigs/yaml" - rev = "9fc95527decd95bb9d28cc2eab08179b2d0f6971" - sha256 = "059a1chkd6afyvqszrx7h93k6cgik3ia92x29f5whpwi66461pzq" - -["sourcegraph.com/sourcegraph/appdash"] - sumVersion = "v0.0.0-20190731080439-ebfcffb1b5c0" - ["sourcegraph.com/sourcegraph/appdash".fetch] - type = "git" - url = "https://github.com/sourcegraph/appdash" - rev = "ebfcffb1b5c00031ce797183546746715a3cfe87" - sha256 = "1xlff68pa7jchg1xr2nkrkk94mrd0ba2z38968j7swlfyf8rkk3d" diff --git a/resources/juno/last-synced.narHash b/resources/juno/last-synced.narHash deleted file mode 100644 index 320a6790..00000000 --- a/resources/juno/last-synced.narHash +++ /dev/null @@ -1 +0,0 @@ -sha256-NDTo49w5VC84W/2F9RMOK5Wdm+qDe/YOwTSRgQ8ETCQ= diff --git a/resources/osmosis/default.nix b/resources/osmosis/default.nix deleted file mode 100644 index 27536561..00000000 --- a/resources/osmosis/default.nix +++ /dev/null @@ -1,10 +0,0 @@ -{ pkgs, osmosis-src }: -pkgs.buildGoApplication { - name = "osmosis"; - src = "${osmosis-src}"; - preCheck = '' - export HOME="$(mktemp -d)" - ''; - modules = ./go-modules.toml; -} - diff --git a/resources/osmosis/go-modules.toml b/resources/osmosis/go-modules.toml deleted file mode 100644 index 536cdc6f..00000000 --- a/resources/osmosis/go-modules.toml +++ /dev/null @@ -1,3882 +0,0 @@ -["bazil.org/fuse"] - sumVersion = "v0.0.0-20200407214033-5883e5a4b512" - ["bazil.org/fuse".fetch] - type = "git" - url = "https://github.com/bazil/fuse" - rev = "5883e5a4b512fe2e32f915b1c66a1ddfef81cb3f" - sha256 = "15w644acjhz04cpplk62h12r1k17iw61k0s4gby72lavclfcjpks" - -["cloud.google.com/go"] - sumVersion = "v0.93.3" - ["cloud.google.com/go".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "71387f0142a47d5452dffe710e9a9013d6f73fed" - sha256 = "097ngr2jaabxsj3j5ymhg2gjzjwlrymar02xjj7bl76qc6hczqzm" - -["cloud.google.com/go/bigquery"] - sumVersion = "v1.8.0" - relPath = "bigquery" - ["cloud.google.com/go/bigquery".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "0aa265f094062dbc111a6906d279fbb88a6cc761" - sha256 = "1127ha4r0xjsfl04mdb134b6kvpc6yz5bx4bba8m1jmb4k3vyg3j" - -["cloud.google.com/go/datastore"] - sumVersion = "v1.1.0" - relPath = "datastore" - ["cloud.google.com/go/datastore".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "d96ccb2ba7586bb79a416471882d347754a78ce5" - sha256 = "18f1l28665x1a8j8a5bh2i7wb2vrwj050d1g5qda50isgqaybixd" - -["cloud.google.com/go/firestore"] - sumVersion = "v1.6.0" - relPath = "firestore" - ["cloud.google.com/go/firestore".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "845edad40185ff8431ee7b0a5e0760ef886ea9e5" - sha256 = "18pabid0rayvkayzk6cb333k7zcz4khifw2ylmh0w4igswylb01z" - -["cloud.google.com/go/pubsub"] - sumVersion = "v1.3.1" - relPath = "pubsub" - ["cloud.google.com/go/pubsub".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "f4685751540ab300d8e99946847a75f7d0837e45" - sha256 = "1fxsj63d773yf6mjas5gwsq2caa6iqxmss6mms0yfdcc6krg6zkf" - -["cloud.google.com/go/storage"] - sumVersion = "v1.10.0" - relPath = "storage" - ["cloud.google.com/go/storage".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "3f2988d48e253a8e290b8c0e821284eead1131a0" - sha256 = "10fp6galzz8jwx35159xdcrwsqaz95xw78iwv1z5n67vhglwi5nf" - -["dmitri.shuralyov.com/gpu/mtl"] - sumVersion = "v0.0.0-20190408044501-666a987793e9" - ["dmitri.shuralyov.com/gpu/mtl".fetch] - type = "git" - url = "https://dmitri.shuralyov.com/gpu/mtl" - rev = "666a987793e9432fbb48592aa2f3bf3463685dfa" - sha256 = "1isd03hgiwcf2ld1rlp0plrnfz7r4i7c5q4kb6hkcd22axnmrv0z" - -["filippo.io/edwards25519"] - sumVersion = "v1.0.0-beta.2" - ["filippo.io/edwards25519".fetch] - type = "git" - url = "https://github.com/FiloSottile/edwards25519" - rev = "6944ac7e84c8dffcf51f4e1b0bc2d75a822549e5" - sha256 = "1fv6mssk1r96jbkbb413kxmcf87xz2knyx1bivdam2aa3mhxrim5" - -["github.com/99designs/keyring"] - sumVersion = "v1.1.6" - ["github.com/99designs/keyring".fetch] - type = "git" - url = "https://github.com/99designs/keyring" - rev = "68286ee5140ad1c5cce93fcc054e6cc90015b0ea" - sha256 = "08rcdqpxaa9n348q10fw40q4gxpjajkyrighykk71i7mxzwkcgwn" - -["github.com/Azure/azure-pipeline-go"] - sumVersion = "v0.2.2" - ["github.com/Azure/azure-pipeline-go".fetch] - type = "git" - url = "https://github.com/Azure/azure-pipeline-go" - rev = "232aee85e8e3a6223a11c0943f7df2ae0fac00e4" - sha256 = "1agn2nzmm1dkwggm4w7h4bnrav4n5jrl0vqbqy2s49vqlr8zirn6" - -["github.com/Azure/azure-storage-blob-go"] - sumVersion = "v0.7.0" - ["github.com/Azure/azure-storage-blob-go".fetch] - type = "git" - url = "https://github.com/Azure/azure-storage-blob-go" - rev = "3efca72bd11c050222deab57e25ea90df03b9692" - sha256 = "03lxg2v7gjl49cli818g9rnkz6818zvwhw8zm8z16y6cjmj8qmzv" - -["github.com/Azure/go-ansiterm"] - sumVersion = "v0.0.0-20210617225240-d185dfc1b5a1" - ["github.com/Azure/go-ansiterm".fetch] - type = "git" - url = "https://github.com/Azure/go-ansiterm" - rev = "d185dfc1b5a126116ea5a19e148e29d16b4574c9" - sha256 = "1y54b1fx80qlyvv2915xrryb9vcc8nnbsdkxszhxjg8bcg85ps5c" - -["github.com/Azure/go-autorest/autorest"] - sumVersion = "v0.9.0" - relPath = "autorest" - ["github.com/Azure/go-autorest/autorest".fetch] - type = "git" - url = "https://github.com/Azure/go-autorest" - rev = "85d9c035382e5537c3c76e84ca5b82c5f09825e9" - sha256 = "01fg6x3a6as2kh0km8kvjzjalq7xiqa17hnsdwawzlpnfpqgslvq" - -["github.com/Azure/go-autorest/autorest/adal"] - sumVersion = "v0.8.0" - relPath = "autorest/adal" - ["github.com/Azure/go-autorest/autorest/adal".fetch] - type = "git" - url = "https://github.com/Azure/go-autorest" - rev = "740293c019d8314ce3378d456b4327fa646297e6" - sha256 = "1ga12qs31v95010jdn8raw0mf2kvlxhfl8z856y7dn2x3fviv7r4" - -["github.com/Azure/go-autorest/autorest/date"] - sumVersion = "v0.2.0" - relPath = "autorest/date" - ["github.com/Azure/go-autorest/autorest/date".fetch] - type = "git" - url = "https://github.com/Azure/go-autorest" - rev = "5bd9621f41a06b08038be5c0522971a35316d5ef" - sha256 = "0fifmqljld72v0g545qqljmynhjgg8jm0ying35wzni0m7cg6n4y" - -["github.com/Azure/go-autorest/autorest/mocks"] - sumVersion = "v0.3.0" - relPath = "autorest/mocks" - ["github.com/Azure/go-autorest/autorest/mocks".fetch] - type = "git" - url = "https://github.com/Azure/go-autorest" - rev = "5bd9621f41a06b08038be5c0522971a35316d5ef" - sha256 = "0fifmqljld72v0g545qqljmynhjgg8jm0ying35wzni0m7cg6n4y" - -["github.com/Azure/go-autorest/logger"] - sumVersion = "v0.1.0" - relPath = "logger" - ["github.com/Azure/go-autorest/logger".fetch] - type = "git" - url = "https://github.com/Azure/go-autorest" - rev = "4bb4e3c99dd98a53e3d65a6f28aa05e2d435cb24" - sha256 = "1w94wxjjkiv8m44rcdm1af9h0ap2r8kpp9198cxpxj8d5xxkaxpz" - -["github.com/Azure/go-autorest/tracing"] - sumVersion = "v0.5.0" - relPath = "tracing" - ["github.com/Azure/go-autorest/tracing".fetch] - type = "git" - url = "https://github.com/Azure/go-autorest" - rev = "5e7a399d8bbf4953ab0c8e3167d7fd535fd74ce1" - sha256 = "0n482cjr2pk6ql6awcnn6llrnygjzakihbjaahgmylf3znwil7jp" - -["github.com/BurntSushi/toml"] - sumVersion = "v0.4.1" - ["github.com/BurntSushi/toml".fetch] - type = "git" - url = "https://github.com/BurntSushi/toml" - rev = "641c3cf2148ad11ca058c000eab0453dd5d67954" - sha256 = "0bz7q3v4m2rq5z47q81bvb4lw6ss2r1x3phgr43a6nls9x5kcpp1" - -["github.com/BurntSushi/xgb"] - sumVersion = "v0.0.0-20160522181843-27f122750802" - ["github.com/BurntSushi/xgb".fetch] - type = "git" - url = "https://github.com/BurntSushi/xgb" - rev = "27f122750802c950b2c869a5b63dafcf590ced95" - sha256 = "18lp2x8f5bljvlz0r7xn744f0c9rywjsb9ifiszqqdcpwhsa0kvj" - -["github.com/ChainSafe/go-schnorrkel"] - sumVersion = "v0.0.0-20200405005733-88cbf1b4c40d" - ["github.com/ChainSafe/go-schnorrkel".fetch] - type = "git" - url = "https://github.com/ChainSafe/go-schnorrkel" - rev = "88cbf1b4c40de64a5ea4863476c6c8ae5433c594" - sha256 = "09ncxdzy4scwmgj96lq83a40bb29nkws1y9x0nim86l9x5jmgi4b" - -["github.com/DataDog/datadog-go"] - sumVersion = "v3.2.0+incompatible" - ["github.com/DataDog/datadog-go".fetch] - type = "git" - url = "https://github.com/DataDog/datadog-go" - rev = "8bfdc335936a79b55b3e2c1080930bc5a3eb57f2" - sha256 = "1m8anll166rwcprjyv3bb0l450p35m0gzn6fs7bcd3ck2s527k7x" - -["github.com/DataDog/zstd"] - sumVersion = "v1.4.5" - ["github.com/DataDog/zstd".fetch] - type = "git" - url = "https://github.com/DataDog/zstd" - rev = "0e71ac6221c995a831bb393da70730c3d3a07091" - sha256 = "0xhgh7nzxq3lzba7w7v3w5mb4nb799v5xh5ylml0hk21ricm7g9s" - -["github.com/HdrHistogram/hdrhistogram-go"] - sumVersion = "v1.1.2" - ["github.com/HdrHistogram/hdrhistogram-go".fetch] - type = "git" - url = "https://github.com/HdrHistogram/hdrhistogram-go" - rev = "494271c4c016b36c8cee88480288f33b419cf7b0" - sha256 = "0l12j3dvljp868p1d2izpiq7ysll05fchvxij8zb8r160lmqv58r" - -["github.com/Knetic/govaluate"] - sumVersion = "v3.0.1-0.20171022003610-9aa49832a739+incompatible" - ["github.com/Knetic/govaluate".fetch] - type = "git" - url = "https://github.com/Knetic/govaluate" - rev = "9aa49832a739dcd78a5542ff189fb82c3e423116" - sha256 = "12klijhq4fckzbhv0cwygbazj6lvhmdqksha9y6jgfmwzv51kwv5" - -["github.com/Microsoft/go-winio"] - sumVersion = "v0.5.0" - ["github.com/Microsoft/go-winio".fetch] - type = "git" - url = "https://github.com/Microsoft/go-winio" - rev = "58dba89befbca5b5a2c944f84642f5b0540bcfd5" - sha256 = "123p5by5craqigydfqj0hchplcv75zz81xzj5s3ixq624qjbg0z5" - -["github.com/Nvveen/Gotty"] - sumVersion = "v0.0.0-20120604004816-cd527374f1e5" - ["github.com/Nvveen/Gotty".fetch] - type = "git" - url = "https://github.com/Nvveen/Gotty" - rev = "cd527374f1e5bff4938207604a14f2e38a9cf512" - sha256 = "1ylvr1p6p036ns3g3wdz8f92f69symshkc8j54fa6gpg4hyk0k6q" - -["github.com/OneOfOne/xxhash"] - sumVersion = "v1.2.2" - ["github.com/OneOfOne/xxhash".fetch] - type = "git" - url = "https://github.com/OneOfOne/xxhash" - rev = "6def279d2ce6c81a79dd1c1be580f03bb216fb8a" - sha256 = "1mjfhrwhvxa48rycjnqpqzm521i38h1hdyz6pdwmhd7xb8j6gwi6" - -["github.com/Shopify/sarama"] - sumVersion = "v1.19.0" - ["github.com/Shopify/sarama".fetch] - type = "git" - url = "https://github.com/Shopify/sarama" - rev = "ec843464b50d4c8b56403ec9d589cf41ea30e722" - sha256 = "0q1z3pvcd011yprwzws2s293v4cjvsszhai6vnfrahjcbsz79q0z" - -["github.com/Shopify/toxiproxy"] - sumVersion = "v2.1.4+incompatible" - ["github.com/Shopify/toxiproxy".fetch] - type = "git" - url = "https://github.com/Shopify/toxiproxy" - rev = "49b4ea27da29ae83ad3bfe7f7f090d18cbee1dc3" - sha256 = "07yhsvscdv1qjfc2fyyh9qsrrdwrrw04wadk5gaq4qddcway7vig" - -["github.com/StackExchange/wmi"] - sumVersion = "v0.0.0-20180116203802-5d049714c4a6" - ["github.com/StackExchange/wmi".fetch] - type = "git" - url = "https://github.com/StackExchange/wmi" - rev = "5d049714c4a64225c3c79a7cf7d02f7fb5b96338" - sha256 = "1slw6v1fl8i0hz4db9lph55pbhnrxhqyndq6vm27dgvpj22k29fk" - -["github.com/VictoriaMetrics/fastcache"] - sumVersion = "v1.5.7" - ["github.com/VictoriaMetrics/fastcache".fetch] - type = "git" - url = "https://github.com/VictoriaMetrics/fastcache" - rev = "2c7a92dc306a8b0402608403e97ae9c3cb3c2328" - sha256 = "19fsx8ha2kdjbsinlllz70fj96z6xhvn38x8qrmml0abmsf5z60k" - -["github.com/VividCortex/gohistogram"] - sumVersion = "v1.0.0" - ["github.com/VividCortex/gohistogram".fetch] - type = "git" - url = "https://github.com/VividCortex/gohistogram" - rev = "51564d9861991fb0ad0f531c99ef602d0f9866e6" - sha256 = "1ykpvrkri3mzc0z77kdva93ylh0bqg7jq3i024r3iv0i6bwx3rnf" - -["github.com/Workiva/go-datastructures"] - sumVersion = "v1.0.53" - ["github.com/Workiva/go-datastructures".fetch] - type = "git" - url = "https://github.com/Workiva/go-datastructures" - rev = "c466da296827daa1e1efba14c912e2802533fe7f" - sha256 = "0ilnb6rmk9y1wc3ykiw33xpxc1l3f4d56f2b3mxl5j3qxy4zhdk9" - -["github.com/Zilliqa/gozilliqa-sdk"] - sumVersion = "v1.2.1-0.20201201074141-dd0ecada1be6" - ["github.com/Zilliqa/gozilliqa-sdk".fetch] - type = "git" - url = "https://github.com/Zilliqa/gozilliqa-sdk" - rev = "dd0ecada1be6987976b9f3b557dbb4de305ecf5b" - sha256 = "06hzp118gzkbfvmzpwsqd4iky9br99lxgidgs5xnxwhzhli017w1" - -["github.com/adlio/schema"] - sumVersion = "v1.1.14" - ["github.com/adlio/schema".fetch] - type = "git" - url = "https://github.com/adlio/schema" - rev = "033e84c7bb2cfbbf5cb059403c4d5f20a984284a" - sha256 = "0kw93shxhrjaaxdwp8l5mlkh91lw9mqvw5hbd3rga3mqskv8v67g" - -["github.com/aead/siphash"] - sumVersion = "v1.0.1" - ["github.com/aead/siphash".fetch] - type = "git" - url = "https://github.com/aead/siphash" - rev = "83563a290f60225eb120d724600b9690c3fb536f" - sha256 = "01kd1z82sc4nh3nj9c25aryyp396s7jrqc2kz9d7qq1vy2hdbznc" - -["github.com/afex/hystrix-go"] - sumVersion = "v0.0.0-20180502004556-fa1af6a1f4f5" - ["github.com/afex/hystrix-go".fetch] - type = "git" - url = "https://github.com/afex/hystrix-go" - rev = "fa1af6a1f4f56e0e50d427fe901cd604d8c6fb8a" - sha256 = "0zlj0330j816flvwvis4d4vv1gigpxlghph7awbc9jb7ggf2qssn" - -["github.com/ajstarks/svgo"] - sumVersion = "v0.0.0-20180226025133-644b8db467af" - ["github.com/ajstarks/svgo".fetch] - type = "git" - url = "https://github.com/ajstarks/svgo" - rev = "644b8db467afccf19a0692a3e31a1868e4287ab8" - sha256 = "1m56v06gpdzfmw0hgjri487gdlc5w40s3pz1l7lp8hbw2l6lbjhk" - -["github.com/alecthomas/template"] - sumVersion = "v0.0.0-20190718012654-fb15b899a751" - ["github.com/alecthomas/template".fetch] - type = "git" - url = "https://github.com/alecthomas/template" - rev = "fb15b899a75114aa79cc930e33c46b577cc664b1" - sha256 = "1vlasv4dgycydh5wx6jdcvz40zdv90zz1h7836z7lhsi2ymvii26" - -["github.com/alecthomas/units"] - sumVersion = "v0.0.0-20190924025748-f65c72e2690d" - ["github.com/alecthomas/units".fetch] - type = "git" - url = "https://github.com/alecthomas/units" - rev = "f65c72e2690dc4b403c8bd637baf4611cd4c069b" - sha256 = "04jyqm7m3m01ppfy1f9xk4qvrwvs78q9zml6llyf2b3v5k6b2bbc" - -["github.com/allegro/bigcache"] - sumVersion = "v1.2.1-0.20190218064605-e24eb225f156" - ["github.com/allegro/bigcache".fetch] - type = "git" - url = "https://github.com/allegro/bigcache" - rev = "e24eb225f15679bbe54f91bfa7da3b00e59b9768" - sha256 = "1ha36q4km0i1klhpxywkfc8w77ldddl7nvqg0wl0ixy17j20na7m" - -["github.com/antihax/optional"] - sumVersion = "v1.0.0" - ["github.com/antihax/optional".fetch] - type = "git" - url = "https://github.com/antihax/optional" - rev = "c3f0ba9c1a592b971d66b2787679af55b5c58f21" - sha256 = "1ix08vl49qxr58rc6201cl97g1yznhhkwvqldslawind99js4rj0" - -["github.com/apache/thrift"] - sumVersion = "v0.13.0" - ["github.com/apache/thrift".fetch] - type = "git" - url = "https://github.com/apache/thrift" - rev = "cecee50308fc7e6f77f55b3fd906c1c6c471fa2f" - sha256 = "17ckl7p7s3ga33yrjisilsimp80ansqxl54wvpkv0j7vx2zvc13y" - -["github.com/aristanetworks/goarista"] - sumVersion = "v0.0.0-20170210015632-ea17b1a17847" - ["github.com/aristanetworks/goarista".fetch] - type = "git" - url = "https://github.com/aristanetworks/goarista" - rev = "ea17b1a17847fb6e4c0a91de0b674704693469b0" - sha256 = "02q3dhrgcbdx2826vs7gwrnw6yg9kwcyqyhrvnyf5fj5wfdqzdmp" - -["github.com/armon/circbuf"] - sumVersion = "v0.0.0-20150827004946-bbbad097214e" - ["github.com/armon/circbuf".fetch] - type = "git" - url = "https://github.com/armon/circbuf" - rev = "bbbad097214e2918d8543d5201d12bfd7bca254d" - sha256 = "1idpr0lzb2px2p3wgfq2276yl7jpaz43df6n91kf790404s4zmk3" - -["github.com/armon/consul-api"] - sumVersion = "v0.0.0-20180202201655-eb2c6b5be1b6" - ["github.com/armon/consul-api".fetch] - type = "git" - url = "https://github.com/armon/consul-api" - rev = "eb2c6b5be1b66bab83016e0b05f01b8d5496ffbd" - sha256 = "1j6fdr1sg36qy4n4xjl7brq739fpm5npq98cmvklzjc9qrx98nk9" - -["github.com/armon/go-metrics"] - sumVersion = "v0.3.9" - ["github.com/armon/go-metrics".fetch] - type = "git" - url = "https://github.com/armon/go-metrics" - rev = "f792dbc8f4b651df89dc7098fce61ca56a0a2bee" - sha256 = "0sbnzw7sdjcf2l6nsxynpv99m6sza1zyakl82by37sqhn60hj9is" - -["github.com/armon/go-radix"] - sumVersion = "v1.0.0" - ["github.com/armon/go-radix".fetch] - type = "git" - url = "https://github.com/armon/go-radix" - rev = "1a2de0c21c94309923825da3df33a4381872c795" - sha256 = "1m1k0jz9gjfrk4m7hjm7p03qmviamfgxwm2ghakqxw3hdds8v503" - -["github.com/aryann/difflib"] - sumVersion = "v0.0.0-20170710044230-e206f873d14a" - ["github.com/aryann/difflib".fetch] - type = "git" - url = "https://github.com/aryann/difflib" - rev = "e206f873d14a916d3d26c40ab667bca123f365a3" - sha256 = "00zb9sx6l6b2zq614x45zlyshl20zjhwfj8r5krw4f9y0mx3n2dm" - -["github.com/aws/aws-lambda-go"] - sumVersion = "v1.13.3" - ["github.com/aws/aws-lambda-go".fetch] - type = "git" - url = "https://github.com/aws/aws-lambda-go" - rev = "b5b7267d297de263cc5b61f8c37543daa9c95ffd" - sha256 = "049zq6gr9xdjjsxd3yimawqlh2ibfkj2434cnjm4x93ph62hppm9" - -["github.com/aws/aws-sdk-go"] - sumVersion = "v1.40.45" - ["github.com/aws/aws-sdk-go".fetch] - type = "git" - url = "https://github.com/aws/aws-sdk-go" - rev = "a05b60637f0c4b5e6ce8abb6464f838787217f54" - sha256 = "0lxkssdbi8bvx1v10477dldm86drr9cgzn8xl0jjkj0fy4dhf76i" - -["github.com/aws/aws-sdk-go-v2"] - sumVersion = "v1.9.1" - ["github.com/aws/aws-sdk-go-v2".fetch] - type = "git" - url = "https://github.com/aws/aws-sdk-go-v2" - rev = "a930583ec3794253f8fb7bc5cc099e3cda8a355f" - sha256 = "0w6jckys4mvbb4nv2xra17zmv28rp2v4ysx71k09vjgkc52nbcxm" - -["github.com/aws/aws-sdk-go-v2/service/cloudwatch"] - sumVersion = "v1.8.1" - relPath = "service/cloudwatch" - ["github.com/aws/aws-sdk-go-v2/service/cloudwatch".fetch] - type = "git" - url = "https://github.com/aws/aws-sdk-go-v2" - rev = "3ddb4d670277f173ec60e271ced9a07b605fbc0c" - sha256 = "1436fagw6fzx4adwr047sv2k99h2vbzcmhvwxjsbpb5ymmrnydjd" - -["github.com/aws/smithy-go"] - sumVersion = "v1.8.0" - ["github.com/aws/smithy-go".fetch] - type = "git" - url = "https://github.com/aws/smithy-go" - rev = "565695c30ec008cde865c535293c7111fac7ce1f" - sha256 = "1sz6bcg60k00khhs89in8vapgqzkjm26fampa79b8al887fc7qsh" - -["github.com/benbjohnson/clock"] - sumVersion = "v1.1.0" - ["github.com/benbjohnson/clock".fetch] - type = "git" - url = "https://github.com/benbjohnson/clock" - rev = "307483a2173c76d3ded778bd68214865fcf05ec8" - sha256 = "1xq55i5jsfy0lw035c479sb8dqymjgm2v6scq22nw4rzm3syfgq5" - -["github.com/beorn7/perks"] - sumVersion = "v1.0.1" - ["github.com/beorn7/perks".fetch] - type = "git" - url = "https://github.com/beorn7/perks" - rev = "37c8de3658fcb183f997c4e13e8337516ab753e6" - sha256 = "17n4yygjxa6p499dj3yaqzfww2g7528165cl13haj97hlx94dgl7" - -["github.com/bgentry/speakeasy"] - sumVersion = "v0.1.0" - ["github.com/bgentry/speakeasy".fetch] - type = "git" - url = "https://github.com/bgentry/speakeasy" - rev = "4aabc24848ce5fd31929f7d1e4ea74d3709c14cd" - sha256 = "02dfrj0wyphd3db9zn2mixqxwiz1ivnyc5xc7gkz58l5l27nzp8s" - -["github.com/bits-and-blooms/bitset"] - sumVersion = "v1.2.0" - ["github.com/bits-and-blooms/bitset".fetch] - type = "git" - url = "https://github.com/bits-and-blooms/bitset" - rev = "59de210119f50cedaa42d175dc88b6335fcf63f6" - sha256 = "0r9f7lvz6znl7yr6njg77m8hj472yhdshf1qaybwyw7j8as6c4r3" - -["github.com/bketelsen/crypt"] - sumVersion = "v0.0.4" - ["github.com/bketelsen/crypt".fetch] - type = "git" - url = "https://github.com/bketelsen/crypt" - rev = "3f0829aaee54a3e9eabd45afbf68257a5cf754f7" - sha256 = "0fyfcvy73zskd1p1mv0cn03anxkkr5gvlawsc87znqk60hdypq3v" - -["github.com/btcsuite/btcd"] - sumVersion = "v0.22.0-beta" - ["github.com/btcsuite/btcd".fetch] - type = "git" - url = "https://github.com/btcsuite/btcd" - rev = "63438c6d3661a7dec09013f7731035abdf1eb4bc" - sha256 = "0rcsd3wcs0cii8qq0573h9fi1x92i8c1gzdvifnkm2r0ndl4knla" - -["github.com/btcsuite/btclog"] - sumVersion = "v0.0.0-20170628155309-84c8d2346e9f" - ["github.com/btcsuite/btclog".fetch] - type = "git" - url = "https://github.com/btcsuite/btclog" - rev = "84c8d2346e9fc8c7b947e243b9c24e6df9fd206a" - sha256 = "02dl46wcnfpg9sqvg0ipipkpnd7lrf4fnvb9zy56jqa7mfcwc7wk" - -["github.com/btcsuite/btcutil"] - sumVersion = "v1.0.3-0.20201208143702-a53e38424cce" - ["github.com/btcsuite/btcutil".fetch] - type = "git" - url = "https://github.com/btcsuite/btcutil" - rev = "a53e38424cce1c9de2062b69364efd35fd428d15" - sha256 = "1izjvgi0d5wnknfwdnqa196hn4vj1n5ga7swbhcfsgghk2zngwr4" - -["github.com/btcsuite/go-socks"] - sumVersion = "v0.0.0-20170105172521-4720035b7bfd" - ["github.com/btcsuite/go-socks".fetch] - type = "git" - url = "https://github.com/btcsuite/go-socks" - rev = "4720035b7bfd2a9bb130b1c184f8bbe41b6f0d0f" - sha256 = "18cv2icj059lq4s99p6yh91hlas5f2gi3f1p4c10sjgwrs933d7b" - -["github.com/btcsuite/goleveldb"] - sumVersion = "v1.0.0" - ["github.com/btcsuite/goleveldb".fetch] - type = "git" - url = "https://github.com/btcsuite/goleveldb" - rev = "3fd0373267b6461dbefe91cef614278064d05465" - sha256 = "0kwllw5yflpn362xbsqphbm10qcy08v3zqs15zbyp4mkjjk0bl9z" - -["github.com/btcsuite/snappy-go"] - sumVersion = "v1.0.0" - ["github.com/btcsuite/snappy-go".fetch] - type = "git" - url = "https://github.com/btcsuite/snappy-go" - rev = "b3db38edf0a9a11a115eb6b022d8c946024a9ac0" - sha256 = "0b2536a58l6advb0ag9ywz7i5cdzclvmm3x796jydv1yrbj5x2vk" - -["github.com/btcsuite/websocket"] - sumVersion = "v0.0.0-20150119174127-31079b680792" - ["github.com/btcsuite/websocket".fetch] - type = "git" - url = "https://github.com/btcsuite/websocket" - rev = "31079b6807923eb23992c421b114992b95131b55" - sha256 = "0xpkf257ml6fpfdgv7hxxc41n0d5yxxm3njm50qpzp7j71l9cjwa" - -["github.com/btcsuite/winsvc"] - sumVersion = "v1.0.0" - ["github.com/btcsuite/winsvc".fetch] - type = "git" - url = "https://github.com/btcsuite/winsvc" - rev = "f8fb11f83f7e860e3769a08e6811d1b399a43722" - sha256 = "0nsw8y86a5hzr2a3j6ch9myrpccj5bnsgaxpgajhzfk5d31xlw1z" - -["github.com/casbin/casbin/v2"] - sumVersion = "v2.37.0" - ["github.com/casbin/casbin/v2".fetch] - type = "git" - url = "https://github.com/casbin/casbin" - rev = "74a03c56dda888c69eff820f7f684b066995fb0e" - sha256 = "09l5rmbranq6pnpnfqlbxmsw249p6w6qj97rfgxlgc5rc2a4q61p" - -["github.com/cenkalti/backoff"] - sumVersion = "v2.2.1+incompatible" - ["github.com/cenkalti/backoff".fetch] - type = "git" - url = "https://github.com/cenkalti/backoff" - rev = "5267b6dd4d2666b980a911bf235efa276222cbe2" - sha256 = "1mf4lsl3rbb8kk42x0mrhzzy4ikqy0jf6nxpzhkr02rdgwh6rjk8" - -["github.com/cenkalti/backoff/v4"] - sumVersion = "v4.1.1" - ["github.com/cenkalti/backoff/v4".fetch] - type = "git" - url = "https://github.com/cenkalti/backoff" - rev = "a78d3804c2c84f0a3178648138442c9b07665bda" - sha256 = "08c28226q612i1pv83161y57qh16631vpc51ai9f76qfrzsy946z" - -["github.com/census-instrumentation/opencensus-proto"] - sumVersion = "v0.2.1" - ["github.com/census-instrumentation/opencensus-proto".fetch] - type = "git" - url = "https://github.com/census-instrumentation/opencensus-proto" - rev = "d89fa54de508111353cb0b06403c00569be780d8" - sha256 = "19fcx3sc99i5dsklny6r073z5j20vlwn2xqm6di1q3b1xwchzqfj" - -["github.com/cespare/cp"] - sumVersion = "v0.1.0" - ["github.com/cespare/cp".fetch] - type = "git" - url = "https://github.com/cespare/cp" - rev = "165db2f241fd235aec29ba6d9b1ccd5f1c14637c" - sha256 = "1x76x985q9av29smybpc3g4az2qjmzqw181vp9z38wpbips31nm9" - -["github.com/cespare/xxhash"] - sumVersion = "v1.1.0" - ["github.com/cespare/xxhash".fetch] - type = "git" - url = "https://github.com/cespare/xxhash" - rev = "569f7c8abf1f58d9043ab804d364483cb1c853b6" - sha256 = "1qyzlcdcayavfazvi03izx83fvip8h36kis44zr2sg7xf6sx6l4x" - -["github.com/cespare/xxhash/v2"] - sumVersion = "v2.1.2" - ["github.com/cespare/xxhash/v2".fetch] - type = "git" - url = "https://github.com/cespare/xxhash" - rev = "e7a6b52374f7e2abfb8abb27249d53a1997b09a7" - sha256 = "1f3wyr9msnnz94szrkmnfps9wm40s5sp9i4ak0kl92zcrkmpy29a" - -["github.com/checkpoint-restore/go-criu/v5"] - sumVersion = "v5.0.0" - ["github.com/checkpoint-restore/go-criu/v5".fetch] - type = "git" - url = "https://github.com/checkpoint-restore/go-criu" - rev = "885cc36edb02fc5afeed0759885b473c16d249d8" - sha256 = "07dal5a9y43azkkh61jf6s81h7anbl17drkh2mal9mzcsi8wa2z8" - -["github.com/chzyer/logex"] - sumVersion = "v1.1.10" - ["github.com/chzyer/logex".fetch] - type = "git" - url = "https://github.com/chzyer/logex" - rev = "cd112f618178aaaf4ea8592c8839f5276145d9cf" - sha256 = "08pbjj3wx9acavlwyr055isa8a5hnmllgdv5k6ra60l5y1brmlq4" - -["github.com/chzyer/readline"] - sumVersion = "v0.0.0-20180603132655-2972be24d48e" - ["github.com/chzyer/readline".fetch] - type = "git" - url = "https://github.com/chzyer/readline" - rev = "2972be24d48e78746da79ba8e24e8b488c9880de" - sha256 = "104q8dazj8yf6b089jjr82fy9h1g80zyyzvp3g8b44a7d8ngjj6r" - -["github.com/chzyer/test"] - sumVersion = "v0.0.0-20180213035817-a1ea475d72b1" - ["github.com/chzyer/test".fetch] - type = "git" - url = "https://github.com/chzyer/test" - rev = "a1ea475d72b168a29f44221e0ad031a842642302" - sha256 = "0rns2aqk22i9xsgyap0pq8wi4cfaxsri4d9q6xxhhyma8jjsnj2k" - -["github.com/cilium/ebpf"] - sumVersion = "v0.6.2" - ["github.com/cilium/ebpf".fetch] - type = "git" - url = "https://github.com/cilium/ebpf" - rev = "ca492085341e0e917f48ec30704d5054c5d42ca8" - sha256 = "0x64sg0kyc8bbsp75dpv8g2jfmpdldsshf9ni49jh6rgsnnqhpf8" - -["github.com/circonus-labs/circonus-gometrics"] - sumVersion = "v2.3.1+incompatible" - ["github.com/circonus-labs/circonus-gometrics".fetch] - type = "git" - url = "https://github.com/circonus-labs/circonus-gometrics" - rev = "9eb673b3d5f6bf1c932ae7596831eefb0c0c3c2f" - sha256 = "0s2wir711h0k2h8xsypgpzshccnx8jkwjfni7n32l7wd8yng9ngs" - -["github.com/circonus-labs/circonusllhist"] - sumVersion = "v0.1.3" - ["github.com/circonus-labs/circonusllhist".fetch] - type = "git" - url = "https://github.com/circonus-labs/circonusllhist" - rev = "87d4d00b35adeefe4911ece727838749e0fab113" - sha256 = "127js92p5gx84vfj3vdmf7nn6dmqmkrxg927z0jh91fdkipmmv3i" - -["github.com/clbanning/mxj"] - sumVersion = "v1.8.4" - ["github.com/clbanning/mxj".fetch] - type = "git" - url = "https://github.com/clbanning/mxj" - rev = "b0d71e6effe1addc982453290a91f15ba0a50922" - sha256 = "13qlrycdp63q1v8sdpv6n720b6h6jpg58r38ldg4a70iv1wg7s9g" - -["github.com/clbanning/x2j"] - sumVersion = "v0.0.0-20191024224557-825249438eec" - ["github.com/clbanning/x2j".fetch] - type = "git" - url = "https://github.com/clbanning/x2j" - rev = "825249438eec392bc87b980fb635b336e496a888" - sha256 = "1khqy1m22vnyw0x24i4bwd37zvgzj25q139mh79bddj1rw5hf7hy" - -["github.com/cloudflare/cloudflare-go"] - sumVersion = "v0.10.2-0.20190916151808-a80f83b9add9" - ["github.com/cloudflare/cloudflare-go".fetch] - type = "git" - url = "https://github.com/cloudflare/cloudflare-go" - rev = "a80f83b9add9d67ca4098ccbf42cd865ebb36ffb" - sha256 = "07q34xpgw1p091v2mmf64s2lx1gi7wxn7mnzr9182sxa7xp0bj52" - -["github.com/cncf/udpa/go"] - sumVersion = "v0.0.0-20191209042840-269d4d468f6f" - relPath = "go" - ["github.com/cncf/udpa/go".fetch] - type = "git" - url = "https://github.com/cncf/udpa" - rev = "269d4d468f6f798d803d140c3016ed6fc6b735c5" - sha256 = "0i1jiaw2k3hlwwmg4hap81vb4s1p25xp9kdfww37v0fbgjariccs" - -["github.com/cockroachdb/datadriven"] - sumVersion = "v0.0.0-20190809214429-80d97fb3cbaa" - ["github.com/cockroachdb/datadriven".fetch] - type = "git" - url = "https://github.com/cockroachdb/datadriven" - rev = "80d97fb3cbaa752564320702f409fdb2ef3da0ef" - sha256 = "0rvavka9zhri6r50n8fy98247fl5vycb1hffjrhshsicjv1frmlp" - -["github.com/codahale/hdrhistogram"] - sumVersion = "v0.0.0-20161010025455-3a0bb77429bd" - ["github.com/codahale/hdrhistogram".fetch] - type = "git" - url = "https://github.com/codahale/hdrhistogram" - rev = "3a0bb77429bd3a61596f5e8a3172445844342120" - sha256 = "1zampgfjbxy192cbwdi7g86l1idxaam96d834wncnpfdwgh5kl57" - -["github.com/coinbase/rosetta-sdk-go"] - sumVersion = "v0.6.10" - ["github.com/coinbase/rosetta-sdk-go".fetch] - type = "git" - url = "https://github.com/coinbase/rosetta-sdk-go" - rev = "9ba330f0a51ab41c1c8738a040eb2b28894b82d9" - sha256 = "0idsqyxjdvb2j7h97g5jyr7nniphwcd8pjgw969fvrg08rjm7qr7" - -["github.com/confio/ics23/go"] - sumVersion = "v0.6.6" - relPath = "go" - ["github.com/confio/ics23/go".fetch] - type = "git" - url = "https://github.com/confio/ics23" - rev = "6cf2f712b5ecccf0a138c29a77b726d57bdaad51" - sha256 = "0r1vk5lvjfri57hd5dk75dfiyzz57qaljshw6sr80aj5v8krzxsn" - -["github.com/containerd/console"] - sumVersion = "v1.0.2" - ["github.com/containerd/console".fetch] - type = "git" - url = "https://github.com/containerd/console" - rev = "2f1e3d2b6afd18e8b2077816c711205a0b4d8769" - sha256 = "0rxwgq578hphs2ldx1gg6c9fq1qm8rgqfx3vgi2sbrsmxn6m2438" - -["github.com/containerd/continuity"] - sumVersion = "v0.2.0" - ["github.com/containerd/continuity".fetch] - type = "git" - url = "https://github.com/containerd/continuity" - rev = "7e9eee85bd9966ac84b134cab592e8fa37ff3e8a" - sha256 = "0pbhzxa6fjg2dcksl3bwbzi9nvbbl1q061hc4ls2nhg4kypma1d0" - -["github.com/coreos/bbolt"] - sumVersion = "v1.3.2" - ["github.com/coreos/bbolt".fetch] - type = "git" - url = "https://github.com/coreos/bbolt" - rev = "63597a96ec0ad9e6d43c3fc81e809909e0237461" - sha256 = "13d5l6p6c5wvkr6vn9hkhz9c593qifn7fgx0hg4d6jcvg1y0bnm2" - -["github.com/coreos/etcd"] - sumVersion = "v3.3.10+incompatible" - ["github.com/coreos/etcd".fetch] - type = "git" - url = "https://github.com/coreos/etcd" - rev = "27fc7e2296f506182f58ce846e48f36b34fe6842" - sha256 = "1x2ii1hj8jraba8rbxz6dmc03y3sjxdnzipdvg6fywnlq1f3l3wl" - -["github.com/coreos/go-etcd"] - sumVersion = "v2.0.0+incompatible" - ["github.com/coreos/go-etcd".fetch] - type = "git" - url = "https://github.com/coreos/go-etcd" - rev = "f02171fbd43c7b9b53ce8679b03235a1ef3c7b12" - sha256 = "1xb34hzaa1lkbq5vkzy9vcz6gqwj7hp6cdbvyack2bf28dwn33jj" - -["github.com/coreos/go-semver"] - sumVersion = "v0.3.0" - ["github.com/coreos/go-semver".fetch] - type = "git" - url = "https://github.com/coreos/go-semver" - rev = "e214231b295a8ea9479f11b70b35d5acf3556d9b" - sha256 = "0770h1mpig2j5sbiha3abnwaw8p6dg9i87r8pc7cf6m4kwml3sc9" - -["github.com/coreos/go-systemd"] - sumVersion = "v0.0.0-20190321100706-95778dfbb74e" - ["github.com/coreos/go-systemd".fetch] - type = "git" - url = "https://github.com/coreos/go-systemd" - rev = "95778dfbb74eb7e4dbaf43bf7d71809650ef8076" - sha256 = "1s3bg9p78wkixn2bqb2p23wbsqfg949ml6crw2b498s71mwh8rcf" - -["github.com/coreos/go-systemd/v22"] - sumVersion = "v22.3.2" - ["github.com/coreos/go-systemd/v22".fetch] - type = "git" - url = "https://github.com/coreos/go-systemd" - rev = "777e73a89cef78631ccaa97f53a9bae67e166186" - sha256 = "1ndi86b8va84ha93njqgafypz4di7yxfd5r5kf1r0s3y3ghcjajq" - -["github.com/coreos/pkg"] - sumVersion = "v0.0.0-20180928190104-399ea9e2e55f" - ["github.com/coreos/pkg".fetch] - type = "git" - url = "https://github.com/coreos/pkg" - rev = "399ea9e2e55f791b6e3d920860dbecb99c3692f0" - sha256 = "0nxbn0m7lr4dg0yrwnvlkfiyg3ndv8vdpssjx7b714nivpc6ar0y" - -["github.com/cosmos/cosmos-sdk"] - sumVersion = "v0.43.0-rc3.0.20220113004200-25c21881e470" - vendorPath = "github.com/osmosis-labs/cosmos-sdk" - ["github.com/cosmos/cosmos-sdk".fetch] - type = "git" - url = "https://github.com/osmosis-labs/cosmos-sdk" - rev = "25c21881e4709eb4a6c38ba25a2b5251c1bd390c" - sha256 = "0wc5kqhfwl5w2d2bnlcnfny64wffpyzgd724l2ngin6mwqpv7agl" - -["github.com/cosmos/go-bip39"] - sumVersion = "v1.0.0" - ["github.com/cosmos/go-bip39".fetch] - type = "git" - url = "https://github.com/cosmos/go-bip39" - rev = "3027fe585f89a39da9b7389bd4e3482e056f6d3f" - sha256 = "0q063bsalxffq41l3f6xlr50xa2985liw6y5niiwnjysdc5rlva2" - -["github.com/cosmos/iavl"] - sumVersion = "v0.17.2" - ["github.com/cosmos/iavl".fetch] - type = "git" - url = "https://github.com/cosmos/iavl" - rev = "72b6c23262c6f36f995a226d607dab73893488b9" - sha256 = "1fdj0nzspd27xhv6m8jrgpyyg9x5nkjclhv5bbkmp762r2vb66ys" - -["github.com/cosmos/ibc-go/v2"] - sumVersion = "v2.0.2-osmo" - vendorPath = "github.com/osmosis-labs/ibc-go/v2" - ["github.com/cosmos/ibc-go/v2".fetch] - type = "git" - url = "https://github.com/osmosis-labs/ibc-go" - rev = "7ba178d396714455b1308dec4d657fed258b6aef" - sha256 = "00rjihik05405nbq900qc08qx99cfdxa5ix25m6hzcrgyk45d9x6" - -["github.com/cosmos/ledger-cosmos-go"] - sumVersion = "v0.11.1" - ["github.com/cosmos/ledger-cosmos-go".fetch] - type = "git" - url = "https://github.com/cosmos/ledger-cosmos-go" - rev = "c03f491cbf1740e5ec7919683019c2c84d9fbc10" - sha256 = "0c584nig16mz1i5w1pp741q1ymb1ln70kvxkv3l62rkdymbbwn6a" - -["github.com/cosmos/ledger-go"] - sumVersion = "v0.9.2" - ["github.com/cosmos/ledger-go".fetch] - type = "git" - url = "https://github.com/cosmos/ledger-go" - rev = "1c99b41f1877b58e3517ef93012cc76fe5cd335b" - sha256 = "10vnj13c8diq3bxvf2m46s8ifj4fj1iwsw5hg7i1h55h1v83x0ni" - -["github.com/cpuguy83/go-md2man"] - sumVersion = "v1.0.10" - ["github.com/cpuguy83/go-md2man".fetch] - type = "git" - url = "https://github.com/cpuguy83/go-md2man" - rev = "7762f7e404f8416dfa1d9bb6a8c192aa9acb4d19" - sha256 = "1bqkf2bvy1dns9zd24k81mh2p1zxsx2nhq5cj8dz2vgkv1xkh60i" - -["github.com/cpuguy83/go-md2man/v2"] - sumVersion = "v2.0.0" - ["github.com/cpuguy83/go-md2man/v2".fetch] - type = "git" - url = "https://github.com/cpuguy83/go-md2man" - rev = "f79a8a8ca69da163eee19ab442bedad7a35bba5a" - sha256 = "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv" - -["github.com/creack/pty"] - sumVersion = "v1.1.9" - ["github.com/creack/pty".fetch] - type = "git" - url = "https://github.com/creack/pty" - rev = "3a6a957789163cacdfe0e291617a1c8e80612c11" - sha256 = "1v52599qq76dwq742mffakzj6mxqqccv2szn3hjicjld56nmd2d3" - -["github.com/cyphar/filepath-securejoin"] - sumVersion = "v0.2.2" - ["github.com/cyphar/filepath-securejoin".fetch] - type = "git" - url = "https://github.com/cyphar/filepath-securejoin" - rev = "a261ee33d7a517f054effbf451841abaafe3e0fd" - sha256 = "0id32zjb92wm569m29nfrzz5mw9z1glr3klayr6j134pp4h1sgq4" - -["github.com/danieljoos/wincred"] - sumVersion = "v1.0.2" - ["github.com/danieljoos/wincred".fetch] - type = "git" - url = "https://github.com/danieljoos/wincred" - rev = "b892d337201d1400370ebf4fa919941c9ea222ee" - sha256 = "1ym8mygjrf3rw1qka9irw76b2yisr2l5pq2w581s40yldnbfq4lc" - -["github.com/davecgh/go-spew"] - sumVersion = "v1.1.1" - ["github.com/davecgh/go-spew".fetch] - type = "git" - url = "https://github.com/davecgh/go-spew" - rev = "8991bc29aa16c548c550c7ff78260e27b9ab7c73" - sha256 = "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y" - -["github.com/deckarep/golang-set"] - sumVersion = "v0.0.0-20180603214616-504e848d77ea" - ["github.com/deckarep/golang-set".fetch] - type = "git" - url = "https://github.com/deckarep/golang-set" - rev = "504e848d77ea4752b3057b8fb46da0e7f746ccf3" - sha256 = "0n0dgz82vvwpxh2fp3d9ciawzrwv0w3hsnkk4y7z64pxp27r4k7n" - -["github.com/decred/dcrd/lru"] - sumVersion = "v1.0.0" - relPath = "lru" - ["github.com/decred/dcrd/lru".fetch] - type = "git" - url = "https://github.com/decred/dcrd" - rev = "5c3e0d6454001c8d14fcf06be94381d93991aaea" - sha256 = "0m2mxrkbnr4dfan9ljxq9dd5hhqmpx5n9pd4hnwn5mlj4zgv018a" - -["github.com/desertbit/timer"] - sumVersion = "v0.0.0-20180107155436-c41aec40b27f" - ["github.com/desertbit/timer".fetch] - type = "git" - url = "https://github.com/desertbit/timer" - rev = "c41aec40b27f0eeb2b94300fffcd624c69b02990" - sha256 = "1jsy04ga79xbdfn0xqzs7q8gyh2sz9jpfqdsb210m6188yscxck9" - -["github.com/dgraph-io/badger/v2"] - sumVersion = "v2.2007.3" - ["github.com/dgraph-io/badger/v2".fetch] - type = "git" - url = "https://github.com/dgraph-io/badger" - rev = "166e07594bd30ef24518399095331147375f57e3" - sha256 = "0ng56plsk55krv7n03bjnnsmrf7r5npw4binr2p2p3ijyvi723g4" - -["github.com/dgraph-io/ristretto"] - sumVersion = "v0.0.3" - ["github.com/dgraph-io/ristretto".fetch] - type = "git" - url = "https://github.com/dgraph-io/ristretto" - rev = "bcb54d096f2303ce80960e125b5991ac4d6325c3" - sha256 = "1v29j6b0r87pf5dwsxi3rxa8yavkl3h79i63rbddfd42p2jyssyg" - -["github.com/dgrijalva/jwt-go"] - sumVersion = "v3.2.0+incompatible" - ["github.com/dgrijalva/jwt-go".fetch] - type = "git" - url = "https://github.com/dgrijalva/jwt-go" - rev = "06ea1031745cb8b3dab3f6a236daf2b0aa468b7e" - sha256 = "08m27vlms74pfy5z79w67f9lk9zkx6a9jd68k3c4msxy75ry36mp" - -["github.com/dgryski/go-farm"] - sumVersion = "v0.0.0-20200201041132-a6ae2369ad13" - ["github.com/dgryski/go-farm".fetch] - type = "git" - url = "https://github.com/dgryski/go-farm" - rev = "a6ae2369ad13dc757768086f0cb902728c7e03e5" - sha256 = "1qbz4a4fv3853ix974x02q1129kc4xxf0c92ib5sdpsq04zjbqv8" - -["github.com/dgryski/go-sip13"] - sumVersion = "v0.0.0-20181026042036-e10d5fee7954" - ["github.com/dgryski/go-sip13".fetch] - type = "git" - url = "https://github.com/dgryski/go-sip13" - rev = "e10d5fee79544bd84105c9329adcc7b745fd588c" - sha256 = "15fyibfas209ljz3f7g07kdmfbl3hhyd9n5n7aq5n5p9m5mn41d6" - -["github.com/dlclark/regexp2"] - sumVersion = "v1.2.0" - ["github.com/dlclark/regexp2".fetch] - type = "git" - url = "https://github.com/dlclark/regexp2" - rev = "92c702aa5812963ef9193a9624191932d44073d7" - sha256 = "011l1prsywvhhi0yc7qmpsca1cwavmawyyld5kjzi0ff9ghvj4ng" - -["github.com/docker/docker"] - sumVersion = "v1.4.2-0.20180625184442-8e610b2b55bf" - ["github.com/docker/docker".fetch] - type = "git" - url = "https://github.com/docker/docker" - rev = "8e610b2b55bfd1bfa9436ab110d311f5e8a74dcb" - sha256 = "00d27aj6c2vi9q0djy9pqk3h8fqp066vffqckil43qq1c5b83c1j" - -["github.com/docker/go-connections"] - sumVersion = "v0.4.0" - ["github.com/docker/go-connections".fetch] - type = "git" - url = "https://github.com/docker/go-connections" - rev = "7395e3f8aa162843a74ed6d48e79627d9792ac55" - sha256 = "0mv6f6b5nljc17dmwmc28hc0y11pqglz7x0d2mjrwdmfxf64hwqq" - -["github.com/docker/go-units"] - sumVersion = "v0.4.0" - ["github.com/docker/go-units".fetch] - type = "git" - url = "https://github.com/docker/go-units" - rev = "519db1ee28dcc9fd2474ae59fca29a810482bfb1" - sha256 = "0k8gja8ql4pqg5rzmqvka42vjfs6rzablak87whcnqba6qxpimvz" - -["github.com/dop251/goja"] - sumVersion = "v0.0.0-20200721192441-a695b0cdd498" - ["github.com/dop251/goja".fetch] - type = "git" - url = "https://github.com/dop251/goja" - rev = "a695b0cdd4987b22f979a6f4d4ea30689058441a" - sha256 = "1s9358a30gmmbizvavd977n1zyla46bpxb2ymmr6qmmixw8ry4zv" - -["github.com/dustin/go-humanize"] - sumVersion = "v1.0.0" - ["github.com/dustin/go-humanize".fetch] - type = "git" - url = "https://github.com/dustin/go-humanize" - rev = "9f541cc9db5d55bce703bd99987c9d5cb8eea45e" - sha256 = "1kqf1kavdyvjk7f8kx62pnm7fbypn9z1vbf8v2qdh3y7z7a0cbl3" - -["github.com/dvsekhvalnov/jose2go"] - sumVersion = "v0.0.0-20200901110807-248326c1351b" - ["github.com/dvsekhvalnov/jose2go".fetch] - type = "git" - url = "https://github.com/dvsekhvalnov/jose2go" - rev = "248326c1351b716b2820b01a49d53837bfd9ac59" - sha256 = "06zj4n96pa5lnx8pxjhn3vis01fjklhsdqbcbqdv9m4kc7qip27s" - -["github.com/dvyukov/go-fuzz"] - sumVersion = "v0.0.0-20200318091601-be3528f3a813" - ["github.com/dvyukov/go-fuzz".fetch] - type = "git" - url = "https://github.com/dvyukov/go-fuzz" - rev = "be3528f3a81351d8a438aed216130e1e7da39f7c" - sha256 = "1sxl62r8c13p4sm60c77mzcn6dlxbbk6c2nmic6j8z55dx4nlg1a" - -["github.com/eapache/go-resiliency"] - sumVersion = "v1.1.0" - ["github.com/eapache/go-resiliency".fetch] - type = "git" - url = "https://github.com/eapache/go-resiliency" - rev = "ea41b0fad31007accc7f806884dcdf3da98b79ce" - sha256 = "1zmgw3c4w5r6m2r340n4jc5l5ll3m3nbszqrmrgbqc2xixxyk2gx" - -["github.com/eapache/go-xerial-snappy"] - sumVersion = "v0.0.0-20180814174437-776d5712da21" - ["github.com/eapache/go-xerial-snappy".fetch] - type = "git" - url = "https://github.com/eapache/go-xerial-snappy" - rev = "776d5712da21bc4762676d614db1d8a64f4238b0" - sha256 = "0ncc41dv7xwb1znyzmzh7cvs6j5fzz0f1n8h1v3grl9ma6s1si9d" - -["github.com/eapache/queue"] - sumVersion = "v1.1.0" - ["github.com/eapache/queue".fetch] - type = "git" - url = "https://github.com/eapache/queue" - rev = "44cc805cf13205b55f69e14bcb69867d1ae92f98" - sha256 = "07dp54n94gn3gsvdcki56yqh7py7wqqigxbamhxwgbr05n61fqyg" - -["github.com/edsrzf/mmap-go"] - sumVersion = "v1.0.0" - ["github.com/edsrzf/mmap-go".fetch] - type = "git" - url = "https://github.com/edsrzf/mmap-go" - rev = "188cc3b666ba704534fa4f96e9e61f21f1e1ba7c" - sha256 = "0ajmkk5cj6xmbngx3nhar7672i2vrkwpnbv1f26i5p4f5aydhl4k" - -["github.com/enigmampc/btcutil"] - sumVersion = "v1.0.3-0.20200723161021-e2fb6adb2a25" - ["github.com/enigmampc/btcutil".fetch] - type = "git" - url = "https://github.com/enigmampc/btcutil" - rev = "e2fb6adb2a25f868283c4f243c873ad6b4894974" - sha256 = "0r2gf20acxnrcrch57hvgg8qp8ic96w6bx0j080cfya04xib3dxv" - -["github.com/envoyproxy/go-control-plane"] - sumVersion = "v0.9.4" - ["github.com/envoyproxy/go-control-plane".fetch] - type = "git" - url = "https://github.com/envoyproxy/go-control-plane" - rev = "ba8e577f987f6676343cac84525b92ed1b2d86fe" - sha256 = "0m0crzx70lp7vz13v20wxb1fcfdnzp7h3mkh3bn6a8mbfz6w5asj" - -["github.com/envoyproxy/protoc-gen-validate"] - sumVersion = "v0.1.0" - ["github.com/envoyproxy/protoc-gen-validate".fetch] - type = "git" - url = "https://github.com/envoyproxy/protoc-gen-validate" - rev = "9eff07ddfcb4001aa1aab280648153f46e1a8ddc" - sha256 = "0kxd3wwh3xwqk0r684hsy281xq4y71cd11d4q2hspcjbnlbwh7cy" - -["github.com/ethereum/go-ethereum"] - sumVersion = "v1.9.25" - ["github.com/ethereum/go-ethereum".fetch] - type = "git" - url = "https://github.com/ethereum/go-ethereum" - rev = "e7872729012a4871397307b12cc3f4772ffcbec6" - sha256 = "1gilb29gcjw8x3s9krbq9cf6kzvq5cvkad4wc20g91a3i2hd7daf" - -["github.com/facebookgo/ensure"] - sumVersion = "v0.0.0-20200202191622-63f1cf65ac4c" - ["github.com/facebookgo/ensure".fetch] - type = "git" - url = "https://github.com/facebookgo/ensure" - rev = "63f1cf65ac4cf1f4bd7e93292149a456001b0e0b" - sha256 = "05vi49g2967i5awcb1z69i2n5b5hwn06682kw90x81hbxlr0px36" - -["github.com/facebookgo/stack"] - sumVersion = "v0.0.0-20160209184415-751773369052" - ["github.com/facebookgo/stack".fetch] - type = "git" - url = "https://github.com/facebookgo/stack" - rev = "751773369052141c013c6e827a71e8f35c07879c" - sha256 = "07yr05mz7h007ldpij90zjflwgixp148sbyrdlh1fj5bikr4p8m3" - -["github.com/facebookgo/subset"] - sumVersion = "v0.0.0-20200203212716-c811ad88dec4" - ["github.com/facebookgo/subset".fetch] - type = "git" - url = "https://github.com/facebookgo/subset" - rev = "c811ad88dec4edb3d7af0a88b34e6865d7460ba2" - sha256 = "1sjczgmq26mgqvh7267saypnn4sfdjx467wsm1pgdhyss77mc650" - -["github.com/fatih/color"] - sumVersion = "v1.12.0" - ["github.com/fatih/color".fetch] - type = "git" - url = "https://github.com/fatih/color" - rev = "cf452350f542986d689fb53db88dbb0212f141db" - sha256 = "0r6r4vh9aiz8ny2whvpq288x8shkyvpj38g5pqw5840ryq38chig" - -["github.com/felixge/httpsnoop"] - sumVersion = "v1.0.1" - ["github.com/felixge/httpsnoop".fetch] - type = "git" - url = "https://github.com/felixge/httpsnoop" - rev = "33ec42cfe005395fb4cc4b296781f65d7ffef2c3" - sha256 = "0ncd8lar5zxiwjhsp315s4hsl4bhnm271h49jhyxc66r5yffgmac" - -["github.com/fjl/memsize"] - sumVersion = "v0.0.0-20180418122429-ca190fb6ffbc" - ["github.com/fjl/memsize".fetch] - type = "git" - url = "https://github.com/fjl/memsize" - rev = "ca190fb6ffbc076ff49197b7168a760f30182d2e" - sha256 = "02vz4mfsajpsjk9nwrb6djs5zd9f70iqxf6z3x7h7kq5lqc2wfjc" - -["github.com/fogleman/gg"] - sumVersion = "v1.2.1-0.20190220221249-0403632d5b90" - ["github.com/fogleman/gg".fetch] - type = "git" - url = "https://github.com/fogleman/gg" - rev = "0403632d5b905943a1c2a5b2763aaecd568467ec" - sha256 = "1nkldjghbqnzj2djfaxhiv35kk341xhcrj9m2dwq65v684iqkk8n" - -["github.com/fortytw2/leaktest"] - sumVersion = "v1.3.0" - ["github.com/fortytw2/leaktest".fetch] - type = "git" - url = "https://github.com/fortytw2/leaktest" - rev = "9a23578d06a26ec1b47bfc8965bf5e7011df8bd6" - sha256 = "0487zghyxqzk6zdbhd2j074pcc2l15l4sfg5clrjqwfbql7519wx" - -["github.com/franela/goblin"] - sumVersion = "v0.0.0-20210519012713-85d372ac71e2" - ["github.com/franela/goblin".fetch] - type = "git" - url = "https://github.com/franela/goblin" - rev = "85d372ac71e2957da63d038d375294cae456e90b" - sha256 = "0c5z3kmrzry5pvax1g9npbfg8knjwq9sy113ybm6rb14kmdpnmzm" - -["github.com/franela/goreq"] - sumVersion = "v0.0.0-20171204163338-bcd34c9993f8" - ["github.com/franela/goreq".fetch] - type = "git" - url = "https://github.com/franela/goreq" - rev = "bcd34c9993f899273c74baaa95e15386cd97b6e7" - sha256 = "055a20nc5f1blk2swiwpwqpxd3z495ms1qr6a7cbbss1w3a7a7sb" - -["github.com/frankban/quicktest"] - sumVersion = "v1.11.3" - ["github.com/frankban/quicktest".fetch] - type = "git" - url = "https://github.com/frankban/quicktest" - rev = "e7d1f0b53af1e9c9cf66924bc310190b1db8c339" - sha256 = "0d5njmwkfq2809vlimnlvy8ir6kln0c4cgdwr680fwsclpbr43qs" - -["github.com/fsnotify/fsnotify"] - sumVersion = "v1.5.1" - ["github.com/fsnotify/fsnotify".fetch] - type = "git" - url = "https://github.com/fsnotify/fsnotify" - rev = "466b39d216616549a37ee93c7c47775f6a010790" - sha256 = "0xpdprvab4zgn5igymc5468hk5s429cqyxml9xjsk0cn53rikj87" - -["github.com/gballet/go-libpcsclite"] - sumVersion = "v0.0.0-20190607065134-2772fd86a8ff" - ["github.com/gballet/go-libpcsclite".fetch] - type = "git" - url = "https://github.com/gballet/go-libpcsclite" - rev = "2772fd86a8ff4306d2749f610a386bfee9e0d727" - sha256 = "1j7389jcjdsb73c30cial688m3r2wypspn8zhy5mvm3c9xqnigin" - -["github.com/ghodss/yaml"] - sumVersion = "v1.0.0" - ["github.com/ghodss/yaml".fetch] - type = "git" - url = "https://github.com/ghodss/yaml" - rev = "0ca9ea5df5451ffdf184b4428c902747c2c11cd7" - sha256 = "0skwmimpy7hlh7pva2slpcplnm912rp3igs98xnqmn859kwa5v8g" - -["github.com/gin-contrib/sse"] - sumVersion = "v0.1.0" - ["github.com/gin-contrib/sse".fetch] - type = "git" - url = "https://github.com/gin-contrib/sse" - rev = "54d8467d122d380a14768b6b4e5cd7ca4755938f" - sha256 = "072nq91a65n5xvwslqjyvydfd0mfpnvb3vwjyfvmzm1ym96wr1nd" - -["github.com/gin-gonic/gin"] - sumVersion = "v1.6.3" - ["github.com/gin-gonic/gin".fetch] - type = "git" - url = "https://github.com/gin-gonic/gin" - rev = "6a8b8b6651a228590bbc42145483ff864f4f6e89" - sha256 = "18k0ydx88xh100xp1ff0zpjk2n233rv7qxijbsrrsgqrq9z83w3l" - -["github.com/go-gl/glfw"] - sumVersion = "v0.0.0-20190409004039-e6da0acd62b1" - ["github.com/go-gl/glfw".fetch] - type = "git" - url = "https://github.com/go-gl/glfw" - rev = "e6da0acd62b1b57ee2799d4d0a76a7d4514dc5bc" - sha256 = "0prvx5r7q8yrhqvnwibv4xz3dayjbq36yajzqvh0z4lqsh4hyhch" - -["github.com/go-gl/glfw/v3.3/glfw"] - sumVersion = "v0.0.0-20200222043503-6f7a984d4dc4" - relPath = "v3.3/glfw" - ["github.com/go-gl/glfw/v3.3/glfw".fetch] - type = "git" - url = "https://github.com/go-gl/glfw" - rev = "6f7a984d4dc470c3f197229ad1991ae9e211bba2" - sha256 = "1nyv7h08qf4dp8w9pmcnrc6vv9bkwj8fil6pz0mkbss5hf4i8xcq" - -["github.com/go-kit/kit"] - sumVersion = "v0.12.0" - ["github.com/go-kit/kit".fetch] - type = "git" - url = "https://github.com/go-kit/kit" - rev = "251777ffd4f40c09ed5bf239545b1dc6b1964a98" - sha256 = "15cm24sjyvwxpprfha2k0s3c1hhpg5y2kljnw04hayfyazqc79wl" - -["github.com/go-kit/log"] - sumVersion = "v0.2.0" - ["github.com/go-kit/log".fetch] - type = "git" - url = "https://github.com/go-kit/log" - rev = "71fa7d7d64785c98d3814e53b3544fd8cccff897" - sha256 = "13gbqrwvqy9j903j44x0kix5gnn34a8hl8skbdijy7arpkxpj6h3" - -["github.com/go-logfmt/logfmt"] - sumVersion = "v0.5.1" - ["github.com/go-logfmt/logfmt".fetch] - type = "git" - url = "https://github.com/go-logfmt/logfmt" - rev = "2fe45f2cf057d707c50bc1949e25ec2cd6b7a015" - sha256 = "01fs4x2aqw2qcsz18s4nfvyqv3rcwz5xmgpk3bic6nzgyzsjd7dp" - -["github.com/go-ole/go-ole"] - sumVersion = "v1.2.1" - ["github.com/go-ole/go-ole".fetch] - type = "git" - url = "https://github.com/go-ole/go-ole" - rev = "a41e3c4b706f6ae8dfbff342b06e40fa4d2d0506" - sha256 = "114h8x7dh4jp7w7k678fm98lr9icavsf74v6jfipyq7q35bsfr1p" - -["github.com/go-playground/assert/v2"] - sumVersion = "v2.0.1" - ["github.com/go-playground/assert/v2".fetch] - type = "git" - url = "https://github.com/go-playground/assert" - rev = "8eb943fbae8448cf47383208d8d0c396e26011a9" - sha256 = "1cl9c4s405zddzrj36hhs0a18g02zscdl46fyipp6k91mhvai8wz" - -["github.com/go-playground/locales"] - sumVersion = "v0.13.0" - ["github.com/go-playground/locales".fetch] - type = "git" - url = "https://github.com/go-playground/locales" - rev = "9f105231d3a5f6877a2bf8321dfa15ea6f844b1b" - sha256 = "0qydcpkvss3mf8mk3xzg6a34n8i69aydrigcl2apifrkx72jw7pf" - -["github.com/go-playground/universal-translator"] - sumVersion = "v0.17.0" - ["github.com/go-playground/universal-translator".fetch] - type = "git" - url = "https://github.com/go-playground/universal-translator" - rev = "f87b1403479a348651dbf5f07f5cc6e5fcf07008" - sha256 = "1zdiaisb32iv4x93cpbqrgx8ll7sxh4hcd2iibpswy4bwvjbjlz6" - -["github.com/go-playground/validator/v10"] - sumVersion = "v10.2.0" - ["github.com/go-playground/validator/v10".fetch] - type = "git" - url = "https://github.com/go-playground/validator" - rev = "c68441b7f4748b48ad9a0c9a79d346019730e207" - sha256 = "0pfbn06n7ll7slp36vvv94gf8ylm6mynp332r5q7j78nca1bjb5b" - -["github.com/go-sourcemap/sourcemap"] - sumVersion = "v2.1.2+incompatible" - ["github.com/go-sourcemap/sourcemap".fetch] - type = "git" - url = "https://github.com/go-sourcemap/sourcemap" - rev = "b019cc30c1eaa584753491b0d8f8c1534bf1eb44" - sha256 = "03k44fdrnknba05f7cd58lq4rzk7jdpiqksmc0wxrdzwschrbgw8" - -["github.com/go-sql-driver/mysql"] - sumVersion = "v1.4.0" - ["github.com/go-sql-driver/mysql".fetch] - type = "git" - url = "https://github.com/go-sql-driver/mysql" - rev = "d523deb1b23d913de5bdada721a6071e71283618" - sha256 = "1jwz2j3vd5hlzmnkh20d4276yd8cxy7pac3x3dfi52jkm82ms99n" - -["github.com/go-stack/stack"] - sumVersion = "v1.8.0" - ["github.com/go-stack/stack".fetch] - type = "git" - url = "https://github.com/go-stack/stack" - rev = "2fee6af1a9795aafbe0253a0cfbdf668e1fb8a9a" - sha256 = "0wk25751ryyvxclyp8jdk5c3ar0cmfr8lrjb66qbg4808x66b96v" - -["github.com/go-task/slim-sprig"] - sumVersion = "v0.0.0-20210107165309-348f09dbbbc0" - ["github.com/go-task/slim-sprig".fetch] - type = "git" - url = "https://github.com/go-task/slim-sprig" - rev = "348f09dbbbc0ff8b922a311da7a90cd014b69aa3" - sha256 = "16i1w4sm1h8wd132gdaq1z0asj9nc36zs8b3q9jy5kcbjzidl34f" - -["github.com/go-zookeeper/zk"] - sumVersion = "v1.0.2" - ["github.com/go-zookeeper/zk".fetch] - type = "git" - url = "https://github.com/go-zookeeper/zk" - rev = "50daf81d01a3f5d6209441a9e4d7f6e7d32fab64" - sha256 = "0z7xvpww2mfgbbl6id68wggkvflfczy637vsyhjijfz86yhjkqza" - -["github.com/gobwas/httphead"] - sumVersion = "v0.0.0-20180130184737-2c6c146eadee" - ["github.com/gobwas/httphead".fetch] - type = "git" - url = "https://github.com/gobwas/httphead" - rev = "2c6c146eadee0b69f856f87e3e9f1d0cd6aad2f5" - sha256 = "0j7nlrf79cafl8ap69ri2c7v3psr2y133cr2wn735z7yn3dz3kss" - -["github.com/gobwas/pool"] - sumVersion = "v0.2.0" - ["github.com/gobwas/pool".fetch] - type = "git" - url = "https://github.com/gobwas/pool" - rev = "fa3125c39d7eca32e1387bb69b1b38dcb31b1e0b" - sha256 = "1avpa8c75j1y4hs7awazrjjy7w0pjfw80l424ddn5zyizvh7s67i" - -["github.com/gobwas/ws"] - sumVersion = "v1.0.2" - ["github.com/gobwas/ws".fetch] - type = "git" - url = "https://github.com/gobwas/ws" - rev = "05baaea2bbcfe8963301c62d9931c882d59595cd" - sha256 = "070mfcjbfb40bglc9aw9zjvd4jb1hp3l1s12ww6mjlwbjcg0mm9s" - -["github.com/godbus/dbus"] - sumVersion = "v0.0.0-20190726142602-4481cbc300e2" - ["github.com/godbus/dbus".fetch] - type = "git" - url = "https://github.com/godbus/dbus" - rev = "4481cbc300e2df0c0b3cecc18b6c16c6c0bb885d" - sha256 = "0h0cl1r136g0kxbw3i7ggb9mhavpi1yr7d7312iwhkxm93dxkphg" - -["github.com/godbus/dbus/v5"] - sumVersion = "v5.0.4" - ["github.com/godbus/dbus/v5".fetch] - type = "git" - url = "https://github.com/godbus/dbus" - rev = "c88335c0b1d28a30e7fc76d526a06154b85e5d97" - sha256 = "0znax8kskb5gmp5fj75w56bc9p7b22wrdswzlh4d04sprlc471yi" - -["github.com/gogo/gateway"] - sumVersion = "v1.1.0" - ["github.com/gogo/gateway".fetch] - type = "git" - url = "https://github.com/gogo/gateway" - rev = "817b4cf527e834d7d563b7329355c45801d5e02d" - sha256 = "1jj7vr3sdk7yz8jl1kzv8473pkhd388f95byc8pdwrh6y7fh0xrq" - -["github.com/gogo/protobuf"] - sumVersion = "v1.3.3-alpha.regen.1" - vendorPath = "github.com/regen-network/protobuf" - ["github.com/gogo/protobuf".fetch] - type = "git" - url = "https://github.com/regen-network/protobuf" - rev = "8a70ddfdaf94e68497f7b26a6896ad75e03b6616" - sha256 = "0jmhiv9gq0a6brs9p8dk9phafs62yggyhlav07cqwakcq70ss6r2" - -["github.com/golang-jwt/jwt/v4"] - sumVersion = "v4.0.0" - ["github.com/golang-jwt/jwt/v4".fetch] - type = "git" - url = "https://github.com/golang-jwt/jwt" - rev = "2ebb50f957d606de5909fcf9ed49f9af3bc35e97" - sha256 = "0vc122v3aycq3g9mgaxs5cbs5p762n2x61nxhsniw1x2cz7jgwcv" - -["github.com/golang/freetype"] - sumVersion = "v0.0.0-20170609003504-e2365dfdc4a0" - ["github.com/golang/freetype".fetch] - type = "git" - url = "https://github.com/golang/freetype" - rev = "e2365dfdc4a05e4b8299a783240d4a7d5a65d4e4" - sha256 = "194w3djc6fv1rgcjqds085b9fq074panc5vw582bcb8dbfzsrqxc" - -["github.com/golang/glog"] - sumVersion = "v0.0.0-20160126235308-23def4e6c14b" - ["github.com/golang/glog".fetch] - type = "git" - url = "https://github.com/golang/glog" - rev = "23def4e6c14b4da8ac2ed8007337bc5eb5007998" - sha256 = "0jb2834rw5sykfr937fxi8hxi2zy80sj2bdn9b3jb4b26ksqng30" - -["github.com/golang/groupcache"] - sumVersion = "v0.0.0-20210331224755-41bb18bfe9da" - ["github.com/golang/groupcache".fetch] - type = "git" - url = "https://github.com/golang/groupcache" - rev = "41bb18bfe9da5321badc438f91158cd790a33aa3" - sha256 = "07amgr8ji4mnq91qbsw2jlcmw6hqiwdf4kzfdrj8c4b05w4knszc" - -["github.com/golang/mock"] - sumVersion = "v1.6.0" - ["github.com/golang/mock".fetch] - type = "git" - url = "https://github.com/golang/mock" - rev = "aba2ff9a6844d5e3289e8472d3217d5b3090f083" - sha256 = "1hara8j0x431njjhqxfrg1png7xa1gbrpwza6ya4mwlx76hppap4" - -["github.com/golang/protobuf"] - sumVersion = "v1.5.2" - ["github.com/golang/protobuf".fetch] - type = "git" - url = "https://github.com/golang/protobuf" - rev = "ae97035608a719c7a1c1c41bed0ae0744bdb0c6f" - sha256 = "1mh5fyim42dn821nsd3afnmgscrzzhn3h8rag635d2jnr23r1zhk" - -["github.com/golang/snappy"] - sumVersion = "v0.0.3" - ["github.com/golang/snappy".fetch] - type = "git" - url = "https://github.com/golang/snappy" - rev = "674baa8c7fc30da5df3074a459494a7e6b427dff" - sha256 = "1dc8sdca0nrqb8wri91mi2xcjm16wyawm4y0fwc5gp24ahjbrg7g" - -["github.com/google/btree"] - sumVersion = "v1.0.0" - ["github.com/google/btree".fetch] - type = "git" - url = "https://github.com/google/btree" - rev = "4030bb1f1f0c35b30ca7009e9ebd06849dd45306" - sha256 = "0ba430m9fbnagacp57krgidsyrgp3ycw5r7dj71brgp5r52g82p6" - -["github.com/google/go-cmp"] - sumVersion = "v0.5.6" - ["github.com/google/go-cmp".fetch] - type = "git" - url = "https://github.com/google/go-cmp" - rev = "d103655696d8ae43c4125ee61454dbf03d8e8324" - sha256 = "0lrb0pacv5iy3m6fn1qb3nv7zwimfhpzqq8f6hwpwx88cx3g6p1s" - -["github.com/google/gofuzz"] - sumVersion = "v1.1.1-0.20200604201612-c04b05f3adfa" - ["github.com/google/gofuzz".fetch] - type = "git" - url = "https://github.com/google/gofuzz" - rev = "c04b05f3adfa7f64e47bf054350f2336aea32e9d" - sha256 = "0i75fm6pg54zvrgbvjkg46cr03pypqm4w0wv0a349f4k7ff8qv9r" - -["github.com/google/martian"] - sumVersion = "v2.1.0+incompatible" - ["github.com/google/martian".fetch] - type = "git" - url = "https://github.com/google/martian" - rev = "195b986b4b6d4c513582cf4d2b8c4fd7e2494f7e" - sha256 = "197hil6vrjk50b9wvwyzf61csid83whsjj6ik8mc9r2lryxlyyrp" - -["github.com/google/martian/v3"] - sumVersion = "v3.2.1" - ["github.com/google/martian/v3".fetch] - type = "git" - url = "https://github.com/google/martian" - rev = "7e75073889cd2324f33b959c4fb4545440da046c" - sha256 = "0ylsicpiaprq6yvgbl4qiclvj4xsnsmjsjmyi21rqgxhnvyjbfyf" - -["github.com/google/orderedcode"] - sumVersion = "v0.0.1" - ["github.com/google/orderedcode".fetch] - type = "git" - url = "https://github.com/google/orderedcode" - rev = "9a3d15e0d5340bb1ba5db4071afd931e18b6e013" - sha256 = "0sdqfjji2skc1f7fbv9krbrb0cgfz43ksrld333hllgdidi33c9a" - -["github.com/google/pprof"] - sumVersion = "v0.0.0-20210720184732-4bb14d4b1be1" - ["github.com/google/pprof".fetch] - type = "git" - url = "https://github.com/google/pprof" - rev = "4bb14d4b1be14417e47d0bbaf2bd4e188eda647f" - sha256 = "15lgdlblmw0f0cj0k7qn8bbk15k5b61n4r3vm2gaac2zribxk47b" - -["github.com/google/renameio"] - sumVersion = "v0.1.0" - ["github.com/google/renameio".fetch] - type = "git" - url = "https://github.com/google/renameio" - rev = "f0e32980c006571efd537032e5f9cd8c1a92819e" - sha256 = "1ki2x5a9nrj17sn092d6n4zr29lfg5ydv4xz5cp58z6cw8ip43jx" - -["github.com/google/uuid"] - sumVersion = "v1.1.2" - ["github.com/google/uuid".fetch] - type = "git" - url = "https://github.com/google/uuid" - rev = "0e4e31197428a347842d152773b4cace4645ca25" - sha256 = "1rbpfa0v0ly9sdnixcxhf79swki54ikgm1zkwwkj64p1ws66syqd" - -["github.com/googleapis/gax-go/v2"] - sumVersion = "v2.1.0" - relPath = "v2" - ["github.com/googleapis/gax-go/v2".fetch] - type = "git" - url = "https://github.com/googleapis/gax-go" - rev = "79931379926d00ab27b462bc37278731fdcc6272" - sha256 = "08kiiislmcs9dzwy1fs7yxp4l7cfs3qgrlxh04p8vmbvjxrkzkgg" - -["github.com/gopherjs/gopherjs"] - sumVersion = "v0.0.0-20181017120253-0766667cb4d1" - ["github.com/gopherjs/gopherjs".fetch] - type = "git" - url = "https://github.com/gopherjs/gopherjs" - rev = "0766667cb4d1cfb8d5fde1fe210ae41ead3cf589" - sha256 = "13pfc9sxiwjky2lm1xb3i3lcisn8p6mgjk2d927l7r92ysph8dmw" - -["github.com/gordonklaus/ineffassign"] - sumVersion = "v0.0.0-20200309095847-7953dde2c7bf" - ["github.com/gordonklaus/ineffassign".fetch] - type = "git" - url = "https://github.com/gordonklaus/ineffassign" - rev = "7953dde2c7bf4ce700d9f14c2e41c0966763760c" - sha256 = "088r2jcxgfhabg7mcgyr42yvnd1iab5kncr0cc898p9cf7fyd95z" - -["github.com/gorilla/context"] - sumVersion = "v1.1.1" - ["github.com/gorilla/context".fetch] - type = "git" - url = "https://github.com/gorilla/context" - rev = "08b5f424b9271eedf6f9f0ce86cb9396ed337a42" - sha256 = "03p4hn87vcmfih0p9w663qbx9lpsf7i7j3lc7yl7n84la3yz63m4" - -["github.com/gorilla/handlers"] - sumVersion = "v1.5.1" - ["github.com/gorilla/handlers".fetch] - type = "git" - url = "https://github.com/gorilla/handlers" - rev = "d453effd20e6817a8acfd9d278dadd21371da0ba" - sha256 = "15gycdz9lkjnsvvichsbdf25vf6pi1sfn41khhz53iqf300l0w0s" - -["github.com/gorilla/mux"] - sumVersion = "v1.8.0" - ["github.com/gorilla/mux".fetch] - type = "git" - url = "https://github.com/gorilla/mux" - rev = "98cb6bf42e086f6af920b965c38cacc07402d51b" - sha256 = "18f0q9qxgq1yh4ji07mqhiydfcwvi56z9d775v7dc7yckj33kpdk" - -["github.com/gorilla/websocket"] - sumVersion = "v1.4.2" - ["github.com/gorilla/websocket".fetch] - type = "git" - url = "https://github.com/gorilla/websocket" - rev = "b65e62901fc1c0d968042419e74789f6af455eb9" - sha256 = "0mkm9w6kjkrlzab5wh8p4qxkc0icqawjbvr01d2nk6ykylrln40s" - -["github.com/gotestyourself/gotestyourself"] - sumVersion = "v2.2.0+incompatible" - ["github.com/gotestyourself/gotestyourself".fetch] - type = "git" - url = "https://github.com/gotestyourself/gotestyourself" - rev = "7c797b5133e5460410dbb22ba779bf35e6975dea" - sha256 = "0yif3gdyckmf8i54jq0xn00kflla5rhib9sarw66ngnbl7bn9kyl" - -["github.com/graph-gophers/graphql-go"] - sumVersion = "v0.0.0-20191115155744-f33e81362277" - ["github.com/graph-gophers/graphql-go".fetch] - type = "git" - url = "https://github.com/graph-gophers/graphql-go" - rev = "f33e813622776db7efec756a9e951bef40932197" - sha256 = "12vbls1kvn3lfgj86y4r258x6papgcj3h4pcg4xbdi5l2cy1idmy" - -["github.com/grpc-ecosystem/go-grpc-middleware"] - sumVersion = "v1.3.0" - ["github.com/grpc-ecosystem/go-grpc-middleware".fetch] - type = "git" - url = "https://github.com/grpc-ecosystem/go-grpc-middleware" - rev = "df0f91b29bbbdfc3a686a7a8edbe2b9de2072fdd" - sha256 = "1c9chw2nwj46ayx6cbq1sq21gmfmm3fx1gg579hn7srwywq0xsw0" - -["github.com/grpc-ecosystem/go-grpc-prometheus"] - sumVersion = "v1.2.0" - ["github.com/grpc-ecosystem/go-grpc-prometheus".fetch] - type = "git" - url = "https://github.com/grpc-ecosystem/go-grpc-prometheus" - rev = "c225b8c3b01faf2899099b768856a9e916e5087b" - sha256 = "1lzk54h7np32b3acidg1ggbn8ppbnns0m71gcg9d1qkkdh8zrijl" - -["github.com/grpc-ecosystem/grpc-gateway"] - sumVersion = "v1.16.0" - ["github.com/grpc-ecosystem/grpc-gateway".fetch] - type = "git" - url = "https://github.com/grpc-ecosystem/grpc-gateway" - rev = "094a6fe78b3ca888297d090185cdf30f0e42e157" - sha256 = "0dzq1qbgzz2c6vnh8anx0j3py34sd72p35x6s2wrl001q68am5cc" - -["github.com/gsterjov/go-libsecret"] - sumVersion = "v0.0.0-20161001094733-a6f4afe4910c" - ["github.com/gsterjov/go-libsecret".fetch] - type = "git" - url = "https://github.com/gsterjov/go-libsecret" - rev = "a6f4afe4910cad8688db3e0e9b9ac92ad22d54e1" - sha256 = "09zaiadnll83vs22ib89agg7anj0blw5fywvmckxllsgif6ak6v7" - -["github.com/gtank/merlin"] - sumVersion = "v0.1.1" - ["github.com/gtank/merlin".fetch] - type = "git" - url = "https://github.com/gtank/merlin" - rev = "8318aed1a79f2b4c16cf2d7c2f09d991ec0731d1" - sha256 = "1gcj26hiyb87cjvqrdyr4q201c1rknpbahnsvcnz08agaw6gvwxm" - -["github.com/gtank/ristretto255"] - sumVersion = "v0.1.2" - ["github.com/gtank/ristretto255".fetch] - type = "git" - url = "https://github.com/gtank/ristretto255" - rev = "f33454717c935f5c93978e82b7bd1e848768bb91" - sha256 = "0kn4r28zbxf4vqr2if455wqzak38l27wqrwbzpxygrvczm61a2kw" - -["github.com/hashicorp/consul/api"] - sumVersion = "v1.10.1" - relPath = "api" - ["github.com/hashicorp/consul/api".fetch] - type = "git" - url = "https://github.com/hashicorp/consul" - rev = "db839f18ba4796df77601bfe9873756ed340525d" - sha256 = "1sak084ilb14ppbcqr4x2s3lmg782ag6c6yhknnml4f7hpp0x15g" - -["github.com/hashicorp/consul/sdk"] - sumVersion = "v0.8.0" - relPath = "sdk" - ["github.com/hashicorp/consul/sdk".fetch] - type = "git" - url = "https://github.com/hashicorp/consul" - rev = "402636ff2db998edef392ac6d59210d2170b3ebf" - sha256 = "0vhbdkzqbs3nfg8dnkfiqjmhxc8cf81mnmy9003zqmlv9i1vfid9" - -["github.com/hashicorp/errwrap"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/errwrap".fetch] - type = "git" - url = "https://github.com/hashicorp/errwrap" - rev = "8a6fb523712970c966eefc6b39ed2c5e74880354" - sha256 = "0slfb6w3b61xz04r32bi0a1bygc82rjzhqkxj2si2074wynqnr1c" - -["github.com/hashicorp/go-cleanhttp"] - sumVersion = "v0.5.2" - ["github.com/hashicorp/go-cleanhttp".fetch] - type = "git" - url = "https://github.com/hashicorp/go-cleanhttp" - rev = "6d9e2ac5d828e5f8594b97f88c4bde14a67bb6d2" - sha256 = "1i5xslizzwd966w81bz6dxjwzgml4q9bwqa186bsxd1vi8lqxl9p" - -["github.com/hashicorp/go-hclog"] - sumVersion = "v0.16.2" - ["github.com/hashicorp/go-hclog".fetch] - type = "git" - url = "https://github.com/hashicorp/go-hclog" - rev = "480ace9c0bf65c904c14405bdec46e59093edeea" - sha256 = "0mcn136gmblv64zlm08zhi0s41cf44v9sj7i6nijc5alfgcgwjwj" - -["github.com/hashicorp/go-immutable-radix"] - sumVersion = "v1.3.1" - ["github.com/hashicorp/go-immutable-radix".fetch] - type = "git" - url = "https://github.com/hashicorp/go-immutable-radix" - rev = "49d1d02c49a783de548d1ba8ae8fde466a20b9e6" - sha256 = "0s7sf8y5lj8rx4gdymrz29gg6y2xwksfpgniaz32yzcmg3c817zb" - -["github.com/hashicorp/go-msgpack"] - sumVersion = "v0.5.3" - ["github.com/hashicorp/go-msgpack".fetch] - type = "git" - url = "https://github.com/hashicorp/go-msgpack" - rev = "be3a5be7ee2202386d02936a19ae4fbde1c77800" - sha256 = "00jv0ajqd58pkb2yyhlrjp0rv1mvb1ijx3yqjyikcmzvk9jb4h5m" - -["github.com/hashicorp/go-multierror"] - sumVersion = "v1.1.0" - ["github.com/hashicorp/go-multierror".fetch] - type = "git" - url = "https://github.com/hashicorp/go-multierror" - rev = "2004d9dba6b07a5b8d133209244f376680f9d472" - sha256 = "0pmjpzpra7lqgikxzwlcp5mh01b46j2vhyxkixz0v86fr9kf0k3k" - -["github.com/hashicorp/go-retryablehttp"] - sumVersion = "v0.5.3" - ["github.com/hashicorp/go-retryablehttp".fetch] - type = "git" - url = "https://github.com/hashicorp/go-retryablehttp" - rev = "357460732517ec3b57c05c51443296bdd6df1874" - sha256 = "008mimxs8a970rdhvgmc5v1wk0gmpcl96mrkwz7wq6ik6fhg1sjl" - -["github.com/hashicorp/go-rootcerts"] - sumVersion = "v1.0.2" - ["github.com/hashicorp/go-rootcerts".fetch] - type = "git" - url = "https://github.com/hashicorp/go-rootcerts" - rev = "98fadc2a5ba2ad2a534a179b352ecdfd1f4259aa" - sha256 = "06z1bxcnr0rma02b6r52m6y0q7niikqjs090vm1i8xi3scyaw1qa" - -["github.com/hashicorp/go-sockaddr"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-sockaddr".fetch] - type = "git" - url = "https://github.com/hashicorp/go-sockaddr" - rev = "a6a0d2df398f7e0e9f6e43f589c8b51cec0eb6b0" - sha256 = "1yn1xq8ysn0lszmkygz3a9lgpswbz1p91jv7q8l20s4749a22xgi" - -["github.com/hashicorp/go-syslog"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-syslog".fetch] - type = "git" - url = "https://github.com/hashicorp/go-syslog" - rev = "8d1874e3e8d1862b74e0536851e218c4571066a5" - sha256 = "09vccqggz212cg0jir6vv708d6mx0f9w5bxrcdah3h6chgmal6v1" - -["github.com/hashicorp/go-uuid"] - sumVersion = "v1.0.1" - ["github.com/hashicorp/go-uuid".fetch] - type = "git" - url = "https://github.com/hashicorp/go-uuid" - rev = "4f571afc59f3043a65f8fe6bf46d887b10a01d43" - sha256 = "0jvb88m0rq41bwgirsadgw7mnayl27av3gd2vqa3xvxp3fy0hp5k" - -["github.com/hashicorp/go-version"] - sumVersion = "v1.2.0" - ["github.com/hashicorp/go-version".fetch] - type = "git" - url = "https://github.com/hashicorp/go-version" - rev = "ac23dc3fea5d1a983c43f6a0f6e2c13f0195d8bd" - sha256 = "1bwi6y6111xq8ww8kjq0w1cmz15l1h9hb2id6596l8l0ag1vjj1z" - -["github.com/hashicorp/go.net"] - sumVersion = "v0.0.1" - ["github.com/hashicorp/go.net".fetch] - type = "git" - url = "https://github.com/hashicorp/go.net" - rev = "afc3cb3a421746fc66dd55b09a270c750cf536ce" - sha256 = "06arwi95xp5rxyz7rndvhc3wlwg0jn9a5z6djf3yyg5h9zfab9i4" - -["github.com/hashicorp/golang-lru"] - sumVersion = "v0.5.4" - ["github.com/hashicorp/golang-lru".fetch] - type = "git" - url = "https://github.com/hashicorp/golang-lru" - rev = "14eae340515388ca95aa8e7b86f0de668e981f54" - sha256 = "1sdbymypp9vrnzp8ashw0idlxvaq0rb0alwxx3x8g27yjlqi9jfn" - -["github.com/hashicorp/hcl"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/hcl".fetch] - type = "git" - url = "https://github.com/hashicorp/hcl" - rev = "8cb6e5b959231cc1119e43259c4a608f9c51a241" - sha256 = "0q6ml0qqs0yil76mpn4mdx4lp94id8vbv575qm60jzl1ijcl5i66" - -["github.com/hashicorp/logutils"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/logutils".fetch] - type = "git" - url = "https://github.com/hashicorp/logutils" - rev = "a335183dfd075f638afcc820c90591ca3c97eba6" - sha256 = "076wf4sh5p3f953ndqk1cc0x7jhmlqrxak9953rz79rcdw77rjvv" - -["github.com/hashicorp/mdns"] - sumVersion = "v1.0.1" - ["github.com/hashicorp/mdns".fetch] - type = "git" - url = "https://github.com/hashicorp/mdns" - rev = "06dd1a31b32c42d4d6c2cf8dbce70597d1118f54" - sha256 = "185zpyj1jf1jm7hihg73gqnspr0a359aqwv11v4a6mwd5bkdh19j" - -["github.com/hashicorp/memberlist"] - sumVersion = "v0.2.2" - ["github.com/hashicorp/memberlist".fetch] - type = "git" - url = "https://github.com/hashicorp/memberlist" - rev = "8da026e14bc868a316c57c34aa7fc151e40be98b" - sha256 = "0fndid9saypx9p9lxyhxw0w26gr80kjfpadc8w7w6bv5pzjjlapx" - -["github.com/hashicorp/serf"] - sumVersion = "v0.9.5" - ["github.com/hashicorp/serf".fetch] - type = "git" - url = "https://github.com/hashicorp/serf" - rev = "7faa1b06262f70780c3c35ac25a4c96d754f06f3" - sha256 = "0f1rsmvp96dpsv69sbn7wkiw0r4r98nrpr2ln50zyzjzy1pmbrrx" - -["github.com/hdevalence/ed25519consensus"] - sumVersion = "v0.0.0-20210204194344-59a8610d2b87" - ["github.com/hdevalence/ed25519consensus".fetch] - type = "git" - url = "https://github.com/hdevalence/ed25519consensus" - rev = "59a8610d2b877a977e021f711e382bc0e757bf48" - sha256 = "0nw0i884mbya2sdijrhlfnx3ymhdl3jcxk36g6mqk1d91p5b40s2" - -["github.com/holiman/uint256"] - sumVersion = "v1.1.1" - ["github.com/holiman/uint256".fetch] - type = "git" - url = "https://github.com/holiman/uint256" - rev = "99b79c80738390408ef1a47f0e26812ef5506c02" - sha256 = "13v6rnwv1mivqxfmnmj57jg6is81p04gspmykc8slcc1ryvs1qdh" - -["github.com/hpcloud/tail"] - sumVersion = "v1.0.0" - ["github.com/hpcloud/tail".fetch] - type = "git" - url = "https://github.com/hpcloud/tail" - rev = "a30252cb686a21eb2d0b98132633053ec2f7f1e5" - sha256 = "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0" - -["github.com/hudl/fargo"] - sumVersion = "v1.4.0" - ["github.com/hudl/fargo".fetch] - type = "git" - url = "https://github.com/hudl/fargo" - rev = "3eb9752cff0b65fbecf3ea04d7acd8f55a669fcd" - sha256 = "18pk1b5yybkghrjxskgssz8gzpv37k8w7gk0cldhcnffx85rqi0m" - -["github.com/huin/goupnp"] - sumVersion = "v1.0.0" - ["github.com/huin/goupnp".fetch] - type = "git" - url = "https://github.com/huin/goupnp" - rev = "656e61dfadd241c7cbdd22a023fa81ecb6860ea8" - sha256 = "12f7rigf1f4xh1an1qis61xkj5s1r8ygk48zahf3n4gaqxmgm7i6" - -["github.com/huin/goutil"] - sumVersion = "v0.0.0-20170803182201-1ca381bf3150" - ["github.com/huin/goutil".fetch] - type = "git" - url = "https://github.com/huin/goutil" - rev = "1ca381bf315033e89af3286fdec0109ce8d86126" - sha256 = "0alhyacsfqic2wxyqn4gvk9wzjl4pkmy8rhvqjk84xsghgx5xf12" - -["github.com/ianlancetaylor/demangle"] - sumVersion = "v0.0.0-20200824232613-28f6c0f3b639" - ["github.com/ianlancetaylor/demangle".fetch] - type = "git" - url = "https://github.com/ianlancetaylor/demangle" - rev = "28f6c0f3b63983aaa99575ca3b693afff7996387" - sha256 = "0rsq3622gd40f1x1l7caidsxrmzg1993ich2higwd94fqbxs1r83" - -["github.com/improbable-eng/grpc-web"] - sumVersion = "v0.14.1" - ["github.com/improbable-eng/grpc-web".fetch] - type = "git" - url = "https://github.com/improbable-eng/grpc-web" - rev = "d1462f8004766ff7f0e99962976a853bc9310301" - sha256 = "153a2kn2hpiwyspy9clwsxkgfw1igww5n74vf55fvz0idzv3r10n" - -["github.com/inconshreveable/mousetrap"] - sumVersion = "v1.0.0" - ["github.com/inconshreveable/mousetrap".fetch] - type = "git" - url = "https://github.com/inconshreveable/mousetrap" - rev = "76626ae9c91c4f2a10f34cad8ce83ea42c93bb75" - sha256 = "1mn0kg48xkd74brf48qf5hzp0bc6g8cf5a77w895rl3qnlpfw152" - -["github.com/influxdata/influxdb"] - sumVersion = "v1.2.3-0.20180221223340-01288bdb0883" - ["github.com/influxdata/influxdb".fetch] - type = "git" - url = "https://github.com/influxdata/influxdb" - rev = "01288bdb0883a01cac999326bd34421b29acaec8" - sha256 = "0lk1c2w1ja2w7wc897xp5c04vyrx5yxq5pb187aqcrqbqvy2fp5p" - -["github.com/influxdata/influxdb1-client"] - sumVersion = "v0.0.0-20200827194710-b269163b24ab" - ["github.com/influxdata/influxdb1-client".fetch] - type = "git" - url = "https://github.com/influxdata/influxdb1-client" - rev = "b269163b24ab8e62026d13a92aa988a7389c3b4e" - sha256 = "0pm1j437xk7d32px60j52qm98zgn21nmaqavjflvr44zaglrz5n9" - -["github.com/jackpal/go-nat-pmp"] - sumVersion = "v1.0.2-0.20160603034137-1fa385a6f458" - ["github.com/jackpal/go-nat-pmp".fetch] - type = "git" - url = "https://github.com/jackpal/go-nat-pmp" - rev = "1fa385a6f45828c83361136b45b1a21a12139493" - sha256 = "1n5h3qrd613cfw95vyqpy9vh3xv0zgbk3j5q8zad25q10wvp6ymn" - -["github.com/jedisct1/go-minisign"] - sumVersion = "v0.0.0-20190909160543-45766022959e" - ["github.com/jedisct1/go-minisign".fetch] - type = "git" - url = "https://github.com/jedisct1/go-minisign" - rev = "45766022959ee057eee31300cdc5f45a8c51ea7f" - sha256 = "02rc52v29wyzias9aw4a7kxsfspf27an3kf0pb9pn4kp0br5dn6v" - -["github.com/jessevdk/go-flags"] - sumVersion = "v1.4.0" - ["github.com/jessevdk/go-flags".fetch] - type = "git" - url = "https://github.com/jessevdk/go-flags" - rev = "c6ca198ec95c841fdb89fc0de7496fed11ab854e" - sha256 = "0algnnigph27spgn655zm4723yfjxjjvlf4k14z9drj3682df25a" - -["github.com/jhump/protoreflect"] - sumVersion = "v1.9.0" - ["github.com/jhump/protoreflect".fetch] - type = "git" - url = "https://github.com/jhump/protoreflect" - rev = "d3608faa83b85e64a0e2880cba9be9c951460727" - sha256 = "0pbyvisfjmhx1g5l6m0dqv730hid1jr8h8746yx3d567ms2hgj8f" - -["github.com/jmespath/go-jmespath"] - sumVersion = "v0.4.0" - ["github.com/jmespath/go-jmespath".fetch] - type = "git" - url = "https://github.com/jmespath/go-jmespath" - rev = "3d4fd11601ddca248480565884e34e393313cd62" - sha256 = "18zyr9nlywmwp3wpzcjxrgq9s9d2mmc6zg6xhsna00m663nkyc3n" - -["github.com/jmespath/go-jmespath/internal/testify"] - sumVersion = "v1.5.1" - relPath = "internal/testify" - ["github.com/jmespath/go-jmespath/internal/testify".fetch] - type = "git" - url = "https://github.com/jmespath/go-jmespath" - rev = "ff168ca20786696708c0f3eb2cc29d7912467599" - sha256 = "0swpmim4gn023pkzxfg8adqilz7mfka8axlsjqsxk0d2r372z75m" - -["github.com/jmhodges/levigo"] - sumVersion = "v1.0.0" - ["github.com/jmhodges/levigo".fetch] - type = "git" - url = "https://github.com/jmhodges/levigo" - rev = "853d788c5c416eaaee5b044570784a96c7a26975" - sha256 = "1lhh413mmclnkwn2lk1crwzargam2cx5w7k6zj8pgasy62c78iy4" - -["github.com/jonboulle/clockwork"] - sumVersion = "v0.1.0" - ["github.com/jonboulle/clockwork".fetch] - type = "git" - url = "https://github.com/jonboulle/clockwork" - rev = "2eee05ed794112d45db504eb05aa693efd2b8b09" - sha256 = "1pqxhsdavbp1n5grgyx2j6ylvql2fzn2cvpsgkc8li69dil7sibl" - -["github.com/jpillora/backoff"] - sumVersion = "v1.0.0" - ["github.com/jpillora/backoff".fetch] - type = "git" - url = "https://github.com/jpillora/backoff" - rev = "d80867952dff4e2fbfb4280ded4ff94d67790457" - sha256 = "0x90fif28fjyl07lmj2cnxzlgdm632v7rkra7kq1mwjdqgmy04dv" - -["github.com/jrick/logrotate"] - sumVersion = "v1.0.0" - ["github.com/jrick/logrotate".fetch] - type = "git" - url = "https://github.com/jrick/logrotate" - rev = "a93b200c26cbae3bb09dd0dc2c7c7fe1468a034a" - sha256 = "0srl6figwjqpi3nbp7br8sxpmvh4v8lzbny1b4lar4ny0156p5nl" - -["github.com/json-iterator/go"] - sumVersion = "v1.1.12" - ["github.com/json-iterator/go".fetch] - type = "git" - url = "https://github.com/json-iterator/go" - rev = "024077e996b048517130b21ea6bf12aa23055d3d" - sha256 = "1c8f0hxm18wivx31bs615x3vxs2j3ba0v6vxchsjhldc8kl311bz" - -["github.com/jstemmer/go-junit-report"] - sumVersion = "v0.9.1" - ["github.com/jstemmer/go-junit-report".fetch] - type = "git" - url = "https://github.com/jstemmer/go-junit-report" - rev = "cc1f095d5cc5eca2844f5c5ea7bb37f6b9bf6cac" - sha256 = "1knip80yir1cdsjlb3rzy0a4w3kl4ljpiciaz6hjzwqlfhnv7bkw" - -["github.com/jtolds/gls"] - sumVersion = "v4.20.0+incompatible" - ["github.com/jtolds/gls".fetch] - type = "git" - url = "https://github.com/jtolds/gls" - rev = "b4936e06046bbecbb94cae9c18127ebe510a2cb9" - sha256 = "1k7xd2q2ysv2xsh373qs801v6f359240kx0vrl0ydh7731lngvk6" - -["github.com/julienschmidt/httprouter"] - sumVersion = "v1.3.0" - ["github.com/julienschmidt/httprouter".fetch] - type = "git" - url = "https://github.com/julienschmidt/httprouter" - rev = "4eec211fa4e8df74ed978dc5681612131854144f" - sha256 = "1a6sy0ysqknsjssjh7qg1dqn21xmj9a36c57nrk7srfmab4ffmk1" - -["github.com/jung-kurt/gofpdf"] - sumVersion = "v1.0.3-0.20190309125859-24315acbbda5" - ["github.com/jung-kurt/gofpdf".fetch] - type = "git" - url = "https://github.com/jung-kurt/gofpdf" - rev = "24315acbbda57c4f6b80c8441fd108087dd7e305" - sha256 = "1hyb2vbyz8xwzhinqwlan0fxbdsgfjj975i9ca4bhfzzqqwq9pmk" - -["github.com/karalabe/usb"] - sumVersion = "v0.0.0-20190919080040-51dc0efba356" - ["github.com/karalabe/usb".fetch] - type = "git" - url = "https://github.com/karalabe/usb" - rev = "51dc0efba3568b598359930901dc6647e9b2c6a1" - sha256 = "0rshv04w5f60zv3l9f0zqyhimpwrbzm7dir8jbkdpnszicq1dx3m" - -["github.com/keybase/go-keychain"] - sumVersion = "v0.0.0-20190712205309-48d3d31d256d" - ["github.com/keybase/go-keychain".fetch] - type = "git" - url = "https://github.com/keybase/go-keychain" - rev = "48d3d31d256d9922a90b14c518c4b685f321fab2" - sha256 = "1vb4irkbj5s4v8n8dqngmg2w2fbnaz568z731yqryspvvmrki2a1" - -["github.com/kisielk/errcheck"] - sumVersion = "v1.5.0" - ["github.com/kisielk/errcheck".fetch] - type = "git" - url = "https://github.com/kisielk/errcheck" - rev = "ee08a456fc430219ad80ce5af98415bcc027a219" - sha256 = "0ci3jz2px74pfmr42jv7dpx7fdzx08vai4czp9fkiyb0gcaiqsk6" - -["github.com/kisielk/gotool"] - sumVersion = "v1.0.0" - ["github.com/kisielk/gotool".fetch] - type = "git" - url = "https://github.com/kisielk/gotool" - rev = "80517062f582ea3340cd4baf70e86d539ae7d84d" - sha256 = "14af2pa0ssyp8bp2mvdw184s5wcysk6akil3wzxmr05wwy951iwn" - -["github.com/kkdai/bstream"] - sumVersion = "v1.0.0" - ["github.com/kkdai/bstream".fetch] - type = "git" - url = "https://github.com/kkdai/bstream" - rev = "a8d27c5aa8eedad6b6683069d64b96ece63696db" - sha256 = "02brc58hhkkfhgb4yxjv3wshq355w533q7d49qrlfkhk265qph7w" - -["github.com/klauspost/compress"] - sumVersion = "v1.13.6" - ["github.com/klauspost/compress".fetch] - type = "git" - url = "https://github.com/klauspost/compress" - rev = "38d4ba985ac157cb858763e016645e14e74c13c4" - sha256 = "1bgqhv2pp56b8f5mfzpfjlm4cb262gjbqbp3235blhj9xf2wrynj" - -["github.com/konsorten/go-windows-terminal-sequences"] - sumVersion = "v1.0.3" - ["github.com/konsorten/go-windows-terminal-sequences".fetch] - type = "git" - url = "https://github.com/konsorten/go-windows-terminal-sequences" - rev = "edb144dfd453055e1e49a3d8b410a660b5a87613" - sha256 = "1yrsd4s8vhjnxhwbigirymz89dn6qfjnhn28i33vvvdgf96j6ypl" - -["github.com/kr/fs"] - sumVersion = "v0.1.0" - ["github.com/kr/fs".fetch] - type = "git" - url = "https://github.com/kr/fs" - rev = "1455def202f6e05b95cc7bfc7e8ae67ae5141eba" - sha256 = "11zg176x9hr9q7fsk95r6q0wf214gg4czy02slax4x56n79g6a7q" - -["github.com/kr/logfmt"] - sumVersion = "v0.0.0-20140226030751-b84e30acd515" - ["github.com/kr/logfmt".fetch] - type = "git" - url = "https://github.com/kr/logfmt" - rev = "b84e30acd515aadc4b783ad4ff83aff3299bdfe0" - sha256 = "02ldzxgznrfdzvghfraslhgp19la1fczcbzh7wm2zdc6lmpd1qq9" - -["github.com/kr/pretty"] - sumVersion = "v0.2.1" - ["github.com/kr/pretty".fetch] - type = "git" - url = "https://github.com/kr/pretty" - rev = "ead452280cd055b2ae8a7f0db5eb37a878d902f7" - sha256 = "0vzfz06y9q8gs2nxx0kys0591vzp78k0fvpb8digi5n15h3b25hy" - -["github.com/kr/pty"] - sumVersion = "v1.1.1" - ["github.com/kr/pty".fetch] - type = "git" - url = "https://github.com/kr/pty" - rev = "282ce0e5322c82529687d609ee670fac7c7d917c" - sha256 = "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6" - -["github.com/kr/text"] - sumVersion = "v0.2.0" - ["github.com/kr/text".fetch] - type = "git" - url = "https://github.com/kr/text" - rev = "702c74938df48b97370179f33ce2107bd7ff3b3e" - sha256 = "0hf58ypz6rxsw6nx3i856whir9lvy4sdx946wbw1nfaf2rdmr9vx" - -["github.com/kylelemons/godebug"] - sumVersion = "v1.1.0" - ["github.com/kylelemons/godebug".fetch] - type = "git" - url = "https://github.com/kylelemons/godebug" - rev = "9ff306d4fbead574800b66369df5b6144732d58e" - sha256 = "0dkk3friykg8p6wgqryx6745ahhb9z1j740k7px9dac6v5xjp78c" - -["github.com/leodido/go-urn"] - sumVersion = "v1.2.0" - ["github.com/leodido/go-urn".fetch] - type = "git" - url = "https://github.com/leodido/go-urn" - rev = "a0f5013415294bb94553821ace21a1a74c0298cc" - sha256 = "1d4g1vkhc1180l1n7q48vl84b27c7cziywml78cyijbcdz2f8vim" - -["github.com/lib/pq"] - sumVersion = "v1.10.4" - ["github.com/lib/pq".fetch] - type = "git" - url = "https://github.com/lib/pq" - rev = "8446d16b8935fdf2b5c0fe333538ac395e3e1e4b" - sha256 = "0kdr257l1gq82bx2g3qjab6haj31ib8ljbyaa1rg1xsva5j17ngx" - -["github.com/libp2p/go-buffer-pool"] - sumVersion = "v0.0.2" - ["github.com/libp2p/go-buffer-pool".fetch] - type = "git" - url = "https://github.com/libp2p/go-buffer-pool" - rev = "c4a5988a1e475884367015e1a2d0bd5fa4c491f4" - sha256 = "01iwby4xq9znlfhcxxvqv03smllsv42j1w3vpqg9n307s3i0pj3m" - -["github.com/lightstep/lightstep-tracer-common/golang/gogo"] - sumVersion = "v0.0.0-20190605223551-bc2310a04743" - relPath = "golang/gogo" - ["github.com/lightstep/lightstep-tracer-common/golang/gogo".fetch] - type = "git" - url = "https://github.com/lightstep/lightstep-tracer-common" - rev = "bc2310a0474352fa2616bdc0a27457b146b136b4" - sha256 = "0j7qycrva0ngf38br0jy9blzjb98ksdfi87b0sb2gnpmsp6sz4l8" - -["github.com/lightstep/lightstep-tracer-go"] - sumVersion = "v0.18.1" - ["github.com/lightstep/lightstep-tracer-go".fetch] - type = "git" - url = "https://github.com/lightstep/lightstep-tracer-go" - rev = "95891af43e111d60f0ae6adaa39c2abe8caad401" - sha256 = "0jfnsv7y11d247xysc61wp8xmgn33fdl17v6g0lxxnklbw41k91y" - -["github.com/lucasjones/reggen"] - sumVersion = "v0.0.0-20180717132126-cdb49ff09d77" - ["github.com/lucasjones/reggen".fetch] - type = "git" - url = "https://github.com/lucasjones/reggen" - rev = "cdb49ff09d77331d3fdd51e862b4023d2257954c" - sha256 = "1cby9n647v4gh11mpz1dfscks8n0cw0rj8d2hjh4q9mky4m7jzl1" - -["github.com/magiconair/properties"] - sumVersion = "v1.8.5" - ["github.com/magiconair/properties".fetch] - type = "git" - url = "https://github.com/magiconair/properties" - rev = "291b8266af1000c77a12ae6d4dde1145a028012f" - sha256 = "0v4agnkhc30fblbmhs0gq2bikhdnnmqmpp4phrnza68m04j5hxbn" - -["github.com/mattn/go-colorable"] - sumVersion = "v0.1.8" - ["github.com/mattn/go-colorable".fetch] - type = "git" - url = "https://github.com/mattn/go-colorable" - rev = "2e1b0c1546e0173c0907cf05c67b8ba29ed8b4d1" - sha256 = "0q34zqwbnls72md8q8mhj368s7p3i4xspvs3rk8fs76s0pn7dr2l" - -["github.com/mattn/go-ieproxy"] - sumVersion = "v0.0.0-20190702010315-6dee0af9227d" - ["github.com/mattn/go-ieproxy".fetch] - type = "git" - url = "https://github.com/mattn/go-ieproxy" - rev = "6dee0af9227d0863f1508ce7937af3396d6605c1" - sha256 = "0kxxxi68wch3rf3iqggiv72fbf0g7s6g8wy7r34ir040j8b7k0ri" - -["github.com/mattn/go-isatty"] - sumVersion = "v0.0.14" - ["github.com/mattn/go-isatty".fetch] - type = "git" - url = "https://github.com/mattn/go-isatty" - rev = "504425e14f742f1f517c4586048b49b37f829c8e" - sha256 = "015zc3j60vb85d7f2al15la24wn45piazxlagqhzrbgfdyqci60z" - -["github.com/mattn/go-runewidth"] - sumVersion = "v0.0.4" - ["github.com/mattn/go-runewidth".fetch] - type = "git" - url = "https://github.com/mattn/go-runewidth" - rev = "3ee7d812e62a0804a7d0a324e0249ca2db3476d3" - sha256 = "00b3ssm7wiqln3k54z2wcnxr3k3c7m1ybyhb9h8ixzbzspld0qzs" - -["github.com/matttproud/golang_protobuf_extensions"] - sumVersion = "v1.0.1" - ["github.com/matttproud/golang_protobuf_extensions".fetch] - type = "git" - url = "https://github.com/matttproud/golang_protobuf_extensions" - rev = "c12348ce28de40eed0136aa2b644d0ee0650e56c" - sha256 = "1d0c1isd2lk9pnfq2nk0aih356j30k3h1gi2w0ixsivi5csl7jya" - -["github.com/miekg/dns"] - sumVersion = "v1.1.43" - ["github.com/miekg/dns".fetch] - type = "git" - url = "https://github.com/miekg/dns" - rev = "996478ee912e69b7dcd57e68d35fd11a49af90ab" - sha256 = "071nz8l4ml347ivzdfjn5vsy089mprislyah62hvbiv4d4f4nsqm" - -["github.com/mimoo/StrobeGo"] - sumVersion = "v0.0.0-20181016162300-f8f6d4d2b643" - ["github.com/mimoo/StrobeGo".fetch] - type = "git" - url = "https://github.com/mimoo/StrobeGo" - rev = "f8f6d4d2b6435f46148e8a6dc2248939893f3ece" - sha256 = "1lgxh3p6aqfc049wn3kz1mj9prm4mqpa9m01p27ph8iw5ry5c7la" - -["github.com/minio/highwayhash"] - sumVersion = "v1.0.2" - ["github.com/minio/highwayhash".fetch] - type = "git" - url = "https://github.com/minio/highwayhash" - rev = "08ce0b4fa7932a018438133f1b632e1c674d4107" - sha256 = "1inrix7720273ccynxcyi7xsgc55cskxrw7gwn08qkmdj9xdxqai" - -["github.com/mitchellh/cli"] - sumVersion = "v1.1.0" - ["github.com/mitchellh/cli".fetch] - type = "git" - url = "https://github.com/mitchellh/cli" - rev = "902dcca838c81f360568876054b74ffcc419e421" - sha256 = "1x1jq0amsa0jpd4w19saz1wahmd8fb9mzs2ii4wk0mckr30n8nki" - -["github.com/mitchellh/go-homedir"] - sumVersion = "v1.1.0" - ["github.com/mitchellh/go-homedir".fetch] - type = "git" - url = "https://github.com/mitchellh/go-homedir" - rev = "af06845cf3004701891bf4fdb884bfe4920b3727" - sha256 = "0ydzkipf28hwj2bfxqmwlww47khyk6d152xax4bnyh60f4lq3nx1" - -["github.com/mitchellh/go-testing-interface"] - sumVersion = "v1.0.0" - ["github.com/mitchellh/go-testing-interface".fetch] - type = "git" - url = "https://github.com/mitchellh/go-testing-interface" - rev = "6d0b8010fcc857872e42fc6c931227569016843c" - sha256 = "1dl2js8di858bawg7dadlf1qjpkl2g3apziihjyf5imri3znyfpw" - -["github.com/mitchellh/gox"] - sumVersion = "v0.4.0" - ["github.com/mitchellh/gox".fetch] - type = "git" - url = "https://github.com/mitchellh/gox" - rev = "c9740af9c6574448fd48eb30a71f964014c7a837" - sha256 = "1q4fdkw904mrmh1q5z8pfd3r0gcn5dm776kldqawddy93iiwnp8r" - -["github.com/mitchellh/iochan"] - sumVersion = "v1.0.0" - ["github.com/mitchellh/iochan".fetch] - type = "git" - url = "https://github.com/mitchellh/iochan" - rev = "b6e3aadd28864e14dae41ff5c7261455b1242d24" - sha256 = "058n9bbf536f2nw3pbs7pysrg9cqvgkb28z2zf5wjyrzrknyk53g" - -["github.com/mitchellh/mapstructure"] - sumVersion = "v1.4.2" - ["github.com/mitchellh/mapstructure".fetch] - type = "git" - url = "https://github.com/mitchellh/mapstructure" - rev = "5ac1f6aa4011ece0c4df24a4fe8020a9cc21e393" - sha256 = "0akjnwsng42vak978pny84d946fbaj2kgp7fzvx30zpc6fzrmli7" - -["github.com/moby/sys/mountinfo"] - sumVersion = "v0.4.1" - relPath = "mountinfo" - ["github.com/moby/sys/mountinfo".fetch] - type = "git" - url = "https://github.com/moby/sys" - rev = "b0f1fd7235275d01bd35cc4421e884e522395f45" - sha256 = "1svicfa0gyq8fcbsl475gpr0y5rgv0389d9yq6hzwz2acrdxyxm2" - -["github.com/modern-go/concurrent"] - sumVersion = "v0.0.0-20180306012644-bacd9c7ef1dd" - ["github.com/modern-go/concurrent".fetch] - type = "git" - url = "https://github.com/modern-go/concurrent" - rev = "bacd9c7ef1dd9b15be4a9909b8ac7a4e313eec94" - sha256 = "0s0fxccsyb8icjmiym5k7prcqx36hvgdwl588y0491gi18k5i4zs" - -["github.com/modern-go/reflect2"] - sumVersion = "v1.0.2" - ["github.com/modern-go/reflect2".fetch] - type = "git" - url = "https://github.com/modern-go/reflect2" - rev = "2b33151c9bbc5231aea69b8861c540102b087070" - sha256 = "05a89f9j4nj8v1bchfkv2sy8piz746ikj831ilbp54g8dqhl8vzr" - -["github.com/mrunalp/fileutils"] - sumVersion = "v0.5.0" - ["github.com/mrunalp/fileutils".fetch] - type = "git" - url = "https://github.com/mrunalp/fileutils" - rev = "d7fdd64cc1cabe10bc154ee7d2318b07b7f296ef" - sha256 = "1zrs959gf4zgi6ijwkdn4dcqk0svfblpaikkqy63q30rqz4swm0x" - -["github.com/mtibben/percent"] - sumVersion = "v0.2.1" - ["github.com/mtibben/percent".fetch] - type = "git" - url = "https://github.com/mtibben/percent" - rev = "07b18b68c1413ce9f8137a8cbd4509fac9e15f0c" - sha256 = "1iqivw8pigj259rj5yifibbvic70f9hb7k24a4sa967s4fj6agb6" - -["github.com/mwitkow/go-conntrack"] - sumVersion = "v0.0.0-20190716064945-2f068394615f" - ["github.com/mwitkow/go-conntrack".fetch] - type = "git" - url = "https://github.com/mwitkow/go-conntrack" - rev = "2f068394615f73e460c2f3d2c158b0ad9321cadb" - sha256 = "0ymjmy12ks7smgwmrwsa5kf07d9w5kpk1dn650azlzr61b561aw7" - -["github.com/mwitkow/grpc-proxy"] - sumVersion = "v0.0.0-20181017164139-0f1106ef9c76" - ["github.com/mwitkow/grpc-proxy".fetch] - type = "git" - url = "https://github.com/mwitkow/grpc-proxy" - rev = "0f1106ef9c766333b9acb4b81e705da4bade7215" - sha256 = "087kid1xiaxnhdhljcm1587cgiiwr0iznk931znkrz3f4gdjyqa2" - -["github.com/naoina/go-stringutil"] - sumVersion = "v0.1.0" - ["github.com/naoina/go-stringutil".fetch] - type = "git" - url = "https://github.com/naoina/go-stringutil" - rev = "6b638e95a32d0c1131db0e7fe83775cbea4a0d0b" - sha256 = "00831p1wn3rimybk1z8l30787kn1akv5jax5wx743nn76qcmkmc6" - -["github.com/naoina/toml"] - sumVersion = "v0.1.2-0.20170918210437-9fafd6967416" - ["github.com/naoina/toml".fetch] - type = "git" - url = "https://github.com/naoina/toml" - rev = "9fafd69674167c06933b1787ae235618431ce87f" - sha256 = "0mpvdnidgab48k7dfq1vaiz1wny8n29y7zxpipnp1zm8ibxpism0" - -["github.com/nats-io/jwt"] - sumVersion = "v1.2.2" - ["github.com/nats-io/jwt".fetch] - type = "git" - url = "https://github.com/nats-io/jwt" - rev = "0ea326566cb17313ecf982b6370758a0ac4bc7fd" - sha256 = "0mn5c8mmb1vmqa2hz238z8rb15znm17bfrf518myrssr93ymkfjz" - -["github.com/nats-io/jwt/v2"] - sumVersion = "v2.0.3" - relPath = "v2" - ["github.com/nats-io/jwt/v2".fetch] - type = "git" - url = "https://github.com/nats-io/jwt" - rev = "4ce4ed63235ec89cd741397addd1ffa7f233ed9b" - sha256 = "1348ffv8khj8lcwfdnlp03nk23w3rw7mx90nhgy47xk0qibv91kr" - -["github.com/nats-io/nats-server/v2"] - sumVersion = "v2.5.0" - ["github.com/nats-io/nats-server/v2".fetch] - type = "git" - url = "https://github.com/nats-io/nats-server" - rev = "b3c19b9dd19171b58da5b5135491848cf72da599" - sha256 = "1hhvk5hwqavka1qrhwbnfb8kl1kgx838rp92cpyy5b18n92y195b" - -["github.com/nats-io/nats.go"] - sumVersion = "v1.12.1" - ["github.com/nats-io/nats.go".fetch] - type = "git" - url = "https://github.com/nats-io/nats.go" - rev = "42edba421f77623576fb914344321612944faff7" - sha256 = "0s57gwnrmp3hx0khvixyp605g1kkbd87ycvk5k7lngpw093l1acy" - -["github.com/nats-io/nkeys"] - sumVersion = "v0.3.0" - ["github.com/nats-io/nkeys".fetch] - type = "git" - url = "https://github.com/nats-io/nkeys" - rev = "44384414044304395985410ff55ed78cbf0b09a8" - sha256 = "06wbmb3cxjrcfvgfbn6rdfzb4pfaaw11bnvl1r4kig4ag22qcz7b" - -["github.com/nats-io/nuid"] - sumVersion = "v1.0.1" - ["github.com/nats-io/nuid".fetch] - type = "git" - url = "https://github.com/nats-io/nuid" - rev = "4b96681fa6d28dd0ab5fe79bac63b3a493d9ee94" - sha256 = "11zbhg4kds5idsya04bwz4plj0mmiigypzppzih731ppbk2ms1zg" - -["github.com/neilotoole/errgroup"] - sumVersion = "v0.1.5" - ["github.com/neilotoole/errgroup".fetch] - type = "git" - url = "https://github.com/neilotoole/errgroup" - rev = "1b5ee5ba6837fe62f5c9f2275033db8ec84de004" - sha256 = "0jk0ws9cxdiicfd4w7mpvfgsx4fabgpjhyl8jwbqnzpq2w0pgk6p" - -["github.com/niemeyer/pretty"] - sumVersion = "v0.0.0-20200227124842-a10e7caefd8e" - ["github.com/niemeyer/pretty".fetch] - type = "git" - url = "https://github.com/niemeyer/pretty" - rev = "a10e7caefd8e0d600cea437f5c3613aeb1553d56" - sha256 = "1jmazh4xzaa3v6g46hz60q2z7nmqs9l9cxdzmmscn3kbcs2znq4v" - -["github.com/nishanths/predeclared"] - sumVersion = "v0.0.0-20200524104333-86fad755b4d3" - ["github.com/nishanths/predeclared".fetch] - type = "git" - url = "https://github.com/nishanths/predeclared" - rev = "86fad755b4d311159d91c13de0c9925a433fd6e5" - sha256 = "1prcndh4kds229xhhh4l7m25dn8w1wp7kj5gpcjs1z38w1jcpdh3" - -["github.com/nxadm/tail"] - sumVersion = "v1.4.8" - ["github.com/nxadm/tail".fetch] - type = "git" - url = "https://github.com/nxadm/tail" - rev = "abad231d8d07ef91e09cd4c4c457cac35ed3bbb9" - sha256 = "1j2gi485fhwdpmyzn42wk62103fclwbfywg42p275z1qv2bsz1rc" - -["github.com/oklog/oklog"] - sumVersion = "v0.3.2" - ["github.com/oklog/oklog".fetch] - type = "git" - url = "https://github.com/oklog/oklog" - rev = "e3ad1c411c27b4bc18c5facb9331820d141a5a54" - sha256 = "1xnjxhgi0zm51skl533la50h133a245i57wqa3h7fr2lv2jqpzny" - -["github.com/oklog/run"] - sumVersion = "v1.0.0" - ["github.com/oklog/run".fetch] - type = "git" - url = "https://github.com/oklog/run" - rev = "4dadeb3030eda0273a12382bb2348ffc7c9d1a39" - sha256 = "1pbjza4claaj95fpqvvfrysvs10y7dm0pl6qr5lzh6qy1vnhmcgw" - -["github.com/oklog/ulid"] - sumVersion = "v1.3.1" - ["github.com/oklog/ulid".fetch] - type = "git" - url = "https://github.com/oklog/ulid" - rev = "02a8604050d8466dd915307496174adb9be4593a" - sha256 = "0hybwyid820n80axrk863k2py93hbqlq6hxhf84ppmz0qd0ys0gq" - -["github.com/olekukonko/tablewriter"] - sumVersion = "v0.0.2-0.20190409134802-7e037d187b0c" - ["github.com/olekukonko/tablewriter".fetch] - type = "git" - url = "https://github.com/olekukonko/tablewriter" - rev = "7e037d187b0c13d81ccf0dd1c6b990c2759e6597" - sha256 = "0z7plnnnps1xlbbfjr99xxalpjz5kxizi24n4cdkqgp07gayh0af" - -["github.com/onsi/ginkgo"] - sumVersion = "v1.16.4" - ["github.com/onsi/ginkgo".fetch] - type = "git" - url = "https://github.com/onsi/ginkgo" - rev = "d125cd027fee341b3b3d65858a4121cf4931fead" - sha256 = "0rpzh0vg2k33szcq17rdwjvj3q6djp7vqfvasck40gsibadimnd7" - -["github.com/onsi/gomega"] - sumVersion = "v1.13.0" - ["github.com/onsi/gomega".fetch] - type = "git" - url = "https://github.com/onsi/gomega" - rev = "dbc6ecdcc526d81592dab902de6cbaf7be9a8a13" - sha256 = "1x49qblj010z4xvfj7c4jh9q9awrkvbwnfrglvbh30gglmmsss8g" - -["github.com/op/go-logging"] - sumVersion = "v0.0.0-20160315200505-970db520ece7" - ["github.com/op/go-logging".fetch] - type = "git" - url = "https://github.com/op/go-logging" - rev = "970db520ece77730c7e4724c61121037378659d9" - sha256 = "1cpna2x5l071z1vrnk7zipdkka8dzwsjyx7m79xk0lr08rip0kcj" - -["github.com/opencontainers/go-digest"] - sumVersion = "v1.0.0" - ["github.com/opencontainers/go-digest".fetch] - type = "git" - url = "https://github.com/opencontainers/go-digest" - rev = "ea51bea511f75cfa3ef6098cc253c5c3609b037a" - sha256 = "0i5acjajvr6hi9zb7gxwifd8w28y884cv7cx36adj8lngj647xbi" - -["github.com/opencontainers/image-spec"] - sumVersion = "v1.0.1" - ["github.com/opencontainers/image-spec".fetch] - type = "git" - url = "https://github.com/opencontainers/image-spec" - rev = "d60099175f88c47cd379c4738d158884749ed235" - sha256 = "03dvbj3dln8c55v9gp79mgmz2yi2ws3r08iyz2fk41y3i22iaw1q" - -["github.com/opencontainers/runc"] - sumVersion = "v1.0.2" - ["github.com/opencontainers/runc".fetch] - type = "git" - url = "https://github.com/opencontainers/runc" - rev = "52b36a2dd837e8462de8e01458bf02cf9eea47dd" - sha256 = "1bpckghjah0rczciw1a1ab8z718lb2d3k4mjm4zb45lpm3njmrcp" - -["github.com/opencontainers/runtime-spec"] - sumVersion = "v1.0.3-0.20210326190908-1c3f411f0417" - ["github.com/opencontainers/runtime-spec".fetch] - type = "git" - url = "https://github.com/opencontainers/runtime-spec" - rev = "1c3f411f041711bbeecf35ff7e93461ea6789220" - sha256 = "1azk8z41ga8af35c966f06vrq9y9hwz6mkm59r3py5qaamzim3qq" - -["github.com/opencontainers/selinux"] - sumVersion = "v1.8.2" - ["github.com/opencontainers/selinux".fetch] - type = "git" - url = "https://github.com/opencontainers/selinux" - rev = "76bc82e11d854d3e40c08889d13c98abcea72ea2" - sha256 = "1dl1h8nzpyhsfki1dcjphm5h4n52qwilahyl6qlnwgzcc76pwizq" - -["github.com/opentracing-contrib/go-observer"] - sumVersion = "v0.0.0-20170622124052-a52f23424492" - ["github.com/opentracing-contrib/go-observer".fetch] - type = "git" - url = "https://github.com/opentracing-contrib/go-observer" - rev = "a52f2342449246d5bcc273e65cbdcfa5f7d6c63c" - sha256 = "1q7z458m2vh3bzml4x9vm2paffqn1jcgiydbisl0zg2asfniq7k3" - -["github.com/opentracing/basictracer-go"] - sumVersion = "v1.0.0" - ["github.com/opentracing/basictracer-go".fetch] - type = "git" - url = "https://github.com/opentracing/basictracer-go" - rev = "1b32af207119a14b1b231d451df3ed04a72efebf" - sha256 = "0hs969asib4yqj5k755zr0byz2iqvjbs6z1szcnr50q6fihigca0" - -["github.com/opentracing/opentracing-go"] - sumVersion = "v1.2.0" - ["github.com/opentracing/opentracing-go".fetch] - type = "git" - url = "https://github.com/opentracing/opentracing-go" - rev = "d34af3eaa63c4d08ab54863a4bdd0daa45212e12" - sha256 = "04rgdwl29kimp2wnm4dycnzp7941hvpj6wym85x23c6fclacm94h" - -["github.com/openzipkin-contrib/zipkin-go-opentracing"] - sumVersion = "v0.4.5" - ["github.com/openzipkin-contrib/zipkin-go-opentracing".fetch] - type = "git" - url = "https://github.com/openzipkin-contrib/zipkin-go-opentracing" - rev = "223664cff43dfd9f54659ff15dc4bd6e023d0c14" - sha256 = "0mdvx50mw17c926rhhkjg8z54v8h0jvnqahdlpij2kbxi3ncgr7q" - -["github.com/openzipkin/zipkin-go"] - sumVersion = "v0.2.5" - ["github.com/openzipkin/zipkin-go".fetch] - type = "git" - url = "https://github.com/openzipkin/zipkin-go" - rev = "b98d75699e013868e73c146266a28bc8c9e2c372" - sha256 = "16khin03g3x1nmp4cizga72hg7n3bv9diy11y75nhidx360bg7fc" - -["github.com/ory/dockertest"] - sumVersion = "v3.3.5+incompatible" - ["github.com/ory/dockertest".fetch] - type = "git" - url = "https://github.com/ory/dockertest" - rev = "2b0896a948c60f3207381d9fc259d0fc13227c30" - sha256 = "0fgj60l82sl6chd7i4s7lxqjr9hxkzmkaxnc8h6qbvn42246sy68" - -["github.com/osmosis-labs/bech32-ibc"] - sumVersion = "v0.2.0-rc1.0.20211229033539-6398fe1c7f8c" - ["github.com/osmosis-labs/bech32-ibc".fetch] - type = "git" - url = "https://github.com/osmosis-labs/bech32-ibc" - rev = "6398fe1c7f8c1dd4de8b9a5240912cc9c3d4db05" - sha256 = "1fiaj47bqbqgn8hfv6qjdwic862qa7yvhwpyn3z5wnk6449725xg" - -["github.com/otiai10/copy"] - sumVersion = "v1.6.0" - ["github.com/otiai10/copy".fetch] - type = "git" - url = "https://github.com/otiai10/copy" - rev = "edeb9f37d4d0c28725014fcab6635120197932a1" - sha256 = "1l84qx9n464nh1izgr1kx5xb1ab878b2x803fck0w9gy1bwch25h" - -["github.com/otiai10/curr"] - sumVersion = "v1.0.0" - ["github.com/otiai10/curr".fetch] - type = "git" - url = "https://github.com/otiai10/curr" - rev = "88e2f2cffa0b5f13e90ee963a321bd1b2f715561" - sha256 = "0fpw20adq2wff7l4c87zaavj9jra4d64a8bbjixiiv3bbarim987" - -["github.com/otiai10/mint"] - sumVersion = "v1.3.2" - ["github.com/otiai10/mint".fetch] - type = "git" - url = "https://github.com/otiai10/mint" - rev = "3588d691480a831b1e78b776d3bccd9d5ce6461c" - sha256 = "0448nkhmp1ny64g2d7m5x8inz118zj03j6q0b97q3dszzs7hhan4" - -["github.com/pact-foundation/pact-go"] - sumVersion = "v1.0.4" - ["github.com/pact-foundation/pact-go".fetch] - type = "git" - url = "https://github.com/pact-foundation/pact-go" - rev = "3ce08c8af46b7bc33a06efc9b8807c08806c8af2" - sha256 = "08mnyf1yb6zjqfzs1pdh44drv390lfilhh4vi4asnjk52gknqfn0" - -["github.com/pascaldekloe/goe"] - sumVersion = "v0.1.0" - ["github.com/pascaldekloe/goe".fetch] - type = "git" - url = "https://github.com/pascaldekloe/goe" - rev = "57f6aae5913c64c9bcae5dbdffd33365b5a7f138" - sha256 = "1dqd3mfb4z2vmv6pg6fhgvfc53vhndk24wcl9lj1rz02n6m279fq" - -["github.com/pborman/uuid"] - sumVersion = "v1.2.0" - ["github.com/pborman/uuid".fetch] - type = "git" - url = "https://github.com/pborman/uuid" - rev = "8b1b92947f46224e3b97bb1a3a5b0382be00d31e" - sha256 = "0f146yjqwx2mr110kl8scjhqd08hys7vr5z0d0a3lskb6yy22gfg" - -["github.com/pelletier/go-toml"] - sumVersion = "v1.9.4" - ["github.com/pelletier/go-toml".fetch] - type = "git" - url = "https://github.com/pelletier/go-toml" - rev = "b8ba995eaaba4be30c8a8090bdfb4aa61af52054" - sha256 = "0f2d9m19dadl18i2baf57xygvn9vprm6wb8chvpx8kipx94nchyl" - -["github.com/performancecopilot/speed"] - sumVersion = "v3.0.0+incompatible" - ["github.com/performancecopilot/speed".fetch] - type = "git" - url = "https://github.com/performancecopilot/speed" - rev = "839069a3ed70162d3bcefb9891c8ca852d877c1c" - sha256 = "1r0l6i80xkx9dcysa7ajvs5ypqkw2k0422k0hbz28fizaq9d8y0m" - -["github.com/performancecopilot/speed/v4"] - sumVersion = "v4.0.0" - ["github.com/performancecopilot/speed/v4".fetch] - type = "git" - url = "https://github.com/performancecopilot/speed" - rev = "680d7c7921789aa5ab2d37fc67a7fb64f0b5ba96" - sha256 = "0zpf42pid3cd3sqv4gy2h51adq2zpw0pi0v3fpgxqna4iia280j0" - -["github.com/peterh/liner"] - sumVersion = "v1.1.1-0.20190123174540-a2c9a5303de7" - ["github.com/peterh/liner".fetch] - type = "git" - url = "https://github.com/peterh/liner" - rev = "a2c9a5303de792c7581a3b80a8f10258319bb20e" - sha256 = "1cxpr92adcyv4bimswkfg3cmpmk71zq9gpyckhc64j2p4r4mb8zr" - -["github.com/petermattis/goid"] - sumVersion = "v0.0.0-20180202154549-b0b1615b78e5" - ["github.com/petermattis/goid".fetch] - type = "git" - url = "https://github.com/petermattis/goid" - rev = "b0b1615b78e5ee59739545bb38426383b2cda4c9" - sha256 = "0ghfxn045r0bbn2vszw897lxzmhnm4k59aypjvpxl0pbzsw9ab2c" - -["github.com/philhofer/fwd"] - sumVersion = "v1.1.1" - ["github.com/philhofer/fwd".fetch] - type = "git" - url = "https://github.com/philhofer/fwd" - rev = "9bcb9cab1b0394d8516a132ec243ba944efdb644" - sha256 = "1z88ry83lf01mv69kd2jwbhngh24qwhhknj3l5jn2kz5nycq6bkx" - -["github.com/pierrec/lz4"] - sumVersion = "v2.0.5+incompatible" - ["github.com/pierrec/lz4".fetch] - type = "git" - url = "https://github.com/pierrec/lz4" - rev = "ea731401f5c95a8ba30f15787e5e0fb77c60c66b" - sha256 = "0y5rh7z01zycd59nnjpkqq0ydyjmcg9j1xw15q1i600l9j9g617p" - -["github.com/pkg/errors"] - sumVersion = "v0.9.1" - ["github.com/pkg/errors".fetch] - type = "git" - url = "https://github.com/pkg/errors" - rev = "614d223910a179a466c1767a985424175c39b465" - sha256 = "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq" - -["github.com/pkg/profile"] - sumVersion = "v1.2.1" - ["github.com/pkg/profile".fetch] - type = "git" - url = "https://github.com/pkg/profile" - rev = "5b67d428864e92711fcbd2f8629456121a56d91f" - sha256 = "0blqmvgqvdbqmh3fp9pfdxc9w1qfshrr0zy9whj0sn372bw64qnr" - -["github.com/pkg/sftp"] - sumVersion = "v1.10.1" - ["github.com/pkg/sftp".fetch] - type = "git" - url = "https://github.com/pkg/sftp" - rev = "3edd153f213d8d4191a0ee4577c61cca19436632" - sha256 = "0iw6lijdljwh5xw5hsy0b578cr52h6vvm7hbnzlrvciwhh4sfhhp" - -["github.com/pmezard/go-difflib"] - sumVersion = "v1.0.0" - ["github.com/pmezard/go-difflib".fetch] - type = "git" - url = "https://github.com/pmezard/go-difflib" - rev = "792786c7400a136282c1664665ae0a8db921c6c2" - sha256 = "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw" - -["github.com/posener/complete"] - sumVersion = "v1.2.3" - ["github.com/posener/complete".fetch] - type = "git" - url = "https://github.com/posener/complete" - rev = "05b68ffc813dd10c420993cb1cf927b346c057b8" - sha256 = "0nri6hkfb0z3dkxf2fsfidr4bxbn91rjsqhg5s0c2jplf0aclppz" - -["github.com/prometheus/client_golang"] - sumVersion = "v1.11.0" - ["github.com/prometheus/client_golang".fetch] - type = "git" - url = "https://github.com/prometheus/client_golang" - rev = "8184d76b3b0bd3b01ed903690431ccb6826bf3e0" - sha256 = "1xdspykw6wgp0bv7s1r7gklvhr5jfmi59n8bg8zhy3vi0yi902y3" - -["github.com/prometheus/client_model"] - sumVersion = "v0.2.0" - ["github.com/prometheus/client_model".fetch] - type = "git" - url = "https://github.com/prometheus/client_model" - rev = "7bc5445566f0fe75b15de23e6b93886e982d7bf9" - sha256 = "0jffnz94d6ff39fr96b5w8i8yk26pwnrfggzz8jhi8k0yihg2c9d" - -["github.com/prometheus/common"] - sumVersion = "v0.30.0" - ["github.com/prometheus/common".fetch] - type = "git" - url = "https://github.com/prometheus/common" - rev = "8d1c9f84e3f78cb628a20f8e7be531c508237848" - sha256 = "1zjv2gq62h3x3k8qlw14wyi1ka1qw62654ldqpqphfp2chhxyvna" - -["github.com/prometheus/procfs"] - sumVersion = "v0.7.3" - ["github.com/prometheus/procfs".fetch] - type = "git" - url = "https://github.com/prometheus/procfs" - rev = "f436cbb89ece38bf080d446b3ca27053b305eaac" - sha256 = "00z7ghcb86y2ajx0xvwmn3d18nq4djmvmjn52crgm85gsl442lb4" - -["github.com/prometheus/tsdb"] - sumVersion = "v0.7.1" - ["github.com/prometheus/tsdb".fetch] - type = "git" - url = "https://github.com/prometheus/tsdb" - rev = "c20450564cc42983bf923c13f3fda42de709ac13" - sha256 = "1c1da8i5byvhh4fp3vqjfb65aaksjskn3ggb8wg9hcfzjrhgpz04" - -["github.com/rakyll/statik"] - sumVersion = "v0.1.7" - ["github.com/rakyll/statik".fetch] - type = "git" - url = "https://github.com/rakyll/statik" - rev = "46bd79c4540341fe472fe71dd2ce0ccd4e635450" - sha256 = "0y0kbzma55vmyqhyrw9ssgvxn6nw7d0zg72a7nz8vp1zly4hs6va" - -["github.com/rcrowley/go-metrics"] - sumVersion = "v0.0.0-20200313005456-10cdbea86bc0" - ["github.com/rcrowley/go-metrics".fetch] - type = "git" - url = "https://github.com/rcrowley/go-metrics" - rev = "10cdbea86bc0b922507ce91d43f4f78a5bea2e8f" - sha256 = "157rfn5kf1mdn65gay38zpv6zam3sfa5a3zkx9wxk77y7w3kam19" - -["github.com/regen-network/cosmos-proto"] - sumVersion = "v0.3.1" - ["github.com/regen-network/cosmos-proto".fetch] - type = "git" - url = "https://github.com/regen-network/cosmos-proto" - rev = "f793b6157c2cfb8c1c797100e1918b2d1eb40615" - sha256 = "05sk9jhk4qz5m4vkj0wr0swhvq9niz7v7bvpxh063vz0y6mmpj05" - -["github.com/rjeczalik/notify"] - sumVersion = "v0.9.1" - ["github.com/rjeczalik/notify".fetch] - type = "git" - url = "https://github.com/rjeczalik/notify" - rev = "0f065fa99b48b842c3fd3e2c8b194c6f2b69f6b8" - sha256 = "15zzgyry10hvg0z2d3fm1yncbscln9mmvgsm29w67yncf6n8vcb0" - -["github.com/rogpeppe/fastuuid"] - sumVersion = "v1.2.0" - ["github.com/rogpeppe/fastuuid".fetch] - type = "git" - url = "https://github.com/rogpeppe/fastuuid" - rev = "10c3923834d38e951ae8f627bfec2dc632c5b6cb" - sha256 = "028acdg63zkxpjz3l639nlhki2l0canr2v5jglrmwa1wpjqcfff8" - -["github.com/rogpeppe/go-internal"] - sumVersion = "v1.3.0" - ["github.com/rogpeppe/go-internal".fetch] - type = "git" - url = "https://github.com/rogpeppe/go-internal" - rev = "438578804ca6f31be148c27683afc419ce47c06e" - sha256 = "0mcdh1licgnnahwml9y2iq6xy5x9xmjw5frcnds2s3wpjyqrl216" - -["github.com/rs/cors"] - sumVersion = "v1.8.0" - ["github.com/rs/cors".fetch] - type = "git" - url = "https://github.com/rs/cors" - rev = "64821dda5aedeb954fb2caf787f7a1030085ab34" - sha256 = "07nf0lai4m5m61j6kscynqcwpj28df13g79rrdmk0g3ba3cbf9gr" - -["github.com/rs/xhandler"] - sumVersion = "v0.0.0-20160618193221-ed27b6fd6521" - ["github.com/rs/xhandler".fetch] - type = "git" - url = "https://github.com/rs/xhandler" - rev = "ed27b6fd65218132ee50cd95f38474a3d8a2cd12" - sha256 = "1fpp4rh812nvr5m0s0d5dsa1ypr4333mcijng0dp5bcgg2bqkwdz" - -["github.com/rs/xid"] - sumVersion = "v1.2.1" - ["github.com/rs/xid".fetch] - type = "git" - url = "https://github.com/rs/xid" - rev = "15d26544def341f036c5f8dca987a4cbe575032c" - sha256 = "1vgw1dikqw273awcci6pzifs7shkl5ah4l88j1zjbnpgbiwzlx9j" - -["github.com/rs/zerolog"] - sumVersion = "v1.23.0" - ["github.com/rs/zerolog".fetch] - type = "git" - url = "https://github.com/rs/zerolog" - rev = "117cb53bc66413d9a810ebed32383e53416347e3" - sha256 = "1cz9g25b47hxhz2nd15pcxarzwnwknm4f2nm4dspr1l99jxll733" - -["github.com/russross/blackfriday"] - sumVersion = "v1.5.2" - ["github.com/russross/blackfriday".fetch] - type = "git" - url = "https://github.com/russross/blackfriday" - rev = "05f3235734ad95d0016f6a23902f06461fcf567a" - sha256 = "0jzbfzcywqcrnym4gxlz6nphmm1grg6wsl4f0r9x384rn83wkj7c" - -["github.com/russross/blackfriday/v2"] - sumVersion = "v2.0.1" - ["github.com/russross/blackfriday/v2".fetch] - type = "git" - url = "https://github.com/russross/blackfriday" - rev = "d3b5b032dc8e8927d31a5071b56e14c89f045135" - sha256 = "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j" - -["github.com/ryanuber/columnize"] - sumVersion = "v0.0.0-20160712163229-9b3edd62028f" - ["github.com/ryanuber/columnize".fetch] - type = "git" - url = "https://github.com/ryanuber/columnize" - rev = "9b3edd62028f107d7cabb19353292afd29311a4e" - sha256 = "1ya1idkbb0a9fjlhkcnh5a9yvpwzwfmbyg7d56lpplwr9rqi1da4" - -["github.com/sagikazarmark/crypt"] - sumVersion = "v0.1.0" - ["github.com/sagikazarmark/crypt".fetch] - type = "git" - url = "https://github.com/sagikazarmark/crypt" - rev = "85fcc6e1590a7c442fe8de402fa70a85923d877b" - sha256 = "0qwwzyjjwd7z91nqf9706clvf05n3l9j28zmxrn47y126pq4kdph" - -["github.com/samuel/go-zookeeper"] - sumVersion = "v0.0.0-20190923202752-2cc03de413da" - ["github.com/samuel/go-zookeeper".fetch] - type = "git" - url = "https://github.com/samuel/go-zookeeper" - rev = "2cc03de413da42869e2db7ce7965d3e978d917eb" - sha256 = "11z2r73q6qk9xy3mzkhdxd7cbfqsdr0105d5m03q4r47fki46hgx" - -["github.com/sasha-s/go-deadlock"] - sumVersion = "v0.2.1-0.20190427202633-1595213edefa" - ["github.com/sasha-s/go-deadlock".fetch] - type = "git" - url = "https://github.com/sasha-s/go-deadlock" - rev = "1595213edefa28ca5047b00340c63557f9c051d0" - sha256 = "06h5g16zlfnw9wvgaqp7jfav3n3pvli6asfcx1hv44sl601wnwk0" - -["github.com/sean-/seed"] - sumVersion = "v0.0.0-20170313163322-e2103e2c3529" - ["github.com/sean-/seed".fetch] - type = "git" - url = "https://github.com/sean-/seed" - rev = "e2103e2c35297fb7e17febb81e49b312087a2372" - sha256 = "0glir8jxi1w7aga2jwdb63pp1h8q4whknili7xixsqzwyy716125" - -["github.com/seccomp/libseccomp-golang"] - sumVersion = "v0.9.1" - ["github.com/seccomp/libseccomp-golang".fetch] - type = "git" - url = "https://github.com/seccomp/libseccomp-golang" - rev = "689e3c1541a84461afc49c1c87352a6cedf72e9c" - sha256 = "022c8prvxz0shrifams7lq4xidvkcqg9xi87wjjcpmbikqi72cna" - -["github.com/segmentio/fasthash"] - sumVersion = "v1.0.3" - ["github.com/segmentio/fasthash".fetch] - type = "git" - url = "https://github.com/segmentio/fasthash" - rev = "9dc1b83dc0d8bf7d26ea69d6c6d7a11ebf6fbb89" - sha256 = "0wrlviycj5hz4w576f156h2cpnnmkflfx5jfj298qzn5lymnqv86" - -["github.com/shirou/gopsutil"] - sumVersion = "v2.20.5+incompatible" - ["github.com/shirou/gopsutil".fetch] - type = "git" - url = "https://github.com/shirou/gopsutil" - rev = "663af789c0858f2ede24f71a8dfba3643100dec9" - sha256 = "1q115pn37ymfqis43sm82iivbab4zk4gmjng21yb54vjk8pzsjvr" - -["github.com/shurcooL/sanitized_anchor_name"] - sumVersion = "v1.0.0" - ["github.com/shurcooL/sanitized_anchor_name".fetch] - type = "git" - url = "https://github.com/shurcooL/sanitized_anchor_name" - rev = "7bfe4c7ecddb3666a94b053b422cdd8f5aaa3615" - sha256 = "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f" - -["github.com/sirupsen/logrus"] - sumVersion = "v1.8.1" - ["github.com/sirupsen/logrus".fetch] - type = "git" - url = "https://github.com/sirupsen/logrus" - rev = "bdc0db8ead3853c56b7cd1ac2ba4e11b47d7da6b" - sha256 = "0rvqzic2zz7fpxyizmqxwmhv1m52ii9bgxnqa6km8wsa0l08wh42" - -["github.com/smartystreets/assertions"] - sumVersion = "v0.0.0-20180927180507-b2de0cb4f26d" - ["github.com/smartystreets/assertions".fetch] - type = "git" - url = "https://github.com/smartystreets/assertions" - rev = "b2de0cb4f26d0705483a2f495d89896d0b808573" - sha256 = "1i7ldgavgl35c7gk25p7bvdr282ckng090zr4ch9mk1705akx09y" - -["github.com/smartystreets/goconvey"] - sumVersion = "v1.6.4" - ["github.com/smartystreets/goconvey".fetch] - type = "git" - url = "https://github.com/smartystreets/goconvey" - rev = "505e419363375c0dc132d3ac02632a4ee32199ca" - sha256 = "07zjxwszayal88z1j2bwnqrsa32vg8l4nivks5yfr9j8xfsw7n6m" - -["github.com/snikch/goodman"] - sumVersion = "v0.0.0-20171125024755-10e37e294daa" - ["github.com/snikch/goodman".fetch] - type = "git" - url = "https://github.com/snikch/goodman" - rev = "10e37e294daa3c9a90abded60ff9924bafab3888" - sha256 = "0n6m17lmlfsynd7ja3s3w7pgpi7zdyakqbg4ahzdq9918fwddqmp" - -["github.com/soheilhy/cmux"] - sumVersion = "v0.1.4" - ["github.com/soheilhy/cmux".fetch] - type = "git" - url = "https://github.com/soheilhy/cmux" - rev = "e09e9389d85d8492d313d73d1469c029e710623f" - sha256 = "1f736g68d9vwlyfb6g0fxkr0r875369xafk30cz8kaq5niaqwv0h" - -["github.com/sony/gobreaker"] - sumVersion = "v0.4.1" - ["github.com/sony/gobreaker".fetch] - type = "git" - url = "https://github.com/sony/gobreaker" - rev = "21dbfda1fc5e89b91bd0c835a91c31fe4d461e88" - sha256 = "0iarblm3w2d0p997jsw9bkznfj0wa8d586nh37ii5gnqy41va700" - -["github.com/spaolacci/murmur3"] - sumVersion = "v1.1.0" - ["github.com/spaolacci/murmur3".fetch] - type = "git" - url = "https://github.com/spaolacci/murmur3" - rev = "f09979ecbc725b9e6d41a297405f65e7e8804acc" - sha256 = "1lv3zyz3jy2d76bhvvs8svygx66606iygdvwy5cwc0p5z8yghq25" - -["github.com/spf13/afero"] - sumVersion = "v1.6.0" - ["github.com/spf13/afero".fetch] - type = "git" - url = "https://github.com/spf13/afero" - rev = "bc94f58beda5dbff6f74599fcb1f1717c5b1c111" - sha256 = "0yi8p0yxiidpcg4cagxg2iyqcaapsng89rak4qyxmgails2fqg37" - -["github.com/spf13/cast"] - sumVersion = "v1.4.1" - ["github.com/spf13/cast".fetch] - type = "git" - url = "https://github.com/spf13/cast" - rev = "88075729b052bca4b8b6c31bf198db2fe6c9da93" - sha256 = "06qsfpvcbgkf2pvcvf9l46fj55kmbhp2yz382fkj5gll2bykx9ld" - -["github.com/spf13/cobra"] - sumVersion = "v1.2.1" - ["github.com/spf13/cobra".fetch] - type = "git" - url = "https://github.com/spf13/cobra" - rev = "de187e874d1ca382320088f8f6d76333408e5c2e" - sha256 = "091kz3xnlsgpqb90fc5nhjr4yfr8b8sjnyl0zd4wm1fgzkpw09jh" - -["github.com/spf13/jwalterweatherman"] - sumVersion = "v1.1.0" - ["github.com/spf13/jwalterweatherman".fetch] - type = "git" - url = "https://github.com/spf13/jwalterweatherman" - rev = "94f6ae3ed3bceceafa716478c5fbf8d29ca601a1" - sha256 = "1ywmkwci5zyd88ijym6f30fj5c0k2yayxarkmnazf5ybljv50q7b" - -["github.com/spf13/pflag"] - sumVersion = "v1.0.5" - ["github.com/spf13/pflag".fetch] - type = "git" - url = "https://github.com/spf13/pflag" - rev = "2e9d26c8c37aae03e3f9d4e90b7116f5accb7cab" - sha256 = "0gpmacngd0gpslnbkzi263f5ishigzgh6pbdv9hp092rnjl4nd31" - -["github.com/spf13/viper"] - sumVersion = "v1.9.0" - ["github.com/spf13/viper".fetch] - type = "git" - url = "https://github.com/spf13/viper" - rev = "b1fdc47b0d05b6af898a3d50aefd62c5825a17fe" - sha256 = "1bg01lr30mn57cy437xcmz7dr7clgwgiaabjzzd0zxn2v11rz0wc" - -["github.com/status-im/keycard-go"] - sumVersion = "v0.0.0-20190316090335-8537d3370df4" - ["github.com/status-im/keycard-go".fetch] - type = "git" - url = "https://github.com/status-im/keycard-go" - rev = "8537d3370df43a30a3d450c023783d2e43432b89" - sha256 = "15kbh04282vyb59fy9rjr533aa6vlxxh0cpa66x2qw6wb0896za1" - -["github.com/steakknife/bloomfilter"] - sumVersion = "v0.0.0-20180922174646-6819c0d2a570" - ["github.com/steakknife/bloomfilter".fetch] - type = "git" - url = "https://github.com/steakknife/bloomfilter" - rev = "6819c0d2a57025e1700378ee59b7382d71987f14" - sha256 = "1dr4pb172rwi9cxvxl23j4j8q6ybqjfzll5dd14cd398f231nk81" - -["github.com/steakknife/hamming"] - sumVersion = "v0.0.0-20180906055917-c99c65617cd3" - ["github.com/steakknife/hamming".fetch] - type = "git" - url = "https://github.com/steakknife/hamming" - rev = "c99c65617cd3d686aea8365fe563d6542f01d940" - sha256 = "03scc8fkkwpbc7p9ymlrm6wg57mzr0d6s2k2dz2gp339pllxyxjr" - -["github.com/streadway/amqp"] - sumVersion = "v1.0.0" - ["github.com/streadway/amqp".fetch] - type = "git" - url = "https://github.com/streadway/amqp" - rev = "1c71cc93ed716f9a6f4c2ae8955c25f9176d9f19" - sha256 = "0k740vmzkdv9il201x4mj0md73w30jqlmn1q7m1ng3dmi635qrlr" - -["github.com/streadway/handy"] - sumVersion = "v0.0.0-20200128134331-0f66f006fb2e" - ["github.com/streadway/handy".fetch] - type = "git" - url = "https://github.com/streadway/handy" - rev = "0f66f006fb2ebde51f4ce769641df75d602989e7" - sha256 = "03cm61ndfj6mz8kjsdb5jjka94v21fqn6nd5agnvhb7qx3fkq1y4" - -["github.com/stretchr/objx"] - sumVersion = "v0.2.0" - ["github.com/stretchr/objx".fetch] - type = "git" - url = "https://github.com/stretchr/objx" - rev = "ea4fe68685ee0d3cee7032121851b57e7494e8ea" - sha256 = "0pcdvakxgddaiwcdj73ra4da05a3q4cgwbpm2w75ycq4kzv8ij8k" - -["github.com/stretchr/testify"] - sumVersion = "v1.7.0" - ["github.com/stretchr/testify".fetch] - type = "git" - url = "https://github.com/stretchr/testify" - rev = "acba37e5db06f0093b465a7d47822bf13644b66c" - sha256 = "0ixgjsvafr3513pz3r6pmgk074s2dxkll0dadvl25gkf30rkmh10" - -["github.com/subosito/gotenv"] - sumVersion = "v1.2.0" - ["github.com/subosito/gotenv".fetch] - type = "git" - url = "https://github.com/subosito/gotenv" - rev = "2ef7124db659d49edac6aa459693a15ae36c671a" - sha256 = "0mav91j7r4arjkpq5zcf9j74f6pww8ic53x43wy7kg3ibw31yjs5" - -["github.com/syndtr/gocapability"] - sumVersion = "v0.0.0-20200815063812-42c35b437635" - ["github.com/syndtr/gocapability".fetch] - type = "git" - url = "https://github.com/syndtr/gocapability" - rev = "42c35b4376354fd554efc7ad35e0b7f94e3a0ffb" - sha256 = "00zi0k190ydlm9drnafvj9p4cf6axm858wr71pbmq1p3r94iqws4" - -["github.com/syndtr/goleveldb"] - sumVersion = "v1.0.1-0.20200815110645-5c35d600f0ca" - ["github.com/syndtr/goleveldb".fetch] - type = "git" - url = "https://github.com/syndtr/goleveldb" - rev = "5c35d600f0caac04c20d52438103f1a7aa612598" - sha256 = "0wsqybzip0khzgk4cl23ilm30jnf4yd674dkbq4c26ivak9qkmz7" - -["github.com/tecbot/gorocksdb"] - sumVersion = "v1.1.1" - vendorPath = "github.com/cosmos/gorocksdb" - ["github.com/tecbot/gorocksdb".fetch] - type = "git" - url = "https://github.com/cosmos/gorocksdb" - rev = "44142b447830b99c0dff2fa3e23d9ff7446da974" - sha256 = "11ibfqxvlc5jvwc88in7xadyahy9804bdbfrbil3h76a7mf7zc7q" - -["github.com/tendermint/btcd"] - sumVersion = "v0.1.1" - ["github.com/tendermint/btcd".fetch] - type = "git" - url = "https://github.com/tendermint/btcd" - rev = "80daadac05d1cd29571fccf27002d79667a88b58" - sha256 = "16s909z5awvqi060rdj577wzbgziyk88s53x24kv9rzc71rm99x1" - -["github.com/tendermint/crypto"] - sumVersion = "v0.0.0-20191022145703-50d29ede1e15" - ["github.com/tendermint/crypto".fetch] - type = "git" - url = "https://github.com/tendermint/crypto" - rev = "50d29ede1e15ab205c8558ad67b85596ee19d3a0" - sha256 = "0vhyxsypb2q1zpcl464hlsdpap7kc3nj6gdff53xwrln2bg1jjin" - -["github.com/tendermint/go-amino"] - sumVersion = "v0.16.0" - ["github.com/tendermint/go-amino".fetch] - type = "git" - url = "https://github.com/tendermint/go-amino" - rev = "ccb15b138dfd74282be78f5e9059387768b12918" - sha256 = "1zcms3l5fihzg8nf4vhdk18qpn1jkbm3rpkjfpskfcrgzlxk6vi5" - -["github.com/tendermint/tendermint"] - sumVersion = "v0.34.12-0.20220109173307-59a781894ea7" - vendorPath = "github.com/osmosis-labs/tendermint" - ["github.com/tendermint/tendermint".fetch] - type = "git" - url = "https://github.com/osmosis-labs/tendermint" - rev = "59a781894ea7aace522d54839a63d57178823a78" - sha256 = "0j1bfpdlyk7xzby0n02ir2a3vgkfrj1650nq8xm0rfmz4idgbfmp" - -["github.com/tendermint/tm-db"] - sumVersion = "v0.6.6" - ["github.com/tendermint/tm-db".fetch] - type = "git" - url = "https://github.com/tendermint/tm-db" - rev = "0e6efdda1b15ef02cdb8f66b36bac942943ab7d5" - sha256 = "1rf4x35q7vbpvx8zm8sckiasm7aim3n7qkcrgfvibwwn9jd7m4rl" - -["github.com/tidwall/gjson"] - sumVersion = "v1.6.7" - ["github.com/tidwall/gjson".fetch] - type = "git" - url = "https://github.com/tidwall/gjson" - rev = "97ec619cbe9546828dc45cb856a5938dcf3d74e1" - sha256 = "1gq689xp5bqxn17hcg8kwciakr05rz84dgd8qpiy7aqdv8iqrghq" - -["github.com/tidwall/match"] - sumVersion = "v1.0.3" - ["github.com/tidwall/match".fetch] - type = "git" - url = "https://github.com/tidwall/match" - rev = "c2f534168b739a7ec1821a33839fb2f029f26bbc" - sha256 = "1haa5p7hsjqx0ijxbypgc9c31v128mykm1g0lyymvkk3qdajvcyr" - -["github.com/tidwall/pretty"] - sumVersion = "v1.0.2" - ["github.com/tidwall/pretty".fetch] - type = "git" - url = "https://github.com/tidwall/pretty" - rev = "ef453c788d6a371829f4f9967b014b2b81856df5" - sha256 = "0bfp2nqwd7w3709lsyw2iw71hgbrnhcs1nr9n4vbari408qk2rv0" - -["github.com/tidwall/sjson"] - sumVersion = "v1.1.4" - ["github.com/tidwall/sjson".fetch] - type = "git" - url = "https://github.com/tidwall/sjson" - rev = "b547b7aea4b0c9a8ed8885f0790aea039483f337" - sha256 = "0nin7n4bfjxznkkrjb4g7clprnmkdx79hgx1rjakxqp821l6s85s" - -["github.com/tinylib/msgp"] - sumVersion = "v1.1.5" - ["github.com/tinylib/msgp".fetch] - type = "git" - url = "https://github.com/tinylib/msgp" - rev = "39957431e67861ab76dd17151171e1d086e5cff7" - sha256 = "1yi5agsmdx4q6d5g8jjbif3lfrkqjjmwqf8fkdqix78x4gs673ra" - -["github.com/tmc/grpc-websocket-proxy"] - sumVersion = "v0.0.0-20190109142713-0ad062ec5ee5" - ["github.com/tmc/grpc-websocket-proxy".fetch] - type = "git" - url = "https://github.com/tmc/grpc-websocket-proxy" - rev = "0ad062ec5ee553a48f6dbd280b7a1b5638e8a113" - sha256 = "1anw4v9wspnw9xf2z5r9w0sszwjklyanl0l85wgg6nxak9gnrqp4" - -["github.com/ttacon/chalk"] - sumVersion = "v0.0.0-20160626202418-22c06c80ed31" - ["github.com/ttacon/chalk".fetch] - type = "git" - url = "https://github.com/ttacon/chalk" - rev = "22c06c80ed312dcb6e1cf394f9634aa2c4676e22" - sha256 = "1yacf9w6vp36hkhl9lq3gk7c551jcsbs348ivv2h3lwkhznldiwl" - -["github.com/tv42/httpunix"] - sumVersion = "v0.0.0-20191220191345-2ba4b9c3382c" - ["github.com/tv42/httpunix".fetch] - type = "git" - url = "https://github.com/tv42/httpunix" - rev = "2ba4b9c3382c77e7b9ea89d00746e6111d142a22" - sha256 = "0xbwpip2hsfhd2kd878jn5ndl8y1i9658lggha4x3xb5m1rsds9w" - -["github.com/tyler-smith/go-bip39"] - sumVersion = "v1.0.2" - ["github.com/tyler-smith/go-bip39".fetch] - type = "git" - url = "https://github.com/tyler-smith/go-bip39" - rev = "5e3853c3f4e1a44df487c7efeb064ee8b43755de" - sha256 = "1nbjm9h0hbchp3rgxlnzix5hzwa474kr311yqb1dqxmvyrngaq9w" - -["github.com/ugorji/go"] - sumVersion = "v1.1.7" - ["github.com/ugorji/go".fetch] - type = "git" - url = "https://github.com/ugorji/go" - rev = "23ab95ef5dc3b70286760af84ce2327a2b64ed62" - sha256 = "068gja55kbh2iivp03x4n9dcml0rxv0k64ivkmq06si2ar1835rm" - -["github.com/ugorji/go/codec"] - sumVersion = "v1.1.7" - relPath = "codec" - ["github.com/ugorji/go/codec".fetch] - type = "git" - url = "https://github.com/ugorji/go" - rev = "23ab95ef5dc3b70286760af84ce2327a2b64ed62" - sha256 = "068gja55kbh2iivp03x4n9dcml0rxv0k64ivkmq06si2ar1835rm" - -["github.com/urfave/cli"] - sumVersion = "v1.22.1" - ["github.com/urfave/cli".fetch] - type = "git" - url = "https://github.com/urfave/cli" - rev = "c71fbcefd21552b70cd625b2c54466006e258ad7" - sha256 = "04ymak18flqlfcn8lycmg8r3931al8dvr8f1cg9n4yjaskmg72v8" - -["github.com/vishvananda/netlink"] - sumVersion = "v1.1.0" - ["github.com/vishvananda/netlink".fetch] - type = "git" - url = "https://github.com/vishvananda/netlink" - rev = "f049be6f391489d3f374498fe0c8df8449258372" - sha256 = "1vhl30p1gx636a088ls4h6a0l8jjyfvz79fr5w0qzdrg4qg9h08h" - -["github.com/vishvananda/netns"] - sumVersion = "v0.0.0-20191106174202-0a2b9b5464df" - ["github.com/vishvananda/netns".fetch] - type = "git" - url = "https://github.com/vishvananda/netns" - rev = "0a2b9b5464df8343199164a0321edf3313202f7e" - sha256 = "1k1zb7pzc4r4wicq7ncspf6zsvq298lvpsq963ibj813shg657xw" - -["github.com/vmihailenco/msgpack/v5"] - sumVersion = "v5.1.4" - ["github.com/vmihailenco/msgpack/v5".fetch] - type = "git" - url = "https://github.com/vmihailenco/msgpack" - rev = "77a6f797778061f2c9c30b13418c3a2f5cb98070" - sha256 = "109nansr75fidx3r00nb4jkc14davfzb88kdf75h6jyk06b50iaa" - -["github.com/vmihailenco/tagparser"] - sumVersion = "v0.1.2" - ["github.com/vmihailenco/tagparser".fetch] - type = "git" - url = "https://github.com/vmihailenco/tagparser" - rev = "be04d19a03d0f4739671a500012335e98ebfeb9f" - sha256 = "0418gkcds57c6g6slf8kl3ya7xp14p5y42w1gqkiqp6p98nhblqh" - -["github.com/wsddn/go-ecdh"] - sumVersion = "v0.0.0-20161211032359-48726bab9208" - ["github.com/wsddn/go-ecdh".fetch] - type = "git" - url = "https://github.com/wsddn/go-ecdh" - rev = "48726bab92085232373de4ec5c51ce7b441c63a0" - sha256 = "1rszp777snp9qvnh2giim7d42cvca5l180gq4j7clbmshnzg6c6m" - -["github.com/xiang90/probing"] - sumVersion = "v0.0.0-20190116061207-43a291ad63a2" - ["github.com/xiang90/probing".fetch] - type = "git" - url = "https://github.com/xiang90/probing" - rev = "43a291ad63a214a207fefbf03c7d9d78b703162b" - sha256 = "1z22ms16j5j42775mf31isanwx2pwr1d8wqw8006dczjv36qnz5i" - -["github.com/xordataexchange/crypt"] - sumVersion = "v0.0.3-0.20170626215501-b2862e3d0a77" - ["github.com/xordataexchange/crypt".fetch] - type = "git" - url = "https://github.com/xordataexchange/crypt" - rev = "b2862e3d0a775f18c7cfe02273500ae307b61218" - sha256 = "04q3856anpzl4gdfgmg7pbp9cx231nkz3ymq2xp27rnmmwhfxr8y" - -["github.com/ybbus/jsonrpc"] - sumVersion = "v2.1.2+incompatible" - ["github.com/ybbus/jsonrpc".fetch] - type = "git" - url = "https://github.com/ybbus/jsonrpc" - rev = "dd866631e904a5df2067d934985c5def68f391ac" - sha256 = "1k2i4q4bliqfkam4gd00729plgi6f7wa60npqpgagrlfnd4w9k4m" - -["github.com/yuin/goldmark"] - sumVersion = "v1.3.5" - ["github.com/yuin/goldmark".fetch] - type = "git" - url = "https://github.com/yuin/goldmark" - rev = "9f5125e104c38283b8ca0a581793abe4260dd786" - sha256 = "08rrhfji92hixiv3v0wvamwcy56f90wsw84w7lyvad7g90kbsknx" - -["github.com/zondax/hid"] - sumVersion = "v0.9.0" - ["github.com/zondax/hid".fetch] - type = "git" - url = "https://github.com/zondax/hid" - rev = "302fd402163c34626286195dfa9adac758334acc" - sha256 = "1wnpfn4bd86nz2v9dgb40xpz1ya66vahdkrhb1gj4jyyxdnnhqkh" - -["go.etcd.io/bbolt"] - sumVersion = "v1.3.6" - ["go.etcd.io/bbolt".fetch] - type = "git" - url = "https://github.com/etcd-io/bbolt" - rev = "685b13a4ef0053a4a38623bcebda621db6f7eaf7" - sha256 = "0pj5245d417za41j6p09fmkbv05797vykr1bi9a6rnwddh1dbs8d" - -["go.etcd.io/etcd"] - sumVersion = "v0.0.0-20191023171146-3cf2f69b5738" - ["go.etcd.io/etcd".fetch] - type = "git" - url = "https://github.com/etcd-io/etcd" - rev = "3cf2f69b5738fb702ba1a935590f36b52b18979b" - sha256 = "1w5jr8shn6whccksmpbcllcr1f8gjgh1dnix5rmnv3wwr5in5cgq" - -["go.etcd.io/etcd/api/v3"] - sumVersion = "v3.5.0" - relPath = "api" - ["go.etcd.io/etcd/api/v3".fetch] - type = "git" - url = "https://github.com/etcd-io/etcd" - rev = "946a5a6f25c3b6b89408ab447852731bde6e6289" - sha256 = "1dinf1668bkpq5lff8sr4fjd7dkxw9smm1f9zcadpdz3ci3knpzg" - -["go.etcd.io/etcd/client/pkg/v3"] - sumVersion = "v3.5.0" - relPath = "client/pkg" - ["go.etcd.io/etcd/client/pkg/v3".fetch] - type = "git" - url = "https://github.com/etcd-io/etcd" - rev = "946a5a6f25c3b6b89408ab447852731bde6e6289" - sha256 = "1dinf1668bkpq5lff8sr4fjd7dkxw9smm1f9zcadpdz3ci3knpzg" - -["go.etcd.io/etcd/client/v2"] - sumVersion = "v2.305.0" - relPath = "client" - ["go.etcd.io/etcd/client/v2".fetch] - type = "git" - url = "https://github.com/etcd-io/etcd" - rev = "946a5a6f25c3b6b89408ab447852731bde6e6289" - sha256 = "1dinf1668bkpq5lff8sr4fjd7dkxw9smm1f9zcadpdz3ci3knpzg" - -["go.etcd.io/etcd/client/v3"] - sumVersion = "v3.5.0" - relPath = "client" - ["go.etcd.io/etcd/client/v3".fetch] - type = "git" - url = "https://github.com/etcd-io/etcd" - rev = "946a5a6f25c3b6b89408ab447852731bde6e6289" - sha256 = "1dinf1668bkpq5lff8sr4fjd7dkxw9smm1f9zcadpdz3ci3knpzg" - -["go.opencensus.io"] - sumVersion = "v0.23.0" - ["go.opencensus.io".fetch] - type = "git" - url = "https://github.com/census-instrumentation/opencensus-go" - rev = "49838f207d61097fc0ebb8aeef306913388376ca" - sha256 = "0gw4f7inf8y2ik00yfb36xganiq9rl4w2d1a41bsjqsh83ajz2km" - -["go.uber.org/atomic"] - sumVersion = "v1.9.0" - ["go.uber.org/atomic".fetch] - type = "git" - url = "https://github.com/uber-go/atomic" - rev = "3504dfaa1fa414923b1c8693f45d2f6931daf229" - sha256 = "187212bg6dvfwqiqqks936b6v62pkkx3zlnk5b4nz91acscc06xm" - -["go.uber.org/goleak"] - sumVersion = "v1.1.11-0.20210813005559-691160354723" - ["go.uber.org/goleak".fetch] - type = "git" - url = "https://github.com/uber-go/goleak" - rev = "691160354723362697a4dc8aa10cd4c4c072ee45" - sha256 = "1xzbvz7qkcxajp4jhmpsm12i45hskz5clj964z5x14xxndzsfj3v" - -["go.uber.org/multierr"] - sumVersion = "v1.7.0" - ["go.uber.org/multierr".fetch] - type = "git" - url = "https://github.com/uber-go/multierr" - rev = "a5cd5509686189240486545be669e1dff9b98dcf" - sha256 = "1rxnsq38i4skhvbpv891xiih4gvry5l3ph5vhgv0wz67pykvvvwa" - -["go.uber.org/tools"] - sumVersion = "v0.0.0-20190618225709-2cfd321de3ee" - ["go.uber.org/tools".fetch] - type = "git" - url = "https://github.com/uber-go/tools" - rev = "2cfd321de3ee5d5f8a5fda2521d1703478334d98" - sha256 = "0kcsg9pd3vyp5v9dz8xzd9lkpbqrlhr1rv6hg38afq6ifziw319i" - -["go.uber.org/zap"] - sumVersion = "v1.19.1" - ["go.uber.org/zap".fetch] - type = "git" - url = "https://github.com/uber-go/zap" - rev = "eaeb0fc72fd23af7969c9a9f39e51b66827507ca" - sha256 = "1v5njic01hyg6h5k8b0ma7n5jc6mjyk9ci1np8hzg0jsxnz8ly48" - -["golang.org/x/crypto"] - sumVersion = "v0.0.0-20210915214749-c084706c2272" - ["golang.org/x/crypto".fetch] - type = "git" - url = "https://go.googlesource.com/crypto" - rev = "c084706c2272f3d44b722e988e70d4a58e60e7f4" - sha256 = "1m5aiycf2yxn5xpap7c84nhkw44wzj4bpwjw4hvar5x89zlb0yh3" - -["golang.org/x/exp"] - sumVersion = "v0.0.0-20200331195152-e8c3332aa8e5" - ["golang.org/x/exp".fetch] - type = "git" - url = "https://go.googlesource.com/exp" - rev = "e8c3332aa8e5b8e6acb4707c3a7e5979052b20aa" - sha256 = "085mbasmshl64f2d0awrf5k0iyh1aij888cp9aa12ldzp36404rw" - -["golang.org/x/image"] - sumVersion = "v0.0.0-20190802002840-cff245a6509b" - ["golang.org/x/image".fetch] - type = "git" - url = "https://go.googlesource.com/image" - rev = "cff245a6509b8c4de022d0d5b9037c503c5989d6" - sha256 = "0hiznlkiaay30acwvvyq8g6bm32r7bc6gv47pygrcxqpapasbz84" - -["golang.org/x/lint"] - sumVersion = "v0.0.0-20210508222113-6edffad5e616" - ["golang.org/x/lint".fetch] - type = "git" - url = "https://go.googlesource.com/lint" - rev = "6edffad5e6160f5949cdefc81710b2706fbcd4f6" - sha256 = "1n7lrr3282q3li4f06afms444qy13rfd316za0drqihakwyki2jk" - -["golang.org/x/mobile"] - sumVersion = "v0.0.0-20200801112145-973feb4309de" - ["golang.org/x/mobile".fetch] - type = "git" - url = "https://go.googlesource.com/mobile" - rev = "973feb4309de5c3aad0553fc987d76abf1fa58f7" - sha256 = "0jwz7jq1cqp9x6b9kpfrmw84sg7dg5v4xaa8zdbgq14gskmjx72d" - -["golang.org/x/mod"] - sumVersion = "v0.4.2" - ["golang.org/x/mod".fetch] - type = "git" - url = "https://go.googlesource.com/mod" - rev = "d6ab96f2441f9631f81862375ef66782fc4a9c12" - sha256 = "0z1p17i291z2k6va08i80ljyzyij2b6qsz78lnz0wi8zsnkfdz43" - -["golang.org/x/net"] - sumVersion = "v0.0.0-20211005001312-d4b1ae081e3b" - ["golang.org/x/net".fetch] - type = "git" - url = "https://go.googlesource.com/net" - rev = "d4b1ae081e3b66345121fd3ad754b645ae798b07" - sha256 = "0mid37a5nk85xxym49cxw9k5y9w8j8hiafgmn4igaympm8yy5dc9" - -["golang.org/x/oauth2"] - sumVersion = "v0.0.0-20210819190943-2bc19b11175f" - ["golang.org/x/oauth2".fetch] - type = "git" - url = "https://go.googlesource.com/oauth2" - rev = "2bc19b11175fd0ae72c59c53fa45eff3f93d6a46" - sha256 = "03gam1wg1zrx0fda54vy43f93k3s75axrb5nc5zs3il0q3i13686" - -["golang.org/x/sync"] - sumVersion = "v0.0.0-20210220032951-036812b2e83c" - ["golang.org/x/sync".fetch] - type = "git" - url = "https://go.googlesource.com/sync" - rev = "036812b2e83c0ddf193dd5a34e034151da389d09" - sha256 = "1gl202py3s4gl6arkaxlf8qa6f0jyyg2f95m6f89qnfmr416h85b" - -["golang.org/x/sys"] - sumVersion = "v0.0.0-20211004093028-2c5d950f24ef" - ["golang.org/x/sys".fetch] - type = "git" - url = "https://go.googlesource.com/sys" - rev = "2c5d950f24efcc95bc256be158532a2eee20542f" - sha256 = "13ac9v54zgxrya9n2dvbmyafhd0rbmnkfb5zrcp96z8vzd9q8zfz" - -["golang.org/x/term"] - sumVersion = "v0.0.0-20201126162022-7de9c90e9dd1" - ["golang.org/x/term".fetch] - type = "git" - url = "https://go.googlesource.com/term" - rev = "7de9c90e9dd184706b838f536a1cbf40a296ddb7" - sha256 = "1ba252xmv6qsvf1w1gcy98mngrj0vd4inbjw0lsklqvva65nljna" - -["golang.org/x/text"] - sumVersion = "v0.3.7" - ["golang.org/x/text".fetch] - type = "git" - url = "https://go.googlesource.com/text" - rev = "383b2e75a7a4198c42f8f87833eefb772868a56f" - sha256 = "0xkw0qvfjyifdqd25y7nxdqkdh92inymw3q7841nricc9s01p4jy" - -["golang.org/x/time"] - sumVersion = "v0.0.0-20210723032227-1f47c861a9ac" - ["golang.org/x/time".fetch] - type = "git" - url = "https://go.googlesource.com/time" - rev = "1f47c861a9ac5a6e7645609f91b895398ff31642" - sha256 = "1drd4fww92m6k12bh90c59l85rl1j48vgxgax1ki3138gf3iaa33" - -["golang.org/x/tools"] - sumVersion = "v0.1.5" - ["golang.org/x/tools".fetch] - type = "git" - url = "https://go.googlesource.com/tools" - rev = "ef97713d99aa4e69742aa68fd45a63247b5d3ea0" - sha256 = "1wzbbcja1q0gn8ahxvzvpl4nzj2icwmc0pppgipmx5rdnngqw80l" - -["golang.org/x/xerrors"] - sumVersion = "v0.0.0-20200804184101-5ec99f83aff1" - ["golang.org/x/xerrors".fetch] - type = "git" - url = "https://go.googlesource.com/xerrors" - rev = "5ec99f83aff198f5fbd629d6c8d8eb38a04218ca" - sha256 = "1dbzc3gmf2haazpv7cgmv97rq40g2xzwbglc17vas8dwhgwgwrzb" - -["gonum.org/v1/gonum"] - sumVersion = "v0.8.2" - ["gonum.org/v1/gonum".fetch] - type = "git" - url = "https://github.com/gonum/gonum" - rev = "5ca75a94b69bf6d4b345c50975da77d99423e91d" - sha256 = "053lzq6vrxzmiscww4lz37wy6pgk91fbv65a02mb15y6klab7f21" - -["gonum.org/v1/netlib"] - sumVersion = "v0.0.0-20190313105609-8cb42192e0e0" - ["gonum.org/v1/netlib".fetch] - type = "git" - url = "https://github.com/gonum/netlib" - rev = "8cb42192e0e0b08ed60c6c306a63d0b2ea460e51" - sha256 = "0p4kgkrjhjzy98qy2a64qr9s5vi4vs7mmvfq4iaqg1iccp47blmx" - -["gonum.org/v1/plot"] - sumVersion = "v0.0.0-20190515093506-e2840ee46a6b" - ["gonum.org/v1/plot".fetch] - type = "git" - url = "https://github.com/gonum/plot" - rev = "e2840ee46a6b612972d746f9fea9920d329a0605" - sha256 = "0373vn32i6cjch0kw7sncskyj9ngqj2qk5jn9529zblknz0yss50" - -["google.golang.org/api"] - sumVersion = "v0.56.0" - ["google.golang.org/api".fetch] - type = "git" - url = "https://github.com/googleapis/google-api-go-client" - rev = "4a93e84ab2255960edd90ee46e558e2f40a8be07" - sha256 = "1yphvb20c7zlcs0ijl4k4bjy70pmdsm6gv22q3n3j7dwbzyghz4g" - -["google.golang.org/appengine"] - sumVersion = "v1.6.7" - ["google.golang.org/appengine".fetch] - type = "git" - url = "https://github.com/golang/appengine" - rev = "5d1c1d03f8703c2e81478d9a30e9afa2d3e4bd8a" - sha256 = "1wkipg7xxc0ha5p6c3bj0vpgq38l18441n5l6zxdhx0gzvz5z1hs" - -["google.golang.org/genproto"] - sumVersion = "v0.0.0-20210917145530-b395a37504d4" - ["google.golang.org/genproto".fetch] - type = "git" - url = "https://github.com/googleapis/go-genproto" - rev = "b395a37504d4d0e451817259af1784bc6fab40c2" - sha256 = "1q8bqsm9db5874aji6ywqz5w9gi5mw3m8bhw7b7rkqh78h3scsq2" - -["google.golang.org/grpc"] - sumVersion = "v1.33.2" - ["google.golang.org/grpc".fetch] - type = "git" - url = "https://github.com/grpc/grpc-go" - rev = "56d63285d528c0d33f9bf8c355139d91edc047de" - sha256 = "03yz4nlf4kqbnpw48f0mvcb2f5zzy0vjd5i2iw0hrjspd0238fzk" - -["google.golang.org/grpc/cmd/protoc-gen-go-grpc"] - sumVersion = "v1.1.0" - relPath = "cmd/protoc-gen-go-grpc" - ["google.golang.org/grpc/cmd/protoc-gen-go-grpc".fetch] - type = "git" - url = "https://github.com/grpc/grpc-go" - rev = "938f6e2f7550e542bd78f3b9e8812665db109e02" - sha256 = "14rjb8j6fm07rnns3dpwgkzf3y6rmia6i9n7ns6cldc5mbf7nwi3" - -["google.golang.org/protobuf"] - sumVersion = "v1.27.1" - ["google.golang.org/protobuf".fetch] - type = "git" - url = "https://go.googlesource.com/protobuf" - rev = "b92717ecb630d4a4824b372bf98c729d87311a4d" - sha256 = "0aszb7cv8fq1m8akgd4kjyg5q7g5z9fdqnry6057ygq9r8r2yif2" - -["gopkg.in/alecthomas/kingpin.v2"] - sumVersion = "v2.2.6" - ["gopkg.in/alecthomas/kingpin.v2".fetch] - type = "git" - url = "https://gopkg.in/alecthomas/kingpin.v2" - rev = "947dcec5ba9c011838740e680966fd7087a71d0d" - sha256 = "0mndnv3hdngr3bxp7yxfd47cas4prv98sqw534mx7vp38gd88n5r" - -["gopkg.in/check.v1"] - sumVersion = "v1.0.0-20200902074654-038fdea0a05b" - ["gopkg.in/check.v1".fetch] - type = "git" - url = "https://gopkg.in/check.v1" - rev = "038fdea0a05bc030b0bfda479dc2e08d2220ec74" - sha256 = "060kpz01bfglrd7przzgq8a1fqf1x0hlkmdj6isindzwx3kfhnm4" - -["gopkg.in/cheggaaa/pb.v1"] - sumVersion = "v1.0.25" - ["gopkg.in/cheggaaa/pb.v1".fetch] - type = "git" - url = "https://gopkg.in/cheggaaa/pb.v1" - rev = "2af8bbdea9e99e83b3ac400d8f6b6d1b8cbbf338" - sha256 = "0vxqiw6f3xyv0zy3g4lksf8za0z8i0hvfpw92hqimsy84f79j3dp" - -["gopkg.in/errgo.v2"] - sumVersion = "v2.1.0" - ["gopkg.in/errgo.v2".fetch] - type = "git" - url = "https://gopkg.in/errgo.v2" - rev = "f768c5ab0476c50e978b039312180859c10fe8c0" - sha256 = "065mbihiy7q67wnql0bzl9y1kkvck5ivra68254zbih52jxwrgr2" - -["gopkg.in/fsnotify.v1"] - sumVersion = "v1.4.7" - ["gopkg.in/fsnotify.v1".fetch] - type = "git" - url = "https://gopkg.in/fsnotify.v1" - rev = "c2828203cd70a50dcccfb2761f8b1f8ceef9a8e9" - sha256 = "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g" - -["gopkg.in/gcfg.v1"] - sumVersion = "v1.2.3" - ["gopkg.in/gcfg.v1".fetch] - type = "git" - url = "https://gopkg.in/gcfg.v1" - rev = "61b2c08bc8f6068f7c5ca684372f9a6cb1c45ebe" - sha256 = "165f9wincwnkblp8x6m1f4ch4m8k4gvy5v4x4gqdpmf59kqv5y7s" - -["gopkg.in/go-playground/assert.v1"] - sumVersion = "v1.2.1" - ["gopkg.in/go-playground/assert.v1".fetch] - type = "git" - url = "https://gopkg.in/go-playground/assert.v1" - rev = "4f4dfbc7d1c48336cf93399deae81aa9067e88af" - sha256 = "1h4amgykpa0djwi619llr3g55p75ia0mi184h9s5zdl8l4rhn9pm" - -["gopkg.in/go-playground/validator.v9"] - sumVersion = "v9.29.1" - ["gopkg.in/go-playground/validator.v9".fetch] - type = "git" - url = "https://gopkg.in/go-playground/validator.v9" - rev = "556b9da3c05f2a935bc086fb5a0bb55dd8112d2d" - sha256 = "1nhh4v5ja23wgpfyqlfbly5jzpag478wxw0p1bjawp4vr9bc7gdb" - -["gopkg.in/ini.v1"] - sumVersion = "v1.63.2" - ["gopkg.in/ini.v1".fetch] - type = "git" - url = "https://gopkg.in/ini.v1" - rev = "14e9811b1643cf01ea36277e44dffef4f119fa31" - sha256 = "0s35274ibybg1nidwb65jyc3gkkbs91s7rv5jdg73x6sbd73q6wr" - -["gopkg.in/natefinch/npipe.v2"] - sumVersion = "v2.0.0-20160621034901-c1b8fa8bdcce" - ["gopkg.in/natefinch/npipe.v2".fetch] - type = "git" - url = "https://gopkg.in/natefinch/npipe.v2" - rev = "c1b8fa8bdccecb0b8db834ee0b92fdbcfa606dd6" - sha256 = "1qplrvhks05pay169d9lph3hl7apdam4vj1kx3yzik7cphx6b24f" - -["gopkg.in/olebedev/go-duktape.v3"] - sumVersion = "v3.0.0-20200619000410-60c24ae608a6" - ["gopkg.in/olebedev/go-duktape.v3".fetch] - type = "git" - url = "https://gopkg.in/olebedev/go-duktape.v3" - rev = "60c24ae608a642bf894bed9eb53627d2384bedca" - sha256 = "13qirm5nqk6isv9n0wdi18k9wc8h1d7n6zwflhziwix7ghnr7a1q" - -["gopkg.in/resty.v1"] - sumVersion = "v1.12.0" - ["gopkg.in/resty.v1".fetch] - type = "git" - url = "https://gopkg.in/resty.v1" - rev = "fa5875c0caa5c260ab78acec5a244215a730247f" - sha256 = "062mn735rqzhha5ag07z4gz08hxzrfm2yx067jfmaaxmb6797lmp" - -["gopkg.in/tomb.v1"] - sumVersion = "v1.0.0-20141024135613-dd632973f1e7" - ["gopkg.in/tomb.v1".fetch] - type = "git" - url = "https://gopkg.in/tomb.v1" - rev = "dd632973f1e7218eb1089048e0798ec9ae7dceb8" - sha256 = "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv" - -["gopkg.in/urfave/cli.v1"] - sumVersion = "v1.20.0" - ["gopkg.in/urfave/cli.v1".fetch] - type = "git" - url = "https://gopkg.in/urfave/cli.v1" - rev = "cfb38830724cc34fedffe9a2a29fb54fa9169cd1" - sha256 = "0y6f4sbzkiiwrxbl15biivj8c7qwxnvm3zl2dd3mw4wzg4x10ygj" - -["gopkg.in/warnings.v0"] - sumVersion = "v0.1.2" - ["gopkg.in/warnings.v0".fetch] - type = "git" - url = "https://gopkg.in/warnings.v0" - rev = "ec4a0fea49c7b46c2aeb0b51aac55779c607e52b" - sha256 = "1kzj50jn708cingn7a13c2wdlzs6qv89dr2h4zj8d09647vlnd81" - -["gopkg.in/yaml.v2"] - sumVersion = "v2.4.0" - ["gopkg.in/yaml.v2".fetch] - type = "git" - url = "https://gopkg.in/yaml.v2" - rev = "7649d4548cb53a614db133b2a8ac1f31859dda8c" - sha256 = "1pbmrpj7gcws34g8vwna4i2nhm9p6235piww36436xhyaa10cldr" - -["gopkg.in/yaml.v3"] - sumVersion = "v3.0.0-20210107192922-496545a6307b" - ["gopkg.in/yaml.v3".fetch] - type = "git" - url = "https://gopkg.in/yaml.v3" - rev = "496545a6307b2a7d7a710fd516e5e16e8ab62dbc" - sha256 = "06f4lnrp494wqaygv09dggr2dwf3z2bawqhnlnnwiamg5y787k4g" - -["gotest.tools"] - sumVersion = "v2.2.0+incompatible" - ["gotest.tools".fetch] - type = "git" - url = "https://github.com/gotestyourself/gotest.tools" - rev = "7c797b5133e5460410dbb22ba779bf35e6975dea" - sha256 = "0yif3gdyckmf8i54jq0xn00kflla5rhib9sarw66ngnbl7bn9kyl" - -["honnef.co/go/tools"] - sumVersion = "v0.0.1-2020.1.4" - ["honnef.co/go/tools".fetch] - type = "git" - url = "https://github.com/dominikh/go-tools" - rev = "3c17a0d920718d58e7fdc0508f211aff0701dd6d" - sha256 = "182j3zzx1bj4j4jiamqn49v9nd3vcrx727f7i9zgcrgmiscvw3mh" - -["nhooyr.io/websocket"] - sumVersion = "v1.8.6" - ["nhooyr.io/websocket".fetch] - type = "git" - url = "https://github.com/nhooyr/websocket" - rev = "02861b474d9c29660eff53a3c424d589aaf46d1e" - sha256 = "1xw7rhy9bvk0kzqvpcvj92l9zwwnakvqwycfxm724dw7m0d84n52" - -["rsc.io/binaryregexp"] - sumVersion = "v0.2.0" - ["rsc.io/binaryregexp".fetch] - type = "git" - url = "https://github.com/rsc/binaryregexp" - rev = "857b9542aaa89cfa42a1477b43fa1f24192fe921" - sha256 = "1kar0myy85waw418zslviwx8846zj0m9cmqkxjx0fvgjdi70nc4b" - -["rsc.io/pdf"] - sumVersion = "v0.1.1" - ["rsc.io/pdf".fetch] - type = "git" - url = "https://github.com/rsc/pdf" - rev = "48d040297cebccc9e8dc43927e1b8036ecd33bfe" - sha256 = "01qjjwa8nn5a2jzd360xqg5zc8s0i2fpwcn2w2g6y2jgn9wl8x84" - -["rsc.io/quote/v3"] - sumVersion = "v3.1.0" - relPath = "v3" - ["rsc.io/quote/v3".fetch] - type = "git" - url = "https://github.com/rsc/quote" - rev = "0406d7298882187f4c75f75fa85cc808a64bcef1" - sha256 = "0nvv97hwwrl1mx5gzsbdm1ndnwpg3m7i2jb10ig9wily7zmvki0i" - -["rsc.io/sampler"] - sumVersion = "v1.3.0" - ["rsc.io/sampler".fetch] - type = "git" - url = "https://github.com/rsc/sampler" - rev = "0cc034b51e57ed7832d4c67d526f75a900996e5c" - sha256 = "0byxk2ynba50py805kcvbvjzh59l1r308i1xgyzpw6lff4xx9xjh" - -["sigs.k8s.io/yaml"] - sumVersion = "v1.2.0" - ["sigs.k8s.io/yaml".fetch] - type = "git" - url = "https://github.com/kubernetes-sigs/yaml" - rev = "9fc95527decd95bb9d28cc2eab08179b2d0f6971" - sha256 = "059a1chkd6afyvqszrx7h93k6cgik3ia92x29f5whpwi66461pzq" - -["sourcegraph.com/sourcegraph/appdash"] - sumVersion = "v0.0.0-20190731080439-ebfcffb1b5c0" - ["sourcegraph.com/sourcegraph/appdash".fetch] - type = "git" - url = "https://github.com/sourcegraph/appdash" - rev = "ebfcffb1b5c00031ce797183546746715a3cfe87" - sha256 = "1xlff68pa7jchg1xr2nkrkk94mrd0ba2z38968j7swlfyf8rkk3d" diff --git a/resources/osmosis/last-synced.narHash b/resources/osmosis/last-synced.narHash deleted file mode 100644 index 6d11ccc7..00000000 --- a/resources/osmosis/last-synced.narHash +++ /dev/null @@ -1 +0,0 @@ -sha256-w9VGpAwVsOYQBK1f7a6BX6Ro39699EX/6wrGopCir+g= diff --git a/resources/regen/default.nix b/resources/regen/default.nix deleted file mode 100644 index 5a37088a..00000000 --- a/resources/regen/default.nix +++ /dev/null @@ -1,28 +0,0 @@ -{ pkgs, regen-src }: - -pkgs.buildGoApplication { - name = "regen"; - src = "${regen-src}"; - modules = ./go-modules.toml; - preCheck = '' - export HOME="$(mktemp -d)" - ''; - postConfigure = '' - rm -rf ./orm - rm -rf ./types - rm -rf ./x - ''; - customVendorSrc = pkgs.stdenv.mkDerivation { - name = "source"; - src = "${regen-src}"; - buildPhase = '' - ls - mkdir -p $out/github.com/regen-network/regen-ledger - cp -r ./types $out/github.com/regen-network/regen-ledger/ - cp -r ./x $out/github.com/regen-network/regen-ledger/ - cp -r ./orm $out/github.com/regen-network/regen-ledger/ - ls $out/github.com/regen-network/regen-ledger/ - ''; - installPhase = "true"; - }; -} diff --git a/resources/regen/go-modules.toml b/resources/regen/go-modules.toml deleted file mode 100644 index 3ae9ffa1..00000000 --- a/resources/regen/go-modules.toml +++ /dev/null @@ -1,4873 +0,0 @@ -["4d63.com/gochecknoglobals"] - sumVersion = "v0.0.0-20201008074935-acfc0b28355a" - ["4d63.com/gochecknoglobals".fetch] - type = "git" - url = "https://github.com/leighmcculloch/gochecknoglobals" - rev = "acfc0b28355a2084eb4b6a354c7c05d7945059f5" - sha256 = "1vk1zd04s8npi1dbidpmhymypb9y30i7zfq7g4sjxz1nqp8wms7w" - -["bazil.org/fuse"] - sumVersion = "v0.0.0-20160811212531-371fbbdaa898" - ["bazil.org/fuse".fetch] - type = "git" - url = "https://github.com/bazil/fuse" - rev = "371fbbdaa8987b715bdd21d6adc4c9b20155f748" - sha256 = "1x5p301py7mcxgwklfm6pqqkzssln0nfzllng49pnk60m03ilp4w" - -["bitbucket.org/creachadair/shell"] - sumVersion = "v0.0.6" - ["bitbucket.org/creachadair/shell".fetch] - type = "git" - url = "https://bitbucket.org/creachadair/shell.git" - rev = "b260a13921a4d50f6eaf363c47edfb151c2cbc0c" - sha256 = "03wg7mnaxzknx6bj4l2d22j36zbz8hqxrqdc5asy0bm3jb1ddif2" - -["cloud.google.com/go"] - sumVersion = "v0.81.0" - ["cloud.google.com/go".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "a9e5bdc4191b4b9282b3b53c549e89ccd183c9b6" - sha256 = "15jgynqb5pbxqbj3a7ii970yn4srsw1dbxzxnhpkfkmplalpgyh3" - -["cloud.google.com/go/bigquery"] - sumVersion = "v1.8.0" - relPath = "bigquery" - ["cloud.google.com/go/bigquery".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "0aa265f094062dbc111a6906d279fbb88a6cc761" - sha256 = "1127ha4r0xjsfl04mdb134b6kvpc6yz5bx4bba8m1jmb4k3vyg3j" - -["cloud.google.com/go/datastore"] - sumVersion = "v1.1.0" - relPath = "datastore" - ["cloud.google.com/go/datastore".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "d96ccb2ba7586bb79a416471882d347754a78ce5" - sha256 = "18f1l28665x1a8j8a5bh2i7wb2vrwj050d1g5qda50isgqaybixd" - -["cloud.google.com/go/firestore"] - sumVersion = "v1.1.0" - relPath = "firestore" - ["cloud.google.com/go/firestore".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "20091f47d3c522ea545f358dd9ac1cdb326bba6f" - sha256 = "0slvm0vx5f8l2vs4k9k8jv8qnz6z9dzq25xmrhza82cj9j51ghvb" - -["cloud.google.com/go/pubsub"] - sumVersion = "v1.5.0" - relPath = "pubsub" - ["cloud.google.com/go/pubsub".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "34780b6fce10bf13168ba254f594f810c4dc4983" - sha256 = "0cjnfc7d4ghbqcypa5v12z1yqyj07arbb7mgasz8sy72rdpnf561" - -["cloud.google.com/go/spanner"] - sumVersion = "v1.7.0" - relPath = "spanner" - ["cloud.google.com/go/spanner".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "25a5f07e5bab2a2fbaa1e9cef1f01429f2d01b46" - sha256 = "17szh5px9mw57if74z8cb5bdyzvf2cw0iqc9xigmrpgzmrg3izp8" - -["cloud.google.com/go/storage"] - sumVersion = "v1.10.0" - relPath = "storage" - ["cloud.google.com/go/storage".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "3f2988d48e253a8e290b8c0e821284eead1131a0" - sha256 = "10fp6galzz8jwx35159xdcrwsqaz95xw78iwv1z5n67vhglwi5nf" - -["contrib.go.opencensus.io/exporter/stackdriver"] - sumVersion = "v0.13.4" - ["contrib.go.opencensus.io/exporter/stackdriver".fetch] - type = "git" - url = "https://github.com/census-ecosystem/opencensus-go-exporter-stackdriver" - rev = "0fc2674ae49bc91ffa3b9880ad66f56155ff5616" - sha256 = "1y320lqyxfh9xps1fcblr23ws7lwk4q2cdmy0g5pqxfzi8lhll1l" - -["dmitri.shuralyov.com/gpu/mtl"] - sumVersion = "v0.0.0-20190408044501-666a987793e9" - ["dmitri.shuralyov.com/gpu/mtl".fetch] - type = "git" - url = "https://dmitri.shuralyov.com/gpu/mtl" - rev = "666a987793e9432fbb48592aa2f3bf3463685dfa" - sha256 = "1isd03hgiwcf2ld1rlp0plrnfz7r4i7c5q4kb6hkcd22axnmrv0z" - -["filippo.io/edwards25519"] - sumVersion = "v1.0.0-beta.2" - ["filippo.io/edwards25519".fetch] - type = "git" - url = "https://github.com/FiloSottile/edwards25519" - rev = "6944ac7e84c8dffcf51f4e1b0bc2d75a822549e5" - sha256 = "1fv6mssk1r96jbkbb413kxmcf87xz2knyx1bivdam2aa3mhxrim5" - -["github.com/99designs/keyring"] - sumVersion = "v1.1.6" - ["github.com/99designs/keyring".fetch] - type = "git" - url = "https://github.com/99designs/keyring" - rev = "68286ee5140ad1c5cce93fcc054e6cc90015b0ea" - sha256 = "08rcdqpxaa9n348q10fw40q4gxpjajkyrighykk71i7mxzwkcgwn" - -["github.com/Antonboom/errname"] - sumVersion = "v0.1.4" - ["github.com/Antonboom/errname".fetch] - type = "git" - url = "https://github.com/Antonboom/errname" - rev = "aefe8f8fa884b42290e734657221a8279bdb8417" - sha256 = "15jkw6i68wici9bc9yxyns9vjfijnwvz4f7i8n8nqkz81ka2wiqf" - -["github.com/Azure/azure-pipeline-go"] - sumVersion = "v0.2.2" - ["github.com/Azure/azure-pipeline-go".fetch] - type = "git" - url = "https://github.com/Azure/azure-pipeline-go" - rev = "232aee85e8e3a6223a11c0943f7df2ae0fac00e4" - sha256 = "1agn2nzmm1dkwggm4w7h4bnrav4n5jrl0vqbqy2s49vqlr8zirn6" - -["github.com/Azure/azure-storage-blob-go"] - sumVersion = "v0.7.0" - ["github.com/Azure/azure-storage-blob-go".fetch] - type = "git" - url = "https://github.com/Azure/azure-storage-blob-go" - rev = "3efca72bd11c050222deab57e25ea90df03b9692" - sha256 = "03lxg2v7gjl49cli818g9rnkz6818zvwhw8zm8z16y6cjmj8qmzv" - -["github.com/Azure/go-ansiterm"] - sumVersion = "v0.0.0-20210617225240-d185dfc1b5a1" - ["github.com/Azure/go-ansiterm".fetch] - type = "git" - url = "https://github.com/Azure/go-ansiterm" - rev = "d185dfc1b5a126116ea5a19e148e29d16b4574c9" - sha256 = "1y54b1fx80qlyvv2915xrryb9vcc8nnbsdkxszhxjg8bcg85ps5c" - -["github.com/Azure/go-autorest/autorest"] - sumVersion = "v0.9.0" - relPath = "autorest" - ["github.com/Azure/go-autorest/autorest".fetch] - type = "git" - url = "https://github.com/Azure/go-autorest" - rev = "85d9c035382e5537c3c76e84ca5b82c5f09825e9" - sha256 = "01fg6x3a6as2kh0km8kvjzjalq7xiqa17hnsdwawzlpnfpqgslvq" - -["github.com/Azure/go-autorest/autorest/adal"] - sumVersion = "v0.8.0" - relPath = "autorest/adal" - ["github.com/Azure/go-autorest/autorest/adal".fetch] - type = "git" - url = "https://github.com/Azure/go-autorest" - rev = "740293c019d8314ce3378d456b4327fa646297e6" - sha256 = "1ga12qs31v95010jdn8raw0mf2kvlxhfl8z856y7dn2x3fviv7r4" - -["github.com/Azure/go-autorest/autorest/date"] - sumVersion = "v0.2.0" - relPath = "autorest/date" - ["github.com/Azure/go-autorest/autorest/date".fetch] - type = "git" - url = "https://github.com/Azure/go-autorest" - rev = "5bd9621f41a06b08038be5c0522971a35316d5ef" - sha256 = "0fifmqljld72v0g545qqljmynhjgg8jm0ying35wzni0m7cg6n4y" - -["github.com/Azure/go-autorest/autorest/mocks"] - sumVersion = "v0.3.0" - relPath = "autorest/mocks" - ["github.com/Azure/go-autorest/autorest/mocks".fetch] - type = "git" - url = "https://github.com/Azure/go-autorest" - rev = "5bd9621f41a06b08038be5c0522971a35316d5ef" - sha256 = "0fifmqljld72v0g545qqljmynhjgg8jm0ying35wzni0m7cg6n4y" - -["github.com/Azure/go-autorest/logger"] - sumVersion = "v0.1.0" - relPath = "logger" - ["github.com/Azure/go-autorest/logger".fetch] - type = "git" - url = "https://github.com/Azure/go-autorest" - rev = "4bb4e3c99dd98a53e3d65a6f28aa05e2d435cb24" - sha256 = "1w94wxjjkiv8m44rcdm1af9h0ap2r8kpp9198cxpxj8d5xxkaxpz" - -["github.com/Azure/go-autorest/tracing"] - sumVersion = "v0.5.0" - relPath = "tracing" - ["github.com/Azure/go-autorest/tracing".fetch] - type = "git" - url = "https://github.com/Azure/go-autorest" - rev = "5e7a399d8bbf4953ab0c8e3167d7fd535fd74ce1" - sha256 = "0n482cjr2pk6ql6awcnn6llrnygjzakihbjaahgmylf3znwil7jp" - -["github.com/BurntSushi/toml"] - sumVersion = "v0.4.1" - ["github.com/BurntSushi/toml".fetch] - type = "git" - url = "https://github.com/BurntSushi/toml" - rev = "641c3cf2148ad11ca058c000eab0453dd5d67954" - sha256 = "0bz7q3v4m2rq5z47q81bvb4lw6ss2r1x3phgr43a6nls9x5kcpp1" - -["github.com/BurntSushi/xgb"] - sumVersion = "v0.0.0-20160522181843-27f122750802" - ["github.com/BurntSushi/xgb".fetch] - type = "git" - url = "https://github.com/BurntSushi/xgb" - rev = "27f122750802c950b2c869a5b63dafcf590ced95" - sha256 = "18lp2x8f5bljvlz0r7xn744f0c9rywjsb9ifiszqqdcpwhsa0kvj" - -["github.com/ChainSafe/go-schnorrkel"] - sumVersion = "v0.0.0-20200405005733-88cbf1b4c40d" - ["github.com/ChainSafe/go-schnorrkel".fetch] - type = "git" - url = "https://github.com/ChainSafe/go-schnorrkel" - rev = "88cbf1b4c40de64a5ea4863476c6c8ae5433c594" - sha256 = "09ncxdzy4scwmgj96lq83a40bb29nkws1y9x0nim86l9x5jmgi4b" - -["github.com/DataDog/datadog-go"] - sumVersion = "v3.2.0+incompatible" - ["github.com/DataDog/datadog-go".fetch] - type = "git" - url = "https://github.com/DataDog/datadog-go" - rev = "8bfdc335936a79b55b3e2c1080930bc5a3eb57f2" - sha256 = "1m8anll166rwcprjyv3bb0l450p35m0gzn6fs7bcd3ck2s527k7x" - -["github.com/DataDog/zstd"] - sumVersion = "v1.4.5" - ["github.com/DataDog/zstd".fetch] - type = "git" - url = "https://github.com/DataDog/zstd" - rev = "0e71ac6221c995a831bb393da70730c3d3a07091" - sha256 = "0xhgh7nzxq3lzba7w7v3w5mb4nb799v5xh5ylml0hk21ricm7g9s" - -["github.com/Djarvur/go-err113"] - sumVersion = "v0.0.0-20210108212216-aea10b59be24" - ["github.com/Djarvur/go-err113".fetch] - type = "git" - url = "https://github.com/Djarvur/go-err113" - rev = "aea10b59be24dbccef6788e95bb147053c8c774c" - sha256 = "0scsahyv6agld712mlczdv6hnd7ja76xfmr3a0pyf1z5zwqp4fha" - -["github.com/Knetic/govaluate"] - sumVersion = "v3.0.1-0.20171022003610-9aa49832a739+incompatible" - ["github.com/Knetic/govaluate".fetch] - type = "git" - url = "https://github.com/Knetic/govaluate" - rev = "9aa49832a739dcd78a5542ff189fb82c3e423116" - sha256 = "12klijhq4fckzbhv0cwygbazj6lvhmdqksha9y6jgfmwzv51kwv5" - -["github.com/Masterminds/goutils"] - sumVersion = "v1.1.0" - ["github.com/Masterminds/goutils".fetch] - type = "git" - url = "https://github.com/Masterminds/goutils" - rev = "41ac8693c5c10a92ea1ff5ac3a7f95646f6123b0" - sha256 = "180px47gj936qyk5bkv5mbbgiil9abdjq6kwkf7sq70vyi9mcfiq" - -["github.com/Masterminds/semver"] - sumVersion = "v1.5.0" - ["github.com/Masterminds/semver".fetch] - type = "git" - url = "https://github.com/Masterminds/semver" - rev = "805c489aa98f412e79eb308a37996bf9d8b1c91e" - sha256 = "1i169xscsxsh8lsw8bz2apnsqixld37xdnfh36i30xy5wnf0iwfx" - -["github.com/Masterminds/sprig"] - sumVersion = "v2.22.0+incompatible" - ["github.com/Masterminds/sprig".fetch] - type = "git" - url = "https://github.com/Masterminds/sprig" - rev = "e4c0945838d570720d876a6ad9b4568ed32317b4" - sha256 = "09dzwhj4zh3p6f1jhyic16n4qdnvpamz7hyk9fycpm4b1jfq63gd" - -["github.com/Microsoft/go-winio"] - sumVersion = "v0.5.0" - ["github.com/Microsoft/go-winio".fetch] - type = "git" - url = "https://github.com/Microsoft/go-winio" - rev = "58dba89befbca5b5a2c944f84642f5b0540bcfd5" - sha256 = "123p5by5craqigydfqj0hchplcv75zz81xzj5s3ixq624qjbg0z5" - -["github.com/Nvveen/Gotty"] - sumVersion = "v0.0.0-20120604004816-cd527374f1e5" - ["github.com/Nvveen/Gotty".fetch] - type = "git" - url = "https://github.com/Nvveen/Gotty" - rev = "cd527374f1e5bff4938207604a14f2e38a9cf512" - sha256 = "1ylvr1p6p036ns3g3wdz8f92f69symshkc8j54fa6gpg4hyk0k6q" - -["github.com/OneOfOne/xxhash"] - sumVersion = "v1.2.2" - ["github.com/OneOfOne/xxhash".fetch] - type = "git" - url = "https://github.com/OneOfOne/xxhash" - rev = "6def279d2ce6c81a79dd1c1be580f03bb216fb8a" - sha256 = "1mjfhrwhvxa48rycjnqpqzm521i38h1hdyz6pdwmhd7xb8j6gwi6" - -["github.com/OpenPeeDeeP/depguard"] - sumVersion = "v1.0.1" - ["github.com/OpenPeeDeeP/depguard".fetch] - type = "git" - url = "https://github.com/OpenPeeDeeP/depguard" - rev = "2c5871f4f2dd78afab3c5075f292cdadb1f1d2d8" - sha256 = "1lg3pq9mg55zpv3k431nnpx3pz13aja7vs18hw236jl2yb1ga1vw" - -["github.com/Shopify/sarama"] - sumVersion = "v1.19.0" - ["github.com/Shopify/sarama".fetch] - type = "git" - url = "https://github.com/Shopify/sarama" - rev = "ec843464b50d4c8b56403ec9d589cf41ea30e722" - sha256 = "0q1z3pvcd011yprwzws2s293v4cjvsszhai6vnfrahjcbsz79q0z" - -["github.com/Shopify/toxiproxy"] - sumVersion = "v2.1.4+incompatible" - ["github.com/Shopify/toxiproxy".fetch] - type = "git" - url = "https://github.com/Shopify/toxiproxy" - rev = "49b4ea27da29ae83ad3bfe7f7f090d18cbee1dc3" - sha256 = "07yhsvscdv1qjfc2fyyh9qsrrdwrrw04wadk5gaq4qddcway7vig" - -["github.com/StackExchange/wmi"] - sumVersion = "v1.2.1" - ["github.com/StackExchange/wmi".fetch] - type = "git" - url = "https://github.com/StackExchange/wmi" - rev = "441642c1665945335b93778e496324884ce569e7" - sha256 = "0ijhmr8sl768vkxslvw7fprav6srw4ivp32rzg3ydj8nc1wh86nl" - -["github.com/VictoriaMetrics/fastcache"] - sumVersion = "v1.5.7" - ["github.com/VictoriaMetrics/fastcache".fetch] - type = "git" - url = "https://github.com/VictoriaMetrics/fastcache" - rev = "2c7a92dc306a8b0402608403e97ae9c3cb3c2328" - sha256 = "19fsx8ha2kdjbsinlllz70fj96z6xhvn38x8qrmml0abmsf5z60k" - -["github.com/VividCortex/gohistogram"] - sumVersion = "v1.0.0" - ["github.com/VividCortex/gohistogram".fetch] - type = "git" - url = "https://github.com/VividCortex/gohistogram" - rev = "51564d9861991fb0ad0f531c99ef602d0f9866e6" - sha256 = "1ykpvrkri3mzc0z77kdva93ylh0bqg7jq3i024r3iv0i6bwx3rnf" - -["github.com/Workiva/go-datastructures"] - sumVersion = "v1.0.52" - ["github.com/Workiva/go-datastructures".fetch] - type = "git" - url = "https://github.com/Workiva/go-datastructures" - rev = "0819bcaf26091e7c33585441f8961854c2400faa" - sha256 = "0qsj9r3md4n9nxmlvg6cgysivm4ay905ivbk5vi5csnykwnamqmk" - -["github.com/Zilliqa/gozilliqa-sdk"] - sumVersion = "v1.2.1-0.20201201074141-dd0ecada1be6" - ["github.com/Zilliqa/gozilliqa-sdk".fetch] - type = "git" - url = "https://github.com/Zilliqa/gozilliqa-sdk" - rev = "dd0ecada1be6987976b9f3b557dbb4de305ecf5b" - sha256 = "06hzp118gzkbfvmzpwsqd4iky9br99lxgidgs5xnxwhzhli017w1" - -["github.com/adlio/schema"] - sumVersion = "v1.1.13" - ["github.com/adlio/schema".fetch] - type = "git" - url = "https://github.com/adlio/schema" - rev = "158666f4977057e9c8000a43995556d43f18fc8e" - sha256 = "18myq29vi5l3l1yzmpvam29m8lb6pgihs2a3gxpip9m38cz72rsf" - -["github.com/aead/siphash"] - sumVersion = "v1.0.1" - ["github.com/aead/siphash".fetch] - type = "git" - url = "https://github.com/aead/siphash" - rev = "83563a290f60225eb120d724600b9690c3fb536f" - sha256 = "01kd1z82sc4nh3nj9c25aryyp396s7jrqc2kz9d7qq1vy2hdbznc" - -["github.com/afex/hystrix-go"] - sumVersion = "v0.0.0-20180502004556-fa1af6a1f4f5" - ["github.com/afex/hystrix-go".fetch] - type = "git" - url = "https://github.com/afex/hystrix-go" - rev = "fa1af6a1f4f56e0e50d427fe901cd604d8c6fb8a" - sha256 = "0zlj0330j816flvwvis4d4vv1gigpxlghph7awbc9jb7ggf2qssn" - -["github.com/alecthomas/template"] - sumVersion = "v0.0.0-20190718012654-fb15b899a751" - ["github.com/alecthomas/template".fetch] - type = "git" - url = "https://github.com/alecthomas/template" - rev = "fb15b899a75114aa79cc930e33c46b577cc664b1" - sha256 = "1vlasv4dgycydh5wx6jdcvz40zdv90zz1h7836z7lhsi2ymvii26" - -["github.com/alecthomas/units"] - sumVersion = "v0.0.0-20190924025748-f65c72e2690d" - ["github.com/alecthomas/units".fetch] - type = "git" - url = "https://github.com/alecthomas/units" - rev = "f65c72e2690dc4b403c8bd637baf4611cd4c069b" - sha256 = "04jyqm7m3m01ppfy1f9xk4qvrwvs78q9zml6llyf2b3v5k6b2bbc" - -["github.com/alexkohler/prealloc"] - sumVersion = "v1.0.0" - ["github.com/alexkohler/prealloc".fetch] - type = "git" - url = "https://github.com/alexkohler/prealloc" - rev = "77a5b5dd9799c465ee170120588411b74218d5bb" - sha256 = "011i8yqzyjgwj17k44xvvg4bxfv8z20s0416r2d3yf4s3wqqygpq" - -["github.com/allegro/bigcache"] - sumVersion = "v1.2.1-0.20190218064605-e24eb225f156" - ["github.com/allegro/bigcache".fetch] - type = "git" - url = "https://github.com/allegro/bigcache" - rev = "e24eb225f15679bbe54f91bfa7da3b00e59b9768" - sha256 = "1ha36q4km0i1klhpxywkfc8w77ldddl7nvqg0wl0ixy17j20na7m" - -["github.com/andybalholm/brotli"] - sumVersion = "v1.0.0" - ["github.com/andybalholm/brotli".fetch] - type = "git" - url = "https://github.com/andybalholm/brotli" - rev = "b60f0d972eeb79a5fba5fb60f1e0568bc8c97e42" - sha256 = "13znsij8np519qjnbc06366dnyxkwbm48m15p60ls2sppdd83f7k" - -["github.com/antihax/optional"] - sumVersion = "v1.0.0" - ["github.com/antihax/optional".fetch] - type = "git" - url = "https://github.com/antihax/optional" - rev = "c3f0ba9c1a592b971d66b2787679af55b5c58f21" - sha256 = "1ix08vl49qxr58rc6201cl97g1yznhhkwvqldslawind99js4rj0" - -["github.com/aokoli/goutils"] - sumVersion = "v1.0.1" - ["github.com/aokoli/goutils".fetch] - type = "git" - url = "https://github.com/aokoli/goutils" - rev = "3391d3790d23d03408670993e957e8f408993c34" - sha256 = "1yj4yjfwylica31sgj69ygb04p9xxi22kgfxd0j5f58zr8vwww2n" - -["github.com/apache/thrift"] - sumVersion = "v0.13.0" - ["github.com/apache/thrift".fetch] - type = "git" - url = "https://github.com/apache/thrift" - rev = "cecee50308fc7e6f77f55b3fd906c1c6c471fa2f" - sha256 = "17ckl7p7s3ga33yrjisilsimp80ansqxl54wvpkv0j7vx2zvc13y" - -["github.com/aristanetworks/goarista"] - sumVersion = "v0.0.0-20170210015632-ea17b1a17847" - ["github.com/aristanetworks/goarista".fetch] - type = "git" - url = "https://github.com/aristanetworks/goarista" - rev = "ea17b1a17847fb6e4c0a91de0b674704693469b0" - sha256 = "02q3dhrgcbdx2826vs7gwrnw6yg9kwcyqyhrvnyf5fj5wfdqzdmp" - -["github.com/armon/circbuf"] - sumVersion = "v0.0.0-20150827004946-bbbad097214e" - ["github.com/armon/circbuf".fetch] - type = "git" - url = "https://github.com/armon/circbuf" - rev = "bbbad097214e2918d8543d5201d12bfd7bca254d" - sha256 = "1idpr0lzb2px2p3wgfq2276yl7jpaz43df6n91kf790404s4zmk3" - -["github.com/armon/consul-api"] - sumVersion = "v0.0.0-20180202201655-eb2c6b5be1b6" - ["github.com/armon/consul-api".fetch] - type = "git" - url = "https://github.com/armon/consul-api" - rev = "eb2c6b5be1b66bab83016e0b05f01b8d5496ffbd" - sha256 = "1j6fdr1sg36qy4n4xjl7brq739fpm5npq98cmvklzjc9qrx98nk9" - -["github.com/armon/go-metrics"] - sumVersion = "v0.3.9" - ["github.com/armon/go-metrics".fetch] - type = "git" - url = "https://github.com/armon/go-metrics" - rev = "f792dbc8f4b651df89dc7098fce61ca56a0a2bee" - sha256 = "0sbnzw7sdjcf2l6nsxynpv99m6sza1zyakl82by37sqhn60hj9is" - -["github.com/armon/go-radix"] - sumVersion = "v0.0.0-20180808171621-7fddfc383310" - ["github.com/armon/go-radix".fetch] - type = "git" - url = "https://github.com/armon/go-radix" - rev = "7fddfc383310abc091d79a27f116d30cf0424032" - sha256 = "0y8chspn14n9xpsfb9gxnnf819rfpriaz64v81p7873a42kkhxb4" - -["github.com/aryann/difflib"] - sumVersion = "v0.0.0-20170710044230-e206f873d14a" - ["github.com/aryann/difflib".fetch] - type = "git" - url = "https://github.com/aryann/difflib" - rev = "e206f873d14a916d3d26c40ab667bca123f365a3" - sha256 = "00zb9sx6l6b2zq614x45zlyshl20zjhwfj8r5krw4f9y0mx3n2dm" - -["github.com/ashanbrown/forbidigo"] - sumVersion = "v1.2.0" - ["github.com/ashanbrown/forbidigo".fetch] - type = "git" - url = "https://github.com/ashanbrown/forbidigo" - rev = "f30240a5170c8f6a62cf603ea541c0ff2008a6be" - sha256 = "01c3wkzsr54cjrqfmjw2wxij66znjrs9l58mv9i6qxka3dhl62xr" - -["github.com/ashanbrown/makezero"] - sumVersion = "v0.0.0-20210520155254-b6261585ddde" - ["github.com/ashanbrown/makezero".fetch] - type = "git" - url = "https://github.com/ashanbrown/makezero" - rev = "b6261585ddde940da3aa0123bac3b77cd87577f7" - sha256 = "0x9cvkrvjs0mssg740cspr8l941sv7hpmr60qcqb8ghv0wj12jgh" - -["github.com/aws/aws-lambda-go"] - sumVersion = "v1.13.3" - ["github.com/aws/aws-lambda-go".fetch] - type = "git" - url = "https://github.com/aws/aws-lambda-go" - rev = "b5b7267d297de263cc5b61f8c37543daa9c95ffd" - sha256 = "049zq6gr9xdjjsxd3yimawqlh2ibfkj2434cnjm4x93ph62hppm9" - -["github.com/aws/aws-sdk-go"] - sumVersion = "v1.36.30" - ["github.com/aws/aws-sdk-go".fetch] - type = "git" - url = "https://github.com/aws/aws-sdk-go" - rev = "c69138922cc4f28b2678532d711cd1bafcb975e7" - sha256 = "0vbfqbcwg02hvq50f0flz1q9pqxhjcpfb4a5xywcvddbf4izr4yl" - -["github.com/aws/aws-sdk-go-v2"] - sumVersion = "v0.18.0" - ["github.com/aws/aws-sdk-go-v2".fetch] - type = "git" - url = "https://github.com/aws/aws-sdk-go-v2" - rev = "b0e297c21991cec8a5d645714ea400caa790cb43" - sha256 = "00nrd8bs80w5k0ms31gqjpnl2mf0jav4hr8m54w8a7l13w5szy7s" - -["github.com/beorn7/perks"] - sumVersion = "v1.0.1" - ["github.com/beorn7/perks".fetch] - type = "git" - url = "https://github.com/beorn7/perks" - rev = "37c8de3658fcb183f997c4e13e8337516ab753e6" - sha256 = "17n4yygjxa6p499dj3yaqzfww2g7528165cl13haj97hlx94dgl7" - -["github.com/bgentry/speakeasy"] - sumVersion = "v0.1.0" - ["github.com/bgentry/speakeasy".fetch] - type = "git" - url = "https://github.com/bgentry/speakeasy" - rev = "4aabc24848ce5fd31929f7d1e4ea74d3709c14cd" - sha256 = "02dfrj0wyphd3db9zn2mixqxwiz1ivnyc5xc7gkz58l5l27nzp8s" - -["github.com/bits-and-blooms/bitset"] - sumVersion = "v1.2.0" - ["github.com/bits-and-blooms/bitset".fetch] - type = "git" - url = "https://github.com/bits-and-blooms/bitset" - rev = "59de210119f50cedaa42d175dc88b6335fcf63f6" - sha256 = "0r9f7lvz6znl7yr6njg77m8hj472yhdshf1qaybwyw7j8as6c4r3" - -["github.com/bketelsen/crypt"] - sumVersion = "v0.0.4" - ["github.com/bketelsen/crypt".fetch] - type = "git" - url = "https://github.com/bketelsen/crypt" - rev = "3f0829aaee54a3e9eabd45afbf68257a5cf754f7" - sha256 = "0fyfcvy73zskd1p1mv0cn03anxkkr5gvlawsc87znqk60hdypq3v" - -["github.com/bkielbasa/cyclop"] - sumVersion = "v1.2.0" - ["github.com/bkielbasa/cyclop".fetch] - type = "git" - url = "https://github.com/bkielbasa/cyclop" - rev = "eff218d674761de1166873cf3633e52c164be838" - sha256 = "1ww35mnyjl53h84iyv5c5wccp8ss7pvyjv5gafkibcz061kx751c" - -["github.com/bombsimon/wsl/v3"] - sumVersion = "v3.3.0" - ["github.com/bombsimon/wsl/v3".fetch] - type = "git" - url = "https://github.com/bombsimon/wsl" - rev = "6d756b6381469ac99373f3f65fc0da95e87e98a0" - sha256 = "14p7cx7a4jmya9a88gxvm9d87zi8alvqahjh79gy2k90p0p551aj" - -["github.com/btcsuite/btcd"] - sumVersion = "v0.22.0-beta" - ["github.com/btcsuite/btcd".fetch] - type = "git" - url = "https://github.com/btcsuite/btcd" - rev = "63438c6d3661a7dec09013f7731035abdf1eb4bc" - sha256 = "0rcsd3wcs0cii8qq0573h9fi1x92i8c1gzdvifnkm2r0ndl4knla" - -["github.com/btcsuite/btclog"] - sumVersion = "v0.0.0-20170628155309-84c8d2346e9f" - ["github.com/btcsuite/btclog".fetch] - type = "git" - url = "https://github.com/btcsuite/btclog" - rev = "84c8d2346e9fc8c7b947e243b9c24e6df9fd206a" - sha256 = "02dl46wcnfpg9sqvg0ipipkpnd7lrf4fnvb9zy56jqa7mfcwc7wk" - -["github.com/btcsuite/btcutil"] - sumVersion = "v1.0.3-0.20201208143702-a53e38424cce" - ["github.com/btcsuite/btcutil".fetch] - type = "git" - url = "https://github.com/btcsuite/btcutil" - rev = "a53e38424cce1c9de2062b69364efd35fd428d15" - sha256 = "1izjvgi0d5wnknfwdnqa196hn4vj1n5ga7swbhcfsgghk2zngwr4" - -["github.com/btcsuite/go-socks"] - sumVersion = "v0.0.0-20170105172521-4720035b7bfd" - ["github.com/btcsuite/go-socks".fetch] - type = "git" - url = "https://github.com/btcsuite/go-socks" - rev = "4720035b7bfd2a9bb130b1c184f8bbe41b6f0d0f" - sha256 = "18cv2icj059lq4s99p6yh91hlas5f2gi3f1p4c10sjgwrs933d7b" - -["github.com/btcsuite/goleveldb"] - sumVersion = "v1.0.0" - ["github.com/btcsuite/goleveldb".fetch] - type = "git" - url = "https://github.com/btcsuite/goleveldb" - rev = "3fd0373267b6461dbefe91cef614278064d05465" - sha256 = "0kwllw5yflpn362xbsqphbm10qcy08v3zqs15zbyp4mkjjk0bl9z" - -["github.com/btcsuite/snappy-go"] - sumVersion = "v1.0.0" - ["github.com/btcsuite/snappy-go".fetch] - type = "git" - url = "https://github.com/btcsuite/snappy-go" - rev = "b3db38edf0a9a11a115eb6b022d8c946024a9ac0" - sha256 = "0b2536a58l6advb0ag9ywz7i5cdzclvmm3x796jydv1yrbj5x2vk" - -["github.com/btcsuite/websocket"] - sumVersion = "v0.0.0-20150119174127-31079b680792" - ["github.com/btcsuite/websocket".fetch] - type = "git" - url = "https://github.com/btcsuite/websocket" - rev = "31079b6807923eb23992c421b114992b95131b55" - sha256 = "0xpkf257ml6fpfdgv7hxxc41n0d5yxxm3njm50qpzp7j71l9cjwa" - -["github.com/btcsuite/winsvc"] - sumVersion = "v1.0.0" - ["github.com/btcsuite/winsvc".fetch] - type = "git" - url = "https://github.com/btcsuite/winsvc" - rev = "f8fb11f83f7e860e3769a08e6811d1b399a43722" - sha256 = "0nsw8y86a5hzr2a3j6ch9myrpccj5bnsgaxpgajhzfk5d31xlw1z" - -["github.com/casbin/casbin/v2"] - sumVersion = "v2.1.2" - ["github.com/casbin/casbin/v2".fetch] - type = "git" - url = "https://github.com/casbin/casbin" - rev = "31a4cf3e119fdace8f02263315e83ca37a3fcc18" - sha256 = "175y7v4wlr26g23k551676zq3n3cxv8wjm3zsfhyxy3liikg7899" - -["github.com/cenkalti/backoff"] - sumVersion = "v2.2.1+incompatible" - ["github.com/cenkalti/backoff".fetch] - type = "git" - url = "https://github.com/cenkalti/backoff" - rev = "5267b6dd4d2666b980a911bf235efa276222cbe2" - sha256 = "1mf4lsl3rbb8kk42x0mrhzzy4ikqy0jf6nxpzhkr02rdgwh6rjk8" - -["github.com/census-instrumentation/opencensus-proto"] - sumVersion = "v0.2.1" - ["github.com/census-instrumentation/opencensus-proto".fetch] - type = "git" - url = "https://github.com/census-instrumentation/opencensus-proto" - rev = "d89fa54de508111353cb0b06403c00569be780d8" - sha256 = "19fcx3sc99i5dsklny6r073z5j20vlwn2xqm6di1q3b1xwchzqfj" - -["github.com/cespare/cp"] - sumVersion = "v0.1.0" - ["github.com/cespare/cp".fetch] - type = "git" - url = "https://github.com/cespare/cp" - rev = "165db2f241fd235aec29ba6d9b1ccd5f1c14637c" - sha256 = "1x76x985q9av29smybpc3g4az2qjmzqw181vp9z38wpbips31nm9" - -["github.com/cespare/xxhash"] - sumVersion = "v1.1.0" - ["github.com/cespare/xxhash".fetch] - type = "git" - url = "https://github.com/cespare/xxhash" - rev = "569f7c8abf1f58d9043ab804d364483cb1c853b6" - sha256 = "1qyzlcdcayavfazvi03izx83fvip8h36kis44zr2sg7xf6sx6l4x" - -["github.com/cespare/xxhash/v2"] - sumVersion = "v2.1.1" - ["github.com/cespare/xxhash/v2".fetch] - type = "git" - url = "https://github.com/cespare/xxhash" - rev = "d7df74196a9e781ede915320c11c378c1b2f3a1f" - sha256 = "0rl5rs8546zj1vzggv38w93wx0b5dvav7yy5hzxa8kw7iikv1cgr" - -["github.com/charithe/durationcheck"] - sumVersion = "v0.0.8" - ["github.com/charithe/durationcheck".fetch] - type = "git" - url = "https://github.com/charithe/durationcheck" - rev = "b884a93f92ceca38d1230c18b015b79aa04db74b" - sha256 = "0lg5w1p1ilb76sql6jv8x0wpaxwc17hshjnnilikfa75n7rn2sya" - -["github.com/chavacava/garif"] - sumVersion = "v0.0.0-20210405164556-e8a0a408d6af" - ["github.com/chavacava/garif".fetch] - type = "git" - url = "https://github.com/chavacava/garif" - rev = "e8a0a408d6af0f30eb79e2114600ce31d1a0e371" - sha256 = "07cbl8x9cpai8k4086qmdq9r2wy97khvi0pkwl7bh8r9m3q4msiv" - -["github.com/checkpoint-restore/go-criu/v5"] - sumVersion = "v5.0.0" - ["github.com/checkpoint-restore/go-criu/v5".fetch] - type = "git" - url = "https://github.com/checkpoint-restore/go-criu" - rev = "885cc36edb02fc5afeed0759885b473c16d249d8" - sha256 = "07dal5a9y43azkkh61jf6s81h7anbl17drkh2mal9mzcsi8wa2z8" - -["github.com/chzyer/logex"] - sumVersion = "v1.1.10" - ["github.com/chzyer/logex".fetch] - type = "git" - url = "https://github.com/chzyer/logex" - rev = "cd112f618178aaaf4ea8592c8839f5276145d9cf" - sha256 = "08pbjj3wx9acavlwyr055isa8a5hnmllgdv5k6ra60l5y1brmlq4" - -["github.com/chzyer/readline"] - sumVersion = "v0.0.0-20180603132655-2972be24d48e" - ["github.com/chzyer/readline".fetch] - type = "git" - url = "https://github.com/chzyer/readline" - rev = "2972be24d48e78746da79ba8e24e8b488c9880de" - sha256 = "104q8dazj8yf6b089jjr82fy9h1g80zyyzvp3g8b44a7d8ngjj6r" - -["github.com/chzyer/test"] - sumVersion = "v0.0.0-20180213035817-a1ea475d72b1" - ["github.com/chzyer/test".fetch] - type = "git" - url = "https://github.com/chzyer/test" - rev = "a1ea475d72b168a29f44221e0ad031a842642302" - sha256 = "0rns2aqk22i9xsgyap0pq8wi4cfaxsri4d9q6xxhhyma8jjsnj2k" - -["github.com/cilium/ebpf"] - sumVersion = "v0.6.2" - ["github.com/cilium/ebpf".fetch] - type = "git" - url = "https://github.com/cilium/ebpf" - rev = "ca492085341e0e917f48ec30704d5054c5d42ca8" - sha256 = "0x64sg0kyc8bbsp75dpv8g2jfmpdldsshf9ni49jh6rgsnnqhpf8" - -["github.com/circonus-labs/circonus-gometrics"] - sumVersion = "v2.3.1+incompatible" - ["github.com/circonus-labs/circonus-gometrics".fetch] - type = "git" - url = "https://github.com/circonus-labs/circonus-gometrics" - rev = "9eb673b3d5f6bf1c932ae7596831eefb0c0c3c2f" - sha256 = "0s2wir711h0k2h8xsypgpzshccnx8jkwjfni7n32l7wd8yng9ngs" - -["github.com/circonus-labs/circonusllhist"] - sumVersion = "v0.1.3" - ["github.com/circonus-labs/circonusllhist".fetch] - type = "git" - url = "https://github.com/circonus-labs/circonusllhist" - rev = "87d4d00b35adeefe4911ece727838749e0fab113" - sha256 = "127js92p5gx84vfj3vdmf7nn6dmqmkrxg927z0jh91fdkipmmv3i" - -["github.com/clbanning/x2j"] - sumVersion = "v0.0.0-20191024224557-825249438eec" - ["github.com/clbanning/x2j".fetch] - type = "git" - url = "https://github.com/clbanning/x2j" - rev = "825249438eec392bc87b980fb635b336e496a888" - sha256 = "1khqy1m22vnyw0x24i4bwd37zvgzj25q139mh79bddj1rw5hf7hy" - -["github.com/cloudflare/cloudflare-go"] - sumVersion = "v0.10.2-0.20190916151808-a80f83b9add9" - ["github.com/cloudflare/cloudflare-go".fetch] - type = "git" - url = "https://github.com/cloudflare/cloudflare-go" - rev = "a80f83b9add9d67ca4098ccbf42cd865ebb36ffb" - sha256 = "07q34xpgw1p091v2mmf64s2lx1gi7wxn7mnzr9182sxa7xp0bj52" - -["github.com/cncf/udpa/go"] - sumVersion = "v0.0.0-20191209042840-269d4d468f6f" - relPath = "go" - ["github.com/cncf/udpa/go".fetch] - type = "git" - url = "https://github.com/cncf/udpa" - rev = "269d4d468f6f798d803d140c3016ed6fc6b735c5" - sha256 = "0i1jiaw2k3hlwwmg4hap81vb4s1p25xp9kdfww37v0fbgjariccs" - -["github.com/cockroachdb/apd/v2"] - sumVersion = "v2.0.2" - ["github.com/cockroachdb/apd/v2".fetch] - type = "git" - url = "https://github.com/cockroachdb/apd" - rev = "1d75d334a45f26b0c1a714e53ea655529943cc3e" - sha256 = "0knh47309f9pna2pl1h3r1ggsphysdl2l5z9ydxwa5wmza9cgcsj" - -["github.com/cockroachdb/datadriven"] - sumVersion = "v0.0.0-20190809214429-80d97fb3cbaa" - ["github.com/cockroachdb/datadriven".fetch] - type = "git" - url = "https://github.com/cockroachdb/datadriven" - rev = "80d97fb3cbaa752564320702f409fdb2ef3da0ef" - sha256 = "0rvavka9zhri6r50n8fy98247fl5vycb1hffjrhshsicjv1frmlp" - -["github.com/codahale/hdrhistogram"] - sumVersion = "v0.0.0-20161010025455-3a0bb77429bd" - ["github.com/codahale/hdrhistogram".fetch] - type = "git" - url = "https://github.com/codahale/hdrhistogram" - rev = "3a0bb77429bd3a61596f5e8a3172445844342120" - sha256 = "1zampgfjbxy192cbwdi7g86l1idxaam96d834wncnpfdwgh5kl57" - -["github.com/coinbase/rosetta-sdk-go"] - sumVersion = "v0.6.10" - ["github.com/coinbase/rosetta-sdk-go".fetch] - type = "git" - url = "https://github.com/coinbase/rosetta-sdk-go" - rev = "9ba330f0a51ab41c1c8738a040eb2b28894b82d9" - sha256 = "0idsqyxjdvb2j7h97g5jyr7nniphwcd8pjgw969fvrg08rjm7qr7" - -["github.com/confio/ics23/go"] - sumVersion = "v0.6.6" - relPath = "go" - ["github.com/confio/ics23/go".fetch] - type = "git" - url = "https://github.com/confio/ics23" - rev = "6cf2f712b5ecccf0a138c29a77b726d57bdaad51" - sha256 = "0r1vk5lvjfri57hd5dk75dfiyzz57qaljshw6sr80aj5v8krzxsn" - -["github.com/containerd/console"] - sumVersion = "v1.0.2" - ["github.com/containerd/console".fetch] - type = "git" - url = "https://github.com/containerd/console" - rev = "2f1e3d2b6afd18e8b2077816c711205a0b4d8769" - sha256 = "0rxwgq578hphs2ldx1gg6c9fq1qm8rgqfx3vgi2sbrsmxn6m2438" - -["github.com/containerd/continuity"] - sumVersion = "v0.1.0" - ["github.com/containerd/continuity".fetch] - type = "git" - url = "https://github.com/containerd/continuity" - rev = "bce1c3f9669b6f3e7f6656ee715b0b4d75fa64a6" - sha256 = "1h756l1xc31sc4zc1d3hmh64kl9qm5vpbbw0c93hrasn51ki96yz" - -["github.com/coreos/bbolt"] - sumVersion = "v1.3.2" - ["github.com/coreos/bbolt".fetch] - type = "git" - url = "https://github.com/coreos/bbolt" - rev = "63597a96ec0ad9e6d43c3fc81e809909e0237461" - sha256 = "13d5l6p6c5wvkr6vn9hkhz9c593qifn7fgx0hg4d6jcvg1y0bnm2" - -["github.com/coreos/etcd"] - sumVersion = "v3.3.13+incompatible" - ["github.com/coreos/etcd".fetch] - type = "git" - url = "https://github.com/coreos/etcd" - rev = "98d308426819d892e149fe45f6fd542464cb1f9d" - sha256 = "1kac4qfr83f2hdz35403f1ald05wc85vvhw79vxb431n61jvyaqy" - -["github.com/coreos/go-etcd"] - sumVersion = "v2.0.0+incompatible" - ["github.com/coreos/go-etcd".fetch] - type = "git" - url = "https://github.com/coreos/go-etcd" - rev = "f02171fbd43c7b9b53ce8679b03235a1ef3c7b12" - sha256 = "1xb34hzaa1lkbq5vkzy9vcz6gqwj7hp6cdbvyack2bf28dwn33jj" - -["github.com/coreos/go-semver"] - sumVersion = "v0.3.0" - ["github.com/coreos/go-semver".fetch] - type = "git" - url = "https://github.com/coreos/go-semver" - rev = "e214231b295a8ea9479f11b70b35d5acf3556d9b" - sha256 = "0770h1mpig2j5sbiha3abnwaw8p6dg9i87r8pc7cf6m4kwml3sc9" - -["github.com/coreos/go-systemd"] - sumVersion = "v0.0.0-20190620071333-e64a0ec8b42a" - ["github.com/coreos/go-systemd".fetch] - type = "git" - url = "https://github.com/coreos/go-systemd" - rev = "e64a0ec8b42a61e2a9801dc1d0abe539dea79197" - sha256 = "0jf705z62hy1230ryw9z3686g31v5yc16izcjzcasbawgv5c000v" - -["github.com/coreos/go-systemd/v22"] - sumVersion = "v22.3.2" - ["github.com/coreos/go-systemd/v22".fetch] - type = "git" - url = "https://github.com/coreos/go-systemd" - rev = "777e73a89cef78631ccaa97f53a9bae67e166186" - sha256 = "1ndi86b8va84ha93njqgafypz4di7yxfd5r5kf1r0s3y3ghcjajq" - -["github.com/coreos/pkg"] - sumVersion = "v0.0.0-20180928190104-399ea9e2e55f" - ["github.com/coreos/pkg".fetch] - type = "git" - url = "https://github.com/coreos/pkg" - rev = "399ea9e2e55f791b6e3d920860dbecb99c3692f0" - sha256 = "0nxbn0m7lr4dg0yrwnvlkfiyg3ndv8vdpssjx7b714nivpc6ar0y" - -["github.com/cosmos/cosmos-sdk"] - sumVersion = "v0.44.2-regen-1" - vendorPath = "github.com/regen-network/cosmos-sdk" - ["github.com/cosmos/cosmos-sdk".fetch] - type = "git" - url = "https://github.com/regen-network/cosmos-sdk" - rev = "bfc1b84feeaf42ad5a3a048dc683ef547759e1b2" - sha256 = "1147q81fq64i1sxxivsaz9i45qr0l8q6b8xbc3nwmz20vc6dapm2" - -["github.com/cosmos/go-bip39"] - sumVersion = "v1.0.0" - ["github.com/cosmos/go-bip39".fetch] - type = "git" - url = "https://github.com/cosmos/go-bip39" - rev = "3027fe585f89a39da9b7389bd4e3482e056f6d3f" - sha256 = "0q063bsalxffq41l3f6xlr50xa2985liw6y5niiwnjysdc5rlva2" - -["github.com/cosmos/iavl"] - sumVersion = "v0.17.1" - ["github.com/cosmos/iavl".fetch] - type = "git" - url = "https://github.com/cosmos/iavl" - rev = "8e24bc87fc0702f0994ac3b2b55386235c3dd3cf" - sha256 = "1q5fbk4afkxxlgyj82xfxfmwzcpsaa4hwm431xl8b34xhpdglkdp" - -["github.com/cosmos/ibc-go/v2"] - sumVersion = "v2.0.0" - ["github.com/cosmos/ibc-go/v2".fetch] - type = "git" - url = "https://github.com/cosmos/ibc-go" - rev = "dc416084694b6ed1d45baf50cc408b747daa90aa" - sha256 = "0wbw73pv7mnbaawfcjwyvpnxxkj4iz7cy8cg3d5cad3p1fmqzmx1" - -["github.com/cosmos/ledger-cosmos-go"] - sumVersion = "v0.11.1" - ["github.com/cosmos/ledger-cosmos-go".fetch] - type = "git" - url = "https://github.com/cosmos/ledger-cosmos-go" - rev = "c03f491cbf1740e5ec7919683019c2c84d9fbc10" - sha256 = "0c584nig16mz1i5w1pp741q1ymb1ln70kvxkv3l62rkdymbbwn6a" - -["github.com/cosmos/ledger-go"] - sumVersion = "v0.9.2" - ["github.com/cosmos/ledger-go".fetch] - type = "git" - url = "https://github.com/cosmos/ledger-go" - rev = "1c99b41f1877b58e3517ef93012cc76fe5cd335b" - sha256 = "10vnj13c8diq3bxvf2m46s8ifj4fj1iwsw5hg7i1h55h1v83x0ni" - -["github.com/cpuguy83/go-md2man"] - sumVersion = "v1.0.10" - ["github.com/cpuguy83/go-md2man".fetch] - type = "git" - url = "https://github.com/cpuguy83/go-md2man" - rev = "7762f7e404f8416dfa1d9bb6a8c192aa9acb4d19" - sha256 = "1bqkf2bvy1dns9zd24k81mh2p1zxsx2nhq5cj8dz2vgkv1xkh60i" - -["github.com/cpuguy83/go-md2man/v2"] - sumVersion = "v2.0.0" - ["github.com/cpuguy83/go-md2man/v2".fetch] - type = "git" - url = "https://github.com/cpuguy83/go-md2man" - rev = "f79a8a8ca69da163eee19ab442bedad7a35bba5a" - sha256 = "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv" - -["github.com/creack/pty"] - sumVersion = "v1.1.9" - ["github.com/creack/pty".fetch] - type = "git" - url = "https://github.com/creack/pty" - rev = "3a6a957789163cacdfe0e291617a1c8e80612c11" - sha256 = "1v52599qq76dwq742mffakzj6mxqqccv2szn3hjicjld56nmd2d3" - -["github.com/cyphar/filepath-securejoin"] - sumVersion = "v0.2.2" - ["github.com/cyphar/filepath-securejoin".fetch] - type = "git" - url = "https://github.com/cyphar/filepath-securejoin" - rev = "a261ee33d7a517f054effbf451841abaafe3e0fd" - sha256 = "0id32zjb92wm569m29nfrzz5mw9z1glr3klayr6j134pp4h1sgq4" - -["github.com/daixiang0/gci"] - sumVersion = "v0.2.9" - ["github.com/daixiang0/gci".fetch] - type = "git" - url = "https://github.com/daixiang0/gci" - rev = "59beec6e2fe1fd299a96d9182071dbb529b936fc" - sha256 = "0pz4pi57m2lb2whh2iwxbgcxjd8d7mi6zw648l19hcw3g8wckkrp" - -["github.com/danieljoos/wincred"] - sumVersion = "v1.0.2" - ["github.com/danieljoos/wincred".fetch] - type = "git" - url = "https://github.com/danieljoos/wincred" - rev = "b892d337201d1400370ebf4fa919941c9ea222ee" - sha256 = "1ym8mygjrf3rw1qka9irw76b2yisr2l5pq2w581s40yldnbfq4lc" - -["github.com/davecgh/go-spew"] - sumVersion = "v1.1.1" - ["github.com/davecgh/go-spew".fetch] - type = "git" - url = "https://github.com/davecgh/go-spew" - rev = "8991bc29aa16c548c550c7ff78260e27b9ab7c73" - sha256 = "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y" - -["github.com/deckarep/golang-set"] - sumVersion = "v0.0.0-20180603214616-504e848d77ea" - ["github.com/deckarep/golang-set".fetch] - type = "git" - url = "https://github.com/deckarep/golang-set" - rev = "504e848d77ea4752b3057b8fb46da0e7f746ccf3" - sha256 = "0n0dgz82vvwpxh2fp3d9ciawzrwv0w3hsnkk4y7z64pxp27r4k7n" - -["github.com/decred/dcrd/lru"] - sumVersion = "v1.0.0" - relPath = "lru" - ["github.com/decred/dcrd/lru".fetch] - type = "git" - url = "https://github.com/decred/dcrd" - rev = "5c3e0d6454001c8d14fcf06be94381d93991aaea" - sha256 = "0m2mxrkbnr4dfan9ljxq9dd5hhqmpx5n9pd4hnwn5mlj4zgv018a" - -["github.com/denis-tingajkin/go-header"] - sumVersion = "v0.4.2" - ["github.com/denis-tingajkin/go-header".fetch] - type = "git" - url = "https://github.com/denis-tingajkin/go-header" - rev = "5c90e44d1198ad5015300e930829fe83a0899652" - sha256 = "1y6yzfy9xmga1k7y042hw48h1ygsjw1jd8m7fjs3r7ij1kcihr3k" - -["github.com/desertbit/timer"] - sumVersion = "v0.0.0-20180107155436-c41aec40b27f" - ["github.com/desertbit/timer".fetch] - type = "git" - url = "https://github.com/desertbit/timer" - rev = "c41aec40b27f0eeb2b94300fffcd624c69b02990" - sha256 = "1jsy04ga79xbdfn0xqzs7q8gyh2sz9jpfqdsb210m6188yscxck9" - -["github.com/dgraph-io/badger/v2"] - sumVersion = "v2.2007.2" - ["github.com/dgraph-io/badger/v2".fetch] - type = "git" - url = "https://github.com/dgraph-io/badger" - rev = "d5a25b83fbf4f3f61ff03a9202e36f5b75544426" - sha256 = "0cck8ap61bi56dv070cirkkl6fjavz05kwyxjv08lbfykhlpz3da" - -["github.com/dgraph-io/ristretto"] - sumVersion = "v0.0.3" - ["github.com/dgraph-io/ristretto".fetch] - type = "git" - url = "https://github.com/dgraph-io/ristretto" - rev = "bcb54d096f2303ce80960e125b5991ac4d6325c3" - sha256 = "1v29j6b0r87pf5dwsxi3rxa8yavkl3h79i63rbddfd42p2jyssyg" - -["github.com/dgrijalva/jwt-go"] - sumVersion = "v3.2.0+incompatible" - ["github.com/dgrijalva/jwt-go".fetch] - type = "git" - url = "https://github.com/dgrijalva/jwt-go" - rev = "06ea1031745cb8b3dab3f6a236daf2b0aa468b7e" - sha256 = "08m27vlms74pfy5z79w67f9lk9zkx6a9jd68k3c4msxy75ry36mp" - -["github.com/dgryski/go-farm"] - sumVersion = "v0.0.0-20200201041132-a6ae2369ad13" - ["github.com/dgryski/go-farm".fetch] - type = "git" - url = "https://github.com/dgryski/go-farm" - rev = "a6ae2369ad13dc757768086f0cb902728c7e03e5" - sha256 = "1qbz4a4fv3853ix974x02q1129kc4xxf0c92ib5sdpsq04zjbqv8" - -["github.com/dgryski/go-sip13"] - sumVersion = "v0.0.0-20181026042036-e10d5fee7954" - ["github.com/dgryski/go-sip13".fetch] - type = "git" - url = "https://github.com/dgryski/go-sip13" - rev = "e10d5fee79544bd84105c9329adcc7b745fd588c" - sha256 = "15fyibfas209ljz3f7g07kdmfbl3hhyd9n5n7aq5n5p9m5mn41d6" - -["github.com/dlclark/regexp2"] - sumVersion = "v1.2.0" - ["github.com/dlclark/regexp2".fetch] - type = "git" - url = "https://github.com/dlclark/regexp2" - rev = "92c702aa5812963ef9193a9624191932d44073d7" - sha256 = "011l1prsywvhhi0yc7qmpsca1cwavmawyyld5kjzi0ff9ghvj4ng" - -["github.com/docker/docker"] - sumVersion = "v1.4.2-0.20180625184442-8e610b2b55bf" - ["github.com/docker/docker".fetch] - type = "git" - url = "https://github.com/docker/docker" - rev = "8e610b2b55bfd1bfa9436ab110d311f5e8a74dcb" - sha256 = "00d27aj6c2vi9q0djy9pqk3h8fqp066vffqckil43qq1c5b83c1j" - -["github.com/docker/go-connections"] - sumVersion = "v0.4.0" - ["github.com/docker/go-connections".fetch] - type = "git" - url = "https://github.com/docker/go-connections" - rev = "7395e3f8aa162843a74ed6d48e79627d9792ac55" - sha256 = "0mv6f6b5nljc17dmwmc28hc0y11pqglz7x0d2mjrwdmfxf64hwqq" - -["github.com/docker/go-units"] - sumVersion = "v0.4.0" - ["github.com/docker/go-units".fetch] - type = "git" - url = "https://github.com/docker/go-units" - rev = "519db1ee28dcc9fd2474ae59fca29a810482bfb1" - sha256 = "0k8gja8ql4pqg5rzmqvka42vjfs6rzablak87whcnqba6qxpimvz" - -["github.com/dop251/goja"] - sumVersion = "v0.0.0-20200721192441-a695b0cdd498" - ["github.com/dop251/goja".fetch] - type = "git" - url = "https://github.com/dop251/goja" - rev = "a695b0cdd4987b22f979a6f4d4ea30689058441a" - sha256 = "1s9358a30gmmbizvavd977n1zyla46bpxb2ymmr6qmmixw8ry4zv" - -["github.com/dustin/go-humanize"] - sumVersion = "v1.0.0" - ["github.com/dustin/go-humanize".fetch] - type = "git" - url = "https://github.com/dustin/go-humanize" - rev = "9f541cc9db5d55bce703bd99987c9d5cb8eea45e" - sha256 = "1kqf1kavdyvjk7f8kx62pnm7fbypn9z1vbf8v2qdh3y7z7a0cbl3" - -["github.com/dvsekhvalnov/jose2go"] - sumVersion = "v0.0.0-20200901110807-248326c1351b" - ["github.com/dvsekhvalnov/jose2go".fetch] - type = "git" - url = "https://github.com/dvsekhvalnov/jose2go" - rev = "248326c1351b716b2820b01a49d53837bfd9ac59" - sha256 = "06zj4n96pa5lnx8pxjhn3vis01fjklhsdqbcbqdv9m4kc7qip27s" - -["github.com/dvyukov/go-fuzz"] - sumVersion = "v0.0.0-20200318091601-be3528f3a813" - ["github.com/dvyukov/go-fuzz".fetch] - type = "git" - url = "https://github.com/dvyukov/go-fuzz" - rev = "be3528f3a81351d8a438aed216130e1e7da39f7c" - sha256 = "1sxl62r8c13p4sm60c77mzcn6dlxbbk6c2nmic6j8z55dx4nlg1a" - -["github.com/eapache/go-resiliency"] - sumVersion = "v1.1.0" - ["github.com/eapache/go-resiliency".fetch] - type = "git" - url = "https://github.com/eapache/go-resiliency" - rev = "ea41b0fad31007accc7f806884dcdf3da98b79ce" - sha256 = "1zmgw3c4w5r6m2r340n4jc5l5ll3m3nbszqrmrgbqc2xixxyk2gx" - -["github.com/eapache/go-xerial-snappy"] - sumVersion = "v0.0.0-20180814174437-776d5712da21" - ["github.com/eapache/go-xerial-snappy".fetch] - type = "git" - url = "https://github.com/eapache/go-xerial-snappy" - rev = "776d5712da21bc4762676d614db1d8a64f4238b0" - sha256 = "0ncc41dv7xwb1znyzmzh7cvs6j5fzz0f1n8h1v3grl9ma6s1si9d" - -["github.com/eapache/queue"] - sumVersion = "v1.1.0" - ["github.com/eapache/queue".fetch] - type = "git" - url = "https://github.com/eapache/queue" - rev = "44cc805cf13205b55f69e14bcb69867d1ae92f98" - sha256 = "07dp54n94gn3gsvdcki56yqh7py7wqqigxbamhxwgbr05n61fqyg" - -["github.com/edsrzf/mmap-go"] - sumVersion = "v1.0.0" - ["github.com/edsrzf/mmap-go".fetch] - type = "git" - url = "https://github.com/edsrzf/mmap-go" - rev = "188cc3b666ba704534fa4f96e9e61f21f1e1ba7c" - sha256 = "0ajmkk5cj6xmbngx3nhar7672i2vrkwpnbv1f26i5p4f5aydhl4k" - -["github.com/enigmampc/btcutil"] - sumVersion = "v1.0.3-0.20200723161021-e2fb6adb2a25" - ["github.com/enigmampc/btcutil".fetch] - type = "git" - url = "https://github.com/enigmampc/btcutil" - rev = "e2fb6adb2a25f868283c4f243c873ad6b4894974" - sha256 = "0r2gf20acxnrcrch57hvgg8qp8ic96w6bx0j080cfya04xib3dxv" - -["github.com/envoyproxy/go-control-plane"] - sumVersion = "v0.9.4" - ["github.com/envoyproxy/go-control-plane".fetch] - type = "git" - url = "https://github.com/envoyproxy/go-control-plane" - rev = "ba8e577f987f6676343cac84525b92ed1b2d86fe" - sha256 = "0m0crzx70lp7vz13v20wxb1fcfdnzp7h3mkh3bn6a8mbfz6w5asj" - -["github.com/envoyproxy/protoc-gen-validate"] - sumVersion = "v0.1.0" - ["github.com/envoyproxy/protoc-gen-validate".fetch] - type = "git" - url = "https://github.com/envoyproxy/protoc-gen-validate" - rev = "9eff07ddfcb4001aa1aab280648153f46e1a8ddc" - sha256 = "0kxd3wwh3xwqk0r684hsy281xq4y71cd11d4q2hspcjbnlbwh7cy" - -["github.com/esimonov/ifshort"] - sumVersion = "v1.0.2" - ["github.com/esimonov/ifshort".fetch] - type = "git" - url = "https://github.com/esimonov/ifshort" - rev = "c1bcdfa3aa300993b7bb252edfa1c126fe303d09" - sha256 = "1kqq3js0rhhdircwamyr0b6l7b01flgvj4ny5x4g51vz8m1z36jj" - -["github.com/ethereum/go-ethereum"] - sumVersion = "v1.9.25" - ["github.com/ethereum/go-ethereum".fetch] - type = "git" - url = "https://github.com/ethereum/go-ethereum" - rev = "e7872729012a4871397307b12cc3f4772ffcbec6" - sha256 = "1gilb29gcjw8x3s9krbq9cf6kzvq5cvkad4wc20g91a3i2hd7daf" - -["github.com/ettle/strcase"] - sumVersion = "v0.1.1" - ["github.com/ettle/strcase".fetch] - type = "git" - url = "https://github.com/ettle/strcase" - rev = "693d0d408811c431fde27311cd013dcf5061676b" - sha256 = "0g1d52dfh5nqs9ikjbd9vgrs554s3nsb6df9dllggikya46a1p8l" - -["github.com/facebookgo/ensure"] - sumVersion = "v0.0.0-20160127193407-b4ab57deab51" - ["github.com/facebookgo/ensure".fetch] - type = "git" - url = "https://github.com/facebookgo/ensure" - rev = "b4ab57deab51ee655ae4bd85281f0715a068016d" - sha256 = "19icavc3sg0mdz8151q3vp2vn3ipq53mnb9h9n57w32amyyszl4d" - -["github.com/facebookgo/stack"] - sumVersion = "v0.0.0-20160209184415-751773369052" - ["github.com/facebookgo/stack".fetch] - type = "git" - url = "https://github.com/facebookgo/stack" - rev = "751773369052141c013c6e827a71e8f35c07879c" - sha256 = "07yr05mz7h007ldpij90zjflwgixp148sbyrdlh1fj5bikr4p8m3" - -["github.com/facebookgo/subset"] - sumVersion = "v0.0.0-20150612182917-8dac2c3c4870" - ["github.com/facebookgo/subset".fetch] - type = "git" - url = "https://github.com/facebookgo/subset" - rev = "8dac2c3c48703541e481feddf22975953d4ff842" - sha256 = "0kyc2m5wxjzj4fwspybgn1mgjzhbdfnadpwy9mrw1s05bh21rgai" - -["github.com/fatih/color"] - sumVersion = "v1.12.0" - ["github.com/fatih/color".fetch] - type = "git" - url = "https://github.com/fatih/color" - rev = "cf452350f542986d689fb53db88dbb0212f141db" - sha256 = "0r6r4vh9aiz8ny2whvpq288x8shkyvpj38g5pqw5840ryq38chig" - -["github.com/fatih/structtag"] - sumVersion = "v1.2.0" - ["github.com/fatih/structtag".fetch] - type = "git" - url = "https://github.com/fatih/structtag" - rev = "72c94723f1e6825195e0d8e9857fca28cd23d835" - sha256 = "09a9pycvkf384v5f47ff4q33bjbzpx6kbkn23za1gcwc96466sk3" - -["github.com/felixge/httpsnoop"] - sumVersion = "v1.0.1" - ["github.com/felixge/httpsnoop".fetch] - type = "git" - url = "https://github.com/felixge/httpsnoop" - rev = "33ec42cfe005395fb4cc4b296781f65d7ffef2c3" - sha256 = "0ncd8lar5zxiwjhsp315s4hsl4bhnm271h49jhyxc66r5yffgmac" - -["github.com/fjl/memsize"] - sumVersion = "v0.0.0-20180418122429-ca190fb6ffbc" - ["github.com/fjl/memsize".fetch] - type = "git" - url = "https://github.com/fjl/memsize" - rev = "ca190fb6ffbc076ff49197b7168a760f30182d2e" - sha256 = "02vz4mfsajpsjk9nwrb6djs5zd9f70iqxf6z3x7h7kq5lqc2wfjc" - -["github.com/fortytw2/leaktest"] - sumVersion = "v1.3.0" - ["github.com/fortytw2/leaktest".fetch] - type = "git" - url = "https://github.com/fortytw2/leaktest" - rev = "9a23578d06a26ec1b47bfc8965bf5e7011df8bd6" - sha256 = "0487zghyxqzk6zdbhd2j074pcc2l15l4sfg5clrjqwfbql7519wx" - -["github.com/franela/goblin"] - sumVersion = "v0.0.0-20200105215937-c9ffbefa60db" - ["github.com/franela/goblin".fetch] - type = "git" - url = "https://github.com/franela/goblin" - rev = "c9ffbefa60dbcc40777294734ec3664f35a8c838" - sha256 = "0qdhg6i4bcf6inmzq2dbdv0r0c7clw1vd3n2zs4896ig0aws6vff" - -["github.com/franela/goreq"] - sumVersion = "v0.0.0-20171204163338-bcd34c9993f8" - ["github.com/franela/goreq".fetch] - type = "git" - url = "https://github.com/franela/goreq" - rev = "bcd34c9993f899273c74baaa95e15386cd97b6e7" - sha256 = "055a20nc5f1blk2swiwpwqpxd3z495ms1qr6a7cbbss1w3a7a7sb" - -["github.com/frankban/quicktest"] - sumVersion = "v1.11.3" - ["github.com/frankban/quicktest".fetch] - type = "git" - url = "https://github.com/frankban/quicktest" - rev = "e7d1f0b53af1e9c9cf66924bc310190b1db8c339" - sha256 = "0d5njmwkfq2809vlimnlvy8ir6kln0c4cgdwr680fwsclpbr43qs" - -["github.com/fsnotify/fsnotify"] - sumVersion = "v1.5.1" - ["github.com/fsnotify/fsnotify".fetch] - type = "git" - url = "https://github.com/fsnotify/fsnotify" - rev = "466b39d216616549a37ee93c7c47775f6a010790" - sha256 = "0xpdprvab4zgn5igymc5468hk5s429cqyxml9xjsk0cn53rikj87" - -["github.com/fullstorydev/grpcurl"] - sumVersion = "v1.6.0" - ["github.com/fullstorydev/grpcurl".fetch] - type = "git" - url = "https://github.com/fullstorydev/grpcurl" - rev = "2108c8f0b319c4182d718308ad3d6eb669a20a35" - sha256 = "03x9yj8c39vdwjk31nghk8j3h80bi8a1ns5fn2aglygkwnhsz33l" - -["github.com/fzipp/gocyclo"] - sumVersion = "v0.3.1" - ["github.com/fzipp/gocyclo".fetch] - type = "git" - url = "https://github.com/fzipp/gocyclo" - rev = "39f24b305784dc1d91c39229afd889a161000c9b" - sha256 = "1rimdrhmy6nkzh7ydpx6139hh9ml6rdqg5gvkpy2l1x9mhanvan0" - -["github.com/gballet/go-libpcsclite"] - sumVersion = "v0.0.0-20190607065134-2772fd86a8ff" - ["github.com/gballet/go-libpcsclite".fetch] - type = "git" - url = "https://github.com/gballet/go-libpcsclite" - rev = "2772fd86a8ff4306d2749f610a386bfee9e0d727" - sha256 = "1j7389jcjdsb73c30cial688m3r2wypspn8zhy5mvm3c9xqnigin" - -["github.com/ghodss/yaml"] - sumVersion = "v1.0.0" - ["github.com/ghodss/yaml".fetch] - type = "git" - url = "https://github.com/ghodss/yaml" - rev = "0ca9ea5df5451ffdf184b4428c902747c2c11cd7" - sha256 = "0skwmimpy7hlh7pva2slpcplnm912rp3igs98xnqmn859kwa5v8g" - -["github.com/gin-contrib/sse"] - sumVersion = "v0.1.0" - ["github.com/gin-contrib/sse".fetch] - type = "git" - url = "https://github.com/gin-contrib/sse" - rev = "54d8467d122d380a14768b6b4e5cd7ca4755938f" - sha256 = "072nq91a65n5xvwslqjyvydfd0mfpnvb3vwjyfvmzm1ym96wr1nd" - -["github.com/gin-gonic/gin"] - sumVersion = "v1.6.3" - ["github.com/gin-gonic/gin".fetch] - type = "git" - url = "https://github.com/gin-gonic/gin" - rev = "6a8b8b6651a228590bbc42145483ff864f4f6e89" - sha256 = "18k0ydx88xh100xp1ff0zpjk2n233rv7qxijbsrrsgqrq9z83w3l" - -["github.com/go-critic/go-critic"] - sumVersion = "v0.5.6" - ["github.com/go-critic/go-critic".fetch] - type = "git" - url = "https://github.com/go-critic/go-critic" - rev = "3d8144d7f9920a1f186297e8c53222d2ad71ee8a" - sha256 = "1qqinwy88rr2i4rypvpclcp73dg2602fcx2qh9cr83wnsf7d6a3r" - -["github.com/go-gl/glfw"] - sumVersion = "v0.0.0-20190409004039-e6da0acd62b1" - ["github.com/go-gl/glfw".fetch] - type = "git" - url = "https://github.com/go-gl/glfw" - rev = "e6da0acd62b1b57ee2799d4d0a76a7d4514dc5bc" - sha256 = "0prvx5r7q8yrhqvnwibv4xz3dayjbq36yajzqvh0z4lqsh4hyhch" - -["github.com/go-gl/glfw/v3.3/glfw"] - sumVersion = "v0.0.0-20200222043503-6f7a984d4dc4" - relPath = "v3.3/glfw" - ["github.com/go-gl/glfw/v3.3/glfw".fetch] - type = "git" - url = "https://github.com/go-gl/glfw" - rev = "6f7a984d4dc470c3f197229ad1991ae9e211bba2" - sha256 = "1nyv7h08qf4dp8w9pmcnrc6vv9bkwj8fil6pz0mkbss5hf4i8xcq" - -["github.com/go-kit/kit"] - sumVersion = "v0.10.0" - ["github.com/go-kit/kit".fetch] - type = "git" - url = "https://github.com/go-kit/kit" - rev = "cc938d52e0cdf4c811ab203f428fcd06f9d9a148" - sha256 = "1cqlrjf90b5pg6sj4nh0qz5wplnsjmcdgrvs6wfdjy5p71f17msa" - -["github.com/go-kit/log"] - sumVersion = "v0.1.0" - ["github.com/go-kit/log".fetch] - type = "git" - url = "https://github.com/go-kit/log" - rev = "63376a29a92260f7b256eedf2fae39e28161114d" - sha256 = "1giv2pdswp02zk82rqfda2qpazqs4z5agnnfxxasghlsiry170r1" - -["github.com/go-logfmt/logfmt"] - sumVersion = "v0.5.0" - ["github.com/go-logfmt/logfmt".fetch] - type = "git" - url = "https://github.com/go-logfmt/logfmt" - rev = "3be5f6aae7db841d31dc5e1b3bb7b4cff19200b3" - sha256 = "0mcvgimnf6a15hhpmmv42kzbsn618f0zi2j3np49xkq1113d7yyj" - -["github.com/go-ole/go-ole"] - sumVersion = "v1.2.5" - ["github.com/go-ole/go-ole".fetch] - type = "git" - url = "https://github.com/go-ole/go-ole" - rev = "9f1c1d07a2d46919f666f69f6a324bacba498a6a" - sha256 = "1561h2srxgp4kx7l4q2dsvsh47h8k8ps3xnwjzg76yjvgfsqrlnw" - -["github.com/go-playground/assert/v2"] - sumVersion = "v2.0.1" - ["github.com/go-playground/assert/v2".fetch] - type = "git" - url = "https://github.com/go-playground/assert" - rev = "8eb943fbae8448cf47383208d8d0c396e26011a9" - sha256 = "1cl9c4s405zddzrj36hhs0a18g02zscdl46fyipp6k91mhvai8wz" - -["github.com/go-playground/locales"] - sumVersion = "v0.13.0" - ["github.com/go-playground/locales".fetch] - type = "git" - url = "https://github.com/go-playground/locales" - rev = "9f105231d3a5f6877a2bf8321dfa15ea6f844b1b" - sha256 = "0qydcpkvss3mf8mk3xzg6a34n8i69aydrigcl2apifrkx72jw7pf" - -["github.com/go-playground/universal-translator"] - sumVersion = "v0.17.0" - ["github.com/go-playground/universal-translator".fetch] - type = "git" - url = "https://github.com/go-playground/universal-translator" - rev = "f87b1403479a348651dbf5f07f5cc6e5fcf07008" - sha256 = "1zdiaisb32iv4x93cpbqrgx8ll7sxh4hcd2iibpswy4bwvjbjlz6" - -["github.com/go-playground/validator/v10"] - sumVersion = "v10.2.0" - ["github.com/go-playground/validator/v10".fetch] - type = "git" - url = "https://github.com/go-playground/validator" - rev = "c68441b7f4748b48ad9a0c9a79d346019730e207" - sha256 = "0pfbn06n7ll7slp36vvv94gf8ylm6mynp332r5q7j78nca1bjb5b" - -["github.com/go-redis/redis"] - sumVersion = "v6.15.8+incompatible" - ["github.com/go-redis/redis".fetch] - type = "git" - url = "https://github.com/go-redis/redis" - rev = "2aca83490d09584301390a787777fbe5a0fc4a96" - sha256 = "1da7rs6jrr394d6kicwhncznaiwkm3dlipmbnf6a33qlv8ywnf5z" - -["github.com/go-sourcemap/sourcemap"] - sumVersion = "v2.1.2+incompatible" - ["github.com/go-sourcemap/sourcemap".fetch] - type = "git" - url = "https://github.com/go-sourcemap/sourcemap" - rev = "b019cc30c1eaa584753491b0d8f8c1534bf1eb44" - sha256 = "03k44fdrnknba05f7cd58lq4rzk7jdpiqksmc0wxrdzwschrbgw8" - -["github.com/go-sql-driver/mysql"] - sumVersion = "v1.5.0" - ["github.com/go-sql-driver/mysql".fetch] - type = "git" - url = "https://github.com/go-sql-driver/mysql" - rev = "17ef3dd9d98b69acec3e85878995ada9533a9370" - sha256 = "11x0m9yf3kdnf6981182r824psgxwfaqhn3x3in4yiidp0w0hk3v" - -["github.com/go-stack/stack"] - sumVersion = "v1.8.0" - ["github.com/go-stack/stack".fetch] - type = "git" - url = "https://github.com/go-stack/stack" - rev = "2fee6af1a9795aafbe0253a0cfbdf668e1fb8a9a" - sha256 = "0wk25751ryyvxclyp8jdk5c3ar0cmfr8lrjb66qbg4808x66b96v" - -["github.com/go-task/slim-sprig"] - sumVersion = "v0.0.0-20210107165309-348f09dbbbc0" - ["github.com/go-task/slim-sprig".fetch] - type = "git" - url = "https://github.com/go-task/slim-sprig" - rev = "348f09dbbbc0ff8b922a311da7a90cd014b69aa3" - sha256 = "16i1w4sm1h8wd132gdaq1z0asj9nc36zs8b3q9jy5kcbjzidl34f" - -["github.com/go-toolsmith/astcast"] - sumVersion = "v1.0.0" - ["github.com/go-toolsmith/astcast".fetch] - type = "git" - url = "https://github.com/go-toolsmith/astcast" - rev = "a6cb19f07b66b859a53f3f2be6e4c3bba892db7e" - sha256 = "1kwxrg0kvmp3900wx2vss8d07cfs31x3rw1gdyw230gmplp7aisx" - -["github.com/go-toolsmith/astcopy"] - sumVersion = "v1.0.0" - ["github.com/go-toolsmith/astcopy".fetch] - type = "git" - url = "https://github.com/go-toolsmith/astcopy" - rev = "245af3020944a15e09072c8ad3883c1451d1fdef" - sha256 = "0r9bx913gn5r8xnqyq0wvgxa9ffznpw6rc5mvbv99cq1slndp1y1" - -["github.com/go-toolsmith/astequal"] - sumVersion = "v1.0.0" - ["github.com/go-toolsmith/astequal".fetch] - type = "git" - url = "https://github.com/go-toolsmith/astequal" - rev = "dcb477bfacd6e00a13c6d63bfc73db28dd343160" - sha256 = "03rpz2pvg70yadlyj0745mbzg3hjzkfhxc9rzs6d07w489bp48q6" - -["github.com/go-toolsmith/astfmt"] - sumVersion = "v1.0.0" - ["github.com/go-toolsmith/astfmt".fetch] - type = "git" - url = "https://github.com/go-toolsmith/astfmt" - rev = "0d74c731079884bda287cf8df9ce7b92e688af8c" - sha256 = "0n4vbmy3fya8vi0s1qc7nbq928ff293idzps09pjfvbjn0184j4k" - -["github.com/go-toolsmith/astinfo"] - sumVersion = "v0.0.0-20180906194353-9809ff7efb21" - ["github.com/go-toolsmith/astinfo".fetch] - type = "git" - url = "https://github.com/go-toolsmith/astinfo" - rev = "9809ff7efb211e704a852623a50258071168e9bd" - sha256 = "14vkdn9q84ymfziabpk06729d7q9dc1b6ql3b9313bqwbyjf2pby" - -["github.com/go-toolsmith/astp"] - sumVersion = "v1.0.0" - ["github.com/go-toolsmith/astp".fetch] - type = "git" - url = "https://github.com/go-toolsmith/astp" - rev = "6373270dee65bfb0479f2acd16d4c8e9d5db13f8" - sha256 = "19ycnp2g0vr59wrg01dc29333gizdpdhb01dq5wp6rhihqcrh1ga" - -["github.com/go-toolsmith/pkgload"] - sumVersion = "v1.0.0" - ["github.com/go-toolsmith/pkgload".fetch] - type = "git" - url = "https://github.com/go-toolsmith/pkgload" - rev = "1759eb21c731bfa0dc81091556b35584f07d49e8" - sha256 = "0hgwaqn8mf1pqn1plchjqripa8xn5g7z61qpby59f74y9rj95dnh" - -["github.com/go-toolsmith/strparse"] - sumVersion = "v1.0.0" - ["github.com/go-toolsmith/strparse".fetch] - type = "git" - url = "https://github.com/go-toolsmith/strparse" - rev = "830b6daa1241714c12a9b9a4a56849fe2f93aedc" - sha256 = "1lxglj4gcw62gp83qm9n1qj2yyam4wb7phx6y8zfkh6wv4chwzw9" - -["github.com/go-toolsmith/typep"] - sumVersion = "v1.0.2" - ["github.com/go-toolsmith/typep".fetch] - type = "git" - url = "https://github.com/go-toolsmith/typep" - rev = "14dc03ca05da56f81516643e3ab22095f519aec4" - sha256 = "0gmrvxw9jlwj55kwv22qwbr6f4l54d1766hsmx1n8y03qz5wk7p1" - -["github.com/go-xmlfmt/xmlfmt"] - sumVersion = "v0.0.0-20191208150333-d5b6f63a941b" - ["github.com/go-xmlfmt/xmlfmt".fetch] - type = "git" - url = "https://github.com/go-xmlfmt/xmlfmt" - rev = "d5b6f63a941b0964ef2778c7ac69dfd6b3ae231d" - sha256 = "1gh2lqcfqx53ksa9rzzpbr142zcxg9zycf9ifjnlbqiddjcpy63a" - -["github.com/gobwas/glob"] - sumVersion = "v0.2.3" - ["github.com/gobwas/glob".fetch] - type = "git" - url = "https://github.com/gobwas/glob" - rev = "5ccd90ef52e1e632236f7326478d4faa74f99438" - sha256 = "0jxk1x806zn5x86342s72dq2qy64ksb3zrvrlgir2avjhwb18n6z" - -["github.com/gobwas/httphead"] - sumVersion = "v0.0.0-20180130184737-2c6c146eadee" - ["github.com/gobwas/httphead".fetch] - type = "git" - url = "https://github.com/gobwas/httphead" - rev = "2c6c146eadee0b69f856f87e3e9f1d0cd6aad2f5" - sha256 = "0j7nlrf79cafl8ap69ri2c7v3psr2y133cr2wn735z7yn3dz3kss" - -["github.com/gobwas/pool"] - sumVersion = "v0.2.0" - ["github.com/gobwas/pool".fetch] - type = "git" - url = "https://github.com/gobwas/pool" - rev = "fa3125c39d7eca32e1387bb69b1b38dcb31b1e0b" - sha256 = "1avpa8c75j1y4hs7awazrjjy7w0pjfw80l424ddn5zyizvh7s67i" - -["github.com/gobwas/ws"] - sumVersion = "v1.0.2" - ["github.com/gobwas/ws".fetch] - type = "git" - url = "https://github.com/gobwas/ws" - rev = "05baaea2bbcfe8963301c62d9931c882d59595cd" - sha256 = "070mfcjbfb40bglc9aw9zjvd4jb1hp3l1s12ww6mjlwbjcg0mm9s" - -["github.com/godbus/dbus"] - sumVersion = "v0.0.0-20190726142602-4481cbc300e2" - ["github.com/godbus/dbus".fetch] - type = "git" - url = "https://github.com/godbus/dbus" - rev = "4481cbc300e2df0c0b3cecc18b6c16c6c0bb885d" - sha256 = "0h0cl1r136g0kxbw3i7ggb9mhavpi1yr7d7312iwhkxm93dxkphg" - -["github.com/godbus/dbus/v5"] - sumVersion = "v5.0.4" - ["github.com/godbus/dbus/v5".fetch] - type = "git" - url = "https://github.com/godbus/dbus" - rev = "c88335c0b1d28a30e7fc76d526a06154b85e5d97" - sha256 = "0znax8kskb5gmp5fj75w56bc9p7b22wrdswzlh4d04sprlc471yi" - -["github.com/gofrs/flock"] - sumVersion = "v0.8.1" - ["github.com/gofrs/flock".fetch] - type = "git" - url = "https://github.com/gofrs/flock" - rev = "6f010d1acea74a32f2f2066bfe324c08bbee30e3" - sha256 = "1mni91ivw277ib3499b58nsyzyz0a239r7b9hvnkiy1i6qkcjvd6" - -["github.com/gogo/gateway"] - sumVersion = "v1.1.0" - ["github.com/gogo/gateway".fetch] - type = "git" - url = "https://github.com/gogo/gateway" - rev = "817b4cf527e834d7d563b7329355c45801d5e02d" - sha256 = "1jj7vr3sdk7yz8jl1kzv8473pkhd388f95byc8pdwrh6y7fh0xrq" - -["github.com/gogo/protobuf"] - sumVersion = "v1.3.2-alpha.regen.4" - vendorPath = "github.com/regen-network/protobuf" - ["github.com/gogo/protobuf".fetch] - type = "git" - url = "https://github.com/regen-network/protobuf" - rev = "28db94a3930aedfea44b6d508cf238065e21b497" - sha256 = "1y3bv0fhxwzb1axba0szvhhdz7rljfz8kgff6n9943v1m0bnpavl" - -["github.com/golang/glog"] - sumVersion = "v0.0.0-20160126235308-23def4e6c14b" - ["github.com/golang/glog".fetch] - type = "git" - url = "https://github.com/golang/glog" - rev = "23def4e6c14b4da8ac2ed8007337bc5eb5007998" - sha256 = "0jb2834rw5sykfr937fxi8hxi2zy80sj2bdn9b3jb4b26ksqng30" - -["github.com/golang/groupcache"] - sumVersion = "v0.0.0-20200121045136-8c9f03a8e57e" - ["github.com/golang/groupcache".fetch] - type = "git" - url = "https://github.com/golang/groupcache" - rev = "8c9f03a8e57eb486e42badaed3fb287da51807ba" - sha256 = "0vjjr79r32icjzlb05wn02k59av7jx0rn1jijml8r4whlg7dnkfh" - -["github.com/golang/mock"] - sumVersion = "v1.6.0" - ["github.com/golang/mock".fetch] - type = "git" - url = "https://github.com/golang/mock" - rev = "aba2ff9a6844d5e3289e8472d3217d5b3090f083" - sha256 = "1hara8j0x431njjhqxfrg1png7xa1gbrpwza6ya4mwlx76hppap4" - -["github.com/golang/protobuf"] - sumVersion = "v1.5.2" - ["github.com/golang/protobuf".fetch] - type = "git" - url = "https://github.com/golang/protobuf" - rev = "ae97035608a719c7a1c1c41bed0ae0744bdb0c6f" - sha256 = "1mh5fyim42dn821nsd3afnmgscrzzhn3h8rag635d2jnr23r1zhk" - -["github.com/golang/snappy"] - sumVersion = "v0.0.3" - ["github.com/golang/snappy".fetch] - type = "git" - url = "https://github.com/golang/snappy" - rev = "674baa8c7fc30da5df3074a459494a7e6b427dff" - sha256 = "1dc8sdca0nrqb8wri91mi2xcjm16wyawm4y0fwc5gp24ahjbrg7g" - -["github.com/golangci/check"] - sumVersion = "v0.0.0-20180506172741-cfe4005ccda2" - ["github.com/golangci/check".fetch] - type = "git" - url = "https://github.com/golangci/check" - rev = "cfe4005ccda277a820149d44d6ededc400cc99a2" - sha256 = "0l0kpg6hg1vby0blhfmvzs7giphiwssrbgjg7kzkn18ggmagxykh" - -["github.com/golangci/dupl"] - sumVersion = "v0.0.0-20180902072040-3e9179ac440a" - ["github.com/golangci/dupl".fetch] - type = "git" - url = "https://github.com/golangci/dupl" - rev = "3e9179ac440a0386ac7cc9a085fc44397c6b9bbc" - sha256 = "1p5cfj5iykn17q0qq9115szm7kr96zx13kj74mdycxgzjgysxr7l" - -["github.com/golangci/go-misc"] - sumVersion = "v0.0.0-20180628070357-927a3d87b613" - ["github.com/golangci/go-misc".fetch] - type = "git" - url = "https://github.com/golangci/go-misc" - rev = "927a3d87b613e9f6f0fb7ef8bb8de8b83c30a5a2" - sha256 = "0207nw3pkf2nfpz621vlyngslh3sybdk4s6vsl45zwycrml6vb6b" - -["github.com/golangci/gofmt"] - sumVersion = "v0.0.0-20190930125516-244bba706f1a" - ["github.com/golangci/gofmt".fetch] - type = "git" - url = "https://github.com/golangci/gofmt" - rev = "244bba706f1af52a02a156282f7473162611fba1" - sha256 = "09x9gh6vqkzn9asm2ds87x6lx2hqbcpn9669czfgp71m39y7qik8" - -["github.com/golangci/golangci-lint"] - sumVersion = "v1.42.1" - ["github.com/golangci/golangci-lint".fetch] - type = "git" - url = "https://github.com/golangci/golangci-lint" - rev = "54f4301ddfc884a7eac5b6ebf68868d6078279d3" - sha256 = "0yihxbqdh3hjl5anr1fdn93c3jbhgyfv5xr6z2ipyxi8ms66a6ln" - -["github.com/golangci/lint-1"] - sumVersion = "v0.0.0-20191013205115-297bf364a8e0" - ["github.com/golangci/lint-1".fetch] - type = "git" - url = "https://github.com/golangci/lint-1" - rev = "297bf364a8e08e6077dc53d696253160314cf7b8" - sha256 = "15paiv9mbgkl3s8g0ld12dh33q5d59x847bqkhl7mg85alz8vsxc" - -["github.com/golangci/maligned"] - sumVersion = "v0.0.0-20180506175553-b1d89398deca" - ["github.com/golangci/maligned".fetch] - type = "git" - url = "https://github.com/golangci/maligned" - rev = "b1d89398deca2fd3f8578e5a9551e819bd01ca5f" - sha256 = "05l2lim7p0as3js5v4yz46xjnh2k2zcgy69wl472gr9cg1bkxgvq" - -["github.com/golangci/misspell"] - sumVersion = "v0.3.5" - ["github.com/golangci/misspell".fetch] - type = "git" - url = "https://github.com/golangci/misspell" - rev = "950f5d19e77066a2353d9a22e89f8f889d1d7012" - sha256 = "0aw65fck7ras852ipcbc559g0xiay3rib6qm68hy821nkgs0yala" - -["github.com/golangci/revgrep"] - sumVersion = "v0.0.0-20210208091834-cd28932614b5" - ["github.com/golangci/revgrep".fetch] - type = "git" - url = "https://github.com/golangci/revgrep" - rev = "cd28932614b5632011a177e3b83853c02e29ca91" - sha256 = "0vh8vw4rg321l3bkgii17vdqdjjahqh8bfmf2qylpbxv4fry3i29" - -["github.com/golangci/unconvert"] - sumVersion = "v0.0.0-20180507085042-28b1c447d1f4" - ["github.com/golangci/unconvert".fetch] - type = "git" - url = "https://github.com/golangci/unconvert" - rev = "28b1c447d1f4a810737ee6ab40ea6c1d0ceae4ad" - sha256 = "1vdig163lkpkf38vngms2xkrc3rl1dnn227gdcdyfji1cxw4kcda" - -["github.com/google/btree"] - sumVersion = "v1.0.0" - ["github.com/google/btree".fetch] - type = "git" - url = "https://github.com/google/btree" - rev = "4030bb1f1f0c35b30ca7009e9ebd06849dd45306" - sha256 = "0ba430m9fbnagacp57krgidsyrgp3ycw5r7dj71brgp5r52g82p6" - -["github.com/google/certificate-transparency-go"] - sumVersion = "v1.1.1" - ["github.com/google/certificate-transparency-go".fetch] - type = "git" - url = "https://github.com/google/certificate-transparency-go" - rev = "aa25a91f9f9e4cf3f4950bd151a50e78701d5f0d" - sha256 = "0ajdhxrvlzwxbxvvc23cnha9f6gwc7xm7yg1lnpmzcg38d10g969" - -["github.com/google/go-cmp"] - sumVersion = "v0.5.5" - ["github.com/google/go-cmp".fetch] - type = "git" - url = "https://github.com/google/go-cmp" - rev = "8fa37b4dd109f12e42b131e485268768f18bcbf8" - sha256 = "12fmkdhyv5d4is8s57k78j097zb0phlgnrkqc03agiszxlid69x7" - -["github.com/google/gofuzz"] - sumVersion = "v1.1.1-0.20200604201612-c04b05f3adfa" - ["github.com/google/gofuzz".fetch] - type = "git" - url = "https://github.com/google/gofuzz" - rev = "c04b05f3adfa7f64e47bf054350f2336aea32e9d" - sha256 = "0i75fm6pg54zvrgbvjkg46cr03pypqm4w0wv0a349f4k7ff8qv9r" - -["github.com/google/martian"] - sumVersion = "v2.1.0+incompatible" - ["github.com/google/martian".fetch] - type = "git" - url = "https://github.com/google/martian" - rev = "195b986b4b6d4c513582cf4d2b8c4fd7e2494f7e" - sha256 = "197hil6vrjk50b9wvwyzf61csid83whsjj6ik8mc9r2lryxlyyrp" - -["github.com/google/martian/v3"] - sumVersion = "v3.1.0" - ["github.com/google/martian/v3".fetch] - type = "git" - url = "https://github.com/google/martian" - rev = "dacbe1a1813d1e1b8f44f17b03ffe0cd9fb5ba54" - sha256 = "1pr9akggfzj2vw11l7ry4sij0hqslpc3gwx4ynbzyvbjhvh64sbc" - -["github.com/google/orderedcode"] - sumVersion = "v0.0.1" - ["github.com/google/orderedcode".fetch] - type = "git" - url = "https://github.com/google/orderedcode" - rev = "9a3d15e0d5340bb1ba5db4071afd931e18b6e013" - sha256 = "0sdqfjji2skc1f7fbv9krbrb0cgfz43ksrld333hllgdidi33c9a" - -["github.com/google/pprof"] - sumVersion = "v0.0.0-20210226084205-cbba55b83ad5" - ["github.com/google/pprof".fetch] - type = "git" - url = "https://github.com/google/pprof" - rev = "cbba55b83ad56c9286566b96b0c82cead332b729" - sha256 = "0drr44nqq0s3jillcrl8qa7sklxybs083lvashdh2ad62hrs31l7" - -["github.com/google/renameio"] - sumVersion = "v0.1.0" - ["github.com/google/renameio".fetch] - type = "git" - url = "https://github.com/google/renameio" - rev = "f0e32980c006571efd537032e5f9cd8c1a92819e" - sha256 = "1ki2x5a9nrj17sn092d6n4zr29lfg5ydv4xz5cp58z6cw8ip43jx" - -["github.com/google/trillian"] - sumVersion = "v1.3.11" - ["github.com/google/trillian".fetch] - type = "git" - url = "https://github.com/google/trillian" - rev = "2053c7648b44d5de45863c3ad12550b511ad6a14" - sha256 = "1lh19wba90y91l5jj8ilzjqxgmqqqdvyn7pzrwvmzv7iiy18wcmh" - -["github.com/google/uuid"] - sumVersion = "v1.2.0" - ["github.com/google/uuid".fetch] - type = "git" - url = "https://github.com/google/uuid" - rev = "bfb86fa49a73e4194d93bea18d7acfe3694438ce" - sha256 = "08wqig98w23cg2ngjijhgm6s0mdayb95awa3cn3bs69lg20gryac" - -["github.com/googleapis/gax-go/v2"] - sumVersion = "v2.0.5" - relPath = "v2" - ["github.com/googleapis/gax-go/v2".fetch] - type = "git" - url = "https://github.com/googleapis/gax-go" - rev = "bd5b16380fd03dc758d11cef74ba2e3bc8b0e8c2" - sha256 = "1lxawwngv6miaqd25s3ba0didfzylbwisd2nz7r4gmbmin6jsjrx" - -["github.com/gookit/color"] - sumVersion = "v1.4.2" - ["github.com/gookit/color".fetch] - type = "git" - url = "https://github.com/gookit/color" - rev = "971acbd594ad519d6a65af5c03a124f533ef3a42" - sha256 = "0pid7yyjd5zbpkgxqhilbfcxyqwx6hzd9sgwk0l2jn3qf0cvzxfi" - -["github.com/gopherjs/gopherjs"] - sumVersion = "v0.0.0-20181017120253-0766667cb4d1" - ["github.com/gopherjs/gopherjs".fetch] - type = "git" - url = "https://github.com/gopherjs/gopherjs" - rev = "0766667cb4d1cfb8d5fde1fe210ae41ead3cf589" - sha256 = "13pfc9sxiwjky2lm1xb3i3lcisn8p6mgjk2d927l7r92ysph8dmw" - -["github.com/gordonklaus/ineffassign"] - sumVersion = "v0.0.0-20210225214923-2e10b2664254" - ["github.com/gordonklaus/ineffassign".fetch] - type = "git" - url = "https://github.com/gordonklaus/ineffassign" - rev = "2e10b26642541670df2672e035b2de19fcb04cab" - sha256 = "0a2ssajs0q78ck0ss63rvkj3x8r6wc8vl10pg760qpw9ykbld5kl" - -["github.com/gorhill/cronexpr"] - sumVersion = "v0.0.0-20180427100037-88b0669f7d75" - ["github.com/gorhill/cronexpr".fetch] - type = "git" - url = "https://github.com/gorhill/cronexpr" - rev = "88b0669f7d75f171bd612b874e52b95c190218df" - sha256 = "0hc7xdfclp2qgkr1581jb3ckjvl34nxmqrnraci5jzmqx5av9j1r" - -["github.com/gorilla/context"] - sumVersion = "v1.1.1" - ["github.com/gorilla/context".fetch] - type = "git" - url = "https://github.com/gorilla/context" - rev = "08b5f424b9271eedf6f9f0ce86cb9396ed337a42" - sha256 = "03p4hn87vcmfih0p9w663qbx9lpsf7i7j3lc7yl7n84la3yz63m4" - -["github.com/gorilla/handlers"] - sumVersion = "v1.5.1" - ["github.com/gorilla/handlers".fetch] - type = "git" - url = "https://github.com/gorilla/handlers" - rev = "d453effd20e6817a8acfd9d278dadd21371da0ba" - sha256 = "15gycdz9lkjnsvvichsbdf25vf6pi1sfn41khhz53iqf300l0w0s" - -["github.com/gorilla/mux"] - sumVersion = "v1.8.0" - ["github.com/gorilla/mux".fetch] - type = "git" - url = "https://github.com/gorilla/mux" - rev = "98cb6bf42e086f6af920b965c38cacc07402d51b" - sha256 = "18f0q9qxgq1yh4ji07mqhiydfcwvi56z9d775v7dc7yckj33kpdk" - -["github.com/gorilla/websocket"] - sumVersion = "v1.4.2" - ["github.com/gorilla/websocket".fetch] - type = "git" - url = "https://github.com/gorilla/websocket" - rev = "b65e62901fc1c0d968042419e74789f6af455eb9" - sha256 = "0mkm9w6kjkrlzab5wh8p4qxkc0icqawjbvr01d2nk6ykylrln40s" - -["github.com/gostaticanalysis/analysisutil"] - sumVersion = "v0.4.1" - ["github.com/gostaticanalysis/analysisutil".fetch] - type = "git" - url = "https://github.com/gostaticanalysis/analysisutil" - rev = "2f839a036bd8444fb6741f7a8297a130aa86e35a" - sha256 = "04fwjbzkjzaf0i95mzqinkmwazn900c7x246nin5ihd24qxgjw9g" - -["github.com/gostaticanalysis/comment"] - sumVersion = "v1.4.1" - ["github.com/gostaticanalysis/comment".fetch] - type = "git" - url = "https://github.com/gostaticanalysis/comment" - rev = "95f35d9526d5baa1cae08f5c028a441954c44992" - sha256 = "1zlxva7icsc0ldf0r290hb9qinmq5z0vkgjpmkr7cwrmnzamj589" - -["github.com/gostaticanalysis/forcetypeassert"] - sumVersion = "v0.0.0-20200621232751-01d4955beaa5" - ["github.com/gostaticanalysis/forcetypeassert".fetch] - type = "git" - url = "https://github.com/gostaticanalysis/forcetypeassert" - rev = "01d4955beaa5d7ef4d59ff7ea1df2eb49c7ea604" - sha256 = "00sigmsxp5mhlymxgxgny8hzlxni25pq4k9b9ics700hmyidksc9" - -["github.com/gostaticanalysis/nilerr"] - sumVersion = "v0.1.1" - ["github.com/gostaticanalysis/nilerr".fetch] - type = "git" - url = "https://github.com/gostaticanalysis/nilerr" - rev = "7a8ff9e3218a17de54619ed310fca8824b8274c0" - sha256 = "0dz1k7l6jcdamy3i0q976n13lydxx9dpc0sv3zl1j7sm6sysv76x" - -["github.com/gotestyourself/gotestyourself"] - sumVersion = "v2.2.0+incompatible" - ["github.com/gotestyourself/gotestyourself".fetch] - type = "git" - url = "https://github.com/gotestyourself/gotestyourself" - rev = "7c797b5133e5460410dbb22ba779bf35e6975dea" - sha256 = "0yif3gdyckmf8i54jq0xn00kflla5rhib9sarw66ngnbl7bn9kyl" - -["github.com/graph-gophers/graphql-go"] - sumVersion = "v0.0.0-20191115155744-f33e81362277" - ["github.com/graph-gophers/graphql-go".fetch] - type = "git" - url = "https://github.com/graph-gophers/graphql-go" - rev = "f33e813622776db7efec756a9e951bef40932197" - sha256 = "12vbls1kvn3lfgj86y4r258x6papgcj3h4pcg4xbdi5l2cy1idmy" - -["github.com/gregjones/httpcache"] - sumVersion = "v0.0.0-20190611155906-901d90724c79" - ["github.com/gregjones/httpcache".fetch] - type = "git" - url = "https://github.com/gregjones/httpcache" - rev = "901d90724c7919163f472a9812253fb26761123d" - sha256 = "05r0xq51vfb55di11m7iv19341d73f7in33vq1ihcqs1nffdwiq0" - -["github.com/grpc-ecosystem/go-grpc-middleware"] - sumVersion = "v1.3.0" - ["github.com/grpc-ecosystem/go-grpc-middleware".fetch] - type = "git" - url = "https://github.com/grpc-ecosystem/go-grpc-middleware" - rev = "df0f91b29bbbdfc3a686a7a8edbe2b9de2072fdd" - sha256 = "1c9chw2nwj46ayx6cbq1sq21gmfmm3fx1gg579hn7srwywq0xsw0" - -["github.com/grpc-ecosystem/go-grpc-prometheus"] - sumVersion = "v1.2.0" - ["github.com/grpc-ecosystem/go-grpc-prometheus".fetch] - type = "git" - url = "https://github.com/grpc-ecosystem/go-grpc-prometheus" - rev = "c225b8c3b01faf2899099b768856a9e916e5087b" - sha256 = "1lzk54h7np32b3acidg1ggbn8ppbnns0m71gcg9d1qkkdh8zrijl" - -["github.com/grpc-ecosystem/grpc-gateway"] - sumVersion = "v1.16.0" - ["github.com/grpc-ecosystem/grpc-gateway".fetch] - type = "git" - url = "https://github.com/grpc-ecosystem/grpc-gateway" - rev = "094a6fe78b3ca888297d090185cdf30f0e42e157" - sha256 = "0dzq1qbgzz2c6vnh8anx0j3py34sd72p35x6s2wrl001q68am5cc" - -["github.com/gsterjov/go-libsecret"] - sumVersion = "v0.0.0-20161001094733-a6f4afe4910c" - ["github.com/gsterjov/go-libsecret".fetch] - type = "git" - url = "https://github.com/gsterjov/go-libsecret" - rev = "a6f4afe4910cad8688db3e0e9b9ac92ad22d54e1" - sha256 = "09zaiadnll83vs22ib89agg7anj0blw5fywvmckxllsgif6ak6v7" - -["github.com/gtank/merlin"] - sumVersion = "v0.1.1" - ["github.com/gtank/merlin".fetch] - type = "git" - url = "https://github.com/gtank/merlin" - rev = "8318aed1a79f2b4c16cf2d7c2f09d991ec0731d1" - sha256 = "1gcj26hiyb87cjvqrdyr4q201c1rknpbahnsvcnz08agaw6gvwxm" - -["github.com/gtank/ristretto255"] - sumVersion = "v0.1.2" - ["github.com/gtank/ristretto255".fetch] - type = "git" - url = "https://github.com/gtank/ristretto255" - rev = "f33454717c935f5c93978e82b7bd1e848768bb91" - sha256 = "0kn4r28zbxf4vqr2if455wqzak38l27wqrwbzpxygrvczm61a2kw" - -["github.com/hashicorp/consul/api"] - sumVersion = "v1.3.0" - relPath = "api" - ["github.com/hashicorp/consul/api".fetch] - type = "git" - url = "https://github.com/hashicorp/consul" - rev = "e8757838a49feeb682c7e6ad6b78694a78b2096b" - sha256 = "1zv84snvrjm74w3v3rr27linsbxj00m73xd047sb78a4766xs2h0" - -["github.com/hashicorp/consul/sdk"] - sumVersion = "v0.3.0" - relPath = "sdk" - ["github.com/hashicorp/consul/sdk".fetch] - type = "git" - url = "https://github.com/hashicorp/consul" - rev = "441d613e1bd96254c78c46ee7c1b35c161fc7295" - sha256 = "1v06ygzsvc9c02yxpxnnm407kd30fc46b2146k5zrk1v8lq0f91j" - -["github.com/hashicorp/errwrap"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/errwrap".fetch] - type = "git" - url = "https://github.com/hashicorp/errwrap" - rev = "8a6fb523712970c966eefc6b39ed2c5e74880354" - sha256 = "0slfb6w3b61xz04r32bi0a1bygc82rjzhqkxj2si2074wynqnr1c" - -["github.com/hashicorp/go-cleanhttp"] - sumVersion = "v0.5.1" - ["github.com/hashicorp/go-cleanhttp".fetch] - type = "git" - url = "https://github.com/hashicorp/go-cleanhttp" - rev = "eda1e5db218aad1db63ca4642c8906b26bcf2744" - sha256 = "07kx3fhryqmaw3czacmm11qwx63js2q8cfq967vphk7xg9q377kk" - -["github.com/hashicorp/go-immutable-radix"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-immutable-radix".fetch] - type = "git" - url = "https://github.com/hashicorp/go-immutable-radix" - rev = "27df80928bb34bb1b0d6d0e01b9e679902e7a6b5" - sha256 = "1v3nmsnk1s8bzpclrhirz7iq0g5xxbw9q5gvrg9ss6w9crs72qr6" - -["github.com/hashicorp/go-msgpack"] - sumVersion = "v0.5.3" - ["github.com/hashicorp/go-msgpack".fetch] - type = "git" - url = "https://github.com/hashicorp/go-msgpack" - rev = "be3a5be7ee2202386d02936a19ae4fbde1c77800" - sha256 = "00jv0ajqd58pkb2yyhlrjp0rv1mvb1ijx3yqjyikcmzvk9jb4h5m" - -["github.com/hashicorp/go-multierror"] - sumVersion = "v1.1.1" - ["github.com/hashicorp/go-multierror".fetch] - type = "git" - url = "https://github.com/hashicorp/go-multierror" - rev = "9974e9ec57696378079ecc3accd3d6f29401b3a0" - sha256 = "0l4s41skdpifndn9s8y6s9vzgghdzg4z8z0lld9qjr28888wzp00" - -["github.com/hashicorp/go-retryablehttp"] - sumVersion = "v0.5.3" - ["github.com/hashicorp/go-retryablehttp".fetch] - type = "git" - url = "https://github.com/hashicorp/go-retryablehttp" - rev = "357460732517ec3b57c05c51443296bdd6df1874" - sha256 = "008mimxs8a970rdhvgmc5v1wk0gmpcl96mrkwz7wq6ik6fhg1sjl" - -["github.com/hashicorp/go-rootcerts"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-rootcerts".fetch] - type = "git" - url = "https://github.com/hashicorp/go-rootcerts" - rev = "63503fb4e1eca22f9ae0f90b49c5d5538a0e87eb" - sha256 = "0wply5zhj1rcybr932zbwm1i18q5wr7kgkhnz6bw6mk1n9yr8lfj" - -["github.com/hashicorp/go-sockaddr"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-sockaddr".fetch] - type = "git" - url = "https://github.com/hashicorp/go-sockaddr" - rev = "a6a0d2df398f7e0e9f6e43f589c8b51cec0eb6b0" - sha256 = "1yn1xq8ysn0lszmkygz3a9lgpswbz1p91jv7q8l20s4749a22xgi" - -["github.com/hashicorp/go-syslog"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-syslog".fetch] - type = "git" - url = "https://github.com/hashicorp/go-syslog" - rev = "8d1874e3e8d1862b74e0536851e218c4571066a5" - sha256 = "09vccqggz212cg0jir6vv708d6mx0f9w5bxrcdah3h6chgmal6v1" - -["github.com/hashicorp/go-uuid"] - sumVersion = "v1.0.1" - ["github.com/hashicorp/go-uuid".fetch] - type = "git" - url = "https://github.com/hashicorp/go-uuid" - rev = "4f571afc59f3043a65f8fe6bf46d887b10a01d43" - sha256 = "0jvb88m0rq41bwgirsadgw7mnayl27av3gd2vqa3xvxp3fy0hp5k" - -["github.com/hashicorp/go-version"] - sumVersion = "v1.2.0" - ["github.com/hashicorp/go-version".fetch] - type = "git" - url = "https://github.com/hashicorp/go-version" - rev = "ac23dc3fea5d1a983c43f6a0f6e2c13f0195d8bd" - sha256 = "1bwi6y6111xq8ww8kjq0w1cmz15l1h9hb2id6596l8l0ag1vjj1z" - -["github.com/hashicorp/go.net"] - sumVersion = "v0.0.1" - ["github.com/hashicorp/go.net".fetch] - type = "git" - url = "https://github.com/hashicorp/go.net" - rev = "afc3cb3a421746fc66dd55b09a270c750cf536ce" - sha256 = "06arwi95xp5rxyz7rndvhc3wlwg0jn9a5z6djf3yyg5h9zfab9i4" - -["github.com/hashicorp/golang-lru"] - sumVersion = "v0.5.4" - ["github.com/hashicorp/golang-lru".fetch] - type = "git" - url = "https://github.com/hashicorp/golang-lru" - rev = "14eae340515388ca95aa8e7b86f0de668e981f54" - sha256 = "1sdbymypp9vrnzp8ashw0idlxvaq0rb0alwxx3x8g27yjlqi9jfn" - -["github.com/hashicorp/hcl"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/hcl".fetch] - type = "git" - url = "https://github.com/hashicorp/hcl" - rev = "8cb6e5b959231cc1119e43259c4a608f9c51a241" - sha256 = "0q6ml0qqs0yil76mpn4mdx4lp94id8vbv575qm60jzl1ijcl5i66" - -["github.com/hashicorp/logutils"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/logutils".fetch] - type = "git" - url = "https://github.com/hashicorp/logutils" - rev = "a335183dfd075f638afcc820c90591ca3c97eba6" - sha256 = "076wf4sh5p3f953ndqk1cc0x7jhmlqrxak9953rz79rcdw77rjvv" - -["github.com/hashicorp/mdns"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/mdns".fetch] - type = "git" - url = "https://github.com/hashicorp/mdns" - rev = "c31d3f8e4a0a5b46b118c2fd26d9da36467002c9" - sha256 = "0qr4l91hhi97s8a1isnrw3s4q8pjzacqiks870vnwh15v7ig3axd" - -["github.com/hashicorp/memberlist"] - sumVersion = "v0.1.3" - ["github.com/hashicorp/memberlist".fetch] - type = "git" - url = "https://github.com/hashicorp/memberlist" - rev = "a9da52f0668fc4321ec18e9e28dd8141621a808f" - sha256 = "0k1spq7dagvqj3baqw2dhxx1zxrb02y6m3apzr3a7gyirii890g3" - -["github.com/hashicorp/serf"] - sumVersion = "v0.8.2" - ["github.com/hashicorp/serf".fetch] - type = "git" - url = "https://github.com/hashicorp/serf" - rev = "b89a09ebd4b1b570e0076d5097272e67c10ac4f6" - sha256 = "0nrslghvdjhaczr2xp9mn8xgcx1dxl4jgpbk0l61ssmxahpx4iyc" - -["github.com/hdevalence/ed25519consensus"] - sumVersion = "v0.0.0-20210204194344-59a8610d2b87" - ["github.com/hdevalence/ed25519consensus".fetch] - type = "git" - url = "https://github.com/hdevalence/ed25519consensus" - rev = "59a8610d2b877a977e021f711e382bc0e757bf48" - sha256 = "0nw0i884mbya2sdijrhlfnx3ymhdl3jcxk36g6mqk1d91p5b40s2" - -["github.com/holiman/uint256"] - sumVersion = "v1.1.1" - ["github.com/holiman/uint256".fetch] - type = "git" - url = "https://github.com/holiman/uint256" - rev = "99b79c80738390408ef1a47f0e26812ef5506c02" - sha256 = "13v6rnwv1mivqxfmnmj57jg6is81p04gspmykc8slcc1ryvs1qdh" - -["github.com/hpcloud/tail"] - sumVersion = "v1.0.0" - ["github.com/hpcloud/tail".fetch] - type = "git" - url = "https://github.com/hpcloud/tail" - rev = "a30252cb686a21eb2d0b98132633053ec2f7f1e5" - sha256 = "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0" - -["github.com/huandu/xstrings"] - sumVersion = "v1.2.0" - ["github.com/huandu/xstrings".fetch] - type = "git" - url = "https://github.com/huandu/xstrings" - rev = "f02667b379e2fb5916c3cda2cf31e0eb885d79f8" - sha256 = "0bn1kac5vcspxdpx4bygr4gngdbk67pnbqc04b0f7a4ny25n10iq" - -["github.com/hudl/fargo"] - sumVersion = "v1.3.0" - ["github.com/hudl/fargo".fetch] - type = "git" - url = "https://github.com/hudl/fargo" - rev = "fce5cf495554be9ef0766f6f5459e2874fb08c89" - sha256 = "1f7pwj793p51nq03jiz834g0qvg502h9asry6nx4pdc10wzx2948" - -["github.com/huin/goupnp"] - sumVersion = "v1.0.0" - ["github.com/huin/goupnp".fetch] - type = "git" - url = "https://github.com/huin/goupnp" - rev = "656e61dfadd241c7cbdd22a023fa81ecb6860ea8" - sha256 = "12f7rigf1f4xh1an1qis61xkj5s1r8ygk48zahf3n4gaqxmgm7i6" - -["github.com/huin/goutil"] - sumVersion = "v0.0.0-20170803182201-1ca381bf3150" - ["github.com/huin/goutil".fetch] - type = "git" - url = "https://github.com/huin/goutil" - rev = "1ca381bf315033e89af3286fdec0109ce8d86126" - sha256 = "0alhyacsfqic2wxyqn4gvk9wzjl4pkmy8rhvqjk84xsghgx5xf12" - -["github.com/ianlancetaylor/demangle"] - sumVersion = "v0.0.0-20200824232613-28f6c0f3b639" - ["github.com/ianlancetaylor/demangle".fetch] - type = "git" - url = "https://github.com/ianlancetaylor/demangle" - rev = "28f6c0f3b63983aaa99575ca3b693afff7996387" - sha256 = "0rsq3622gd40f1x1l7caidsxrmzg1993ich2higwd94fqbxs1r83" - -["github.com/imdario/mergo"] - sumVersion = "v0.3.8" - ["github.com/imdario/mergo".fetch] - type = "git" - url = "https://github.com/imdario/mergo" - rev = "1afb36080aec31e0d1528973ebe6721b191b0369" - sha256 = "15xwyrnwng11ib0fxi7clwick2r0njwn0gs3va2g5m1ad418ry57" - -["github.com/improbable-eng/grpc-web"] - sumVersion = "v0.14.1" - ["github.com/improbable-eng/grpc-web".fetch] - type = "git" - url = "https://github.com/improbable-eng/grpc-web" - rev = "d1462f8004766ff7f0e99962976a853bc9310301" - sha256 = "153a2kn2hpiwyspy9clwsxkgfw1igww5n74vf55fvz0idzv3r10n" - -["github.com/inconshreveable/mousetrap"] - sumVersion = "v1.0.0" - ["github.com/inconshreveable/mousetrap".fetch] - type = "git" - url = "https://github.com/inconshreveable/mousetrap" - rev = "76626ae9c91c4f2a10f34cad8ce83ea42c93bb75" - sha256 = "1mn0kg48xkd74brf48qf5hzp0bc6g8cf5a77w895rl3qnlpfw152" - -["github.com/influxdata/influxdb"] - sumVersion = "v1.2.3-0.20180221223340-01288bdb0883" - ["github.com/influxdata/influxdb".fetch] - type = "git" - url = "https://github.com/influxdata/influxdb" - rev = "01288bdb0883a01cac999326bd34421b29acaec8" - sha256 = "0lk1c2w1ja2w7wc897xp5c04vyrx5yxq5pb187aqcrqbqvy2fp5p" - -["github.com/influxdata/influxdb1-client"] - sumVersion = "v0.0.0-20191209144304-8bf82d3c094d" - ["github.com/influxdata/influxdb1-client".fetch] - type = "git" - url = "https://github.com/influxdata/influxdb1-client" - rev = "8bf82d3c094dc06be9da8e5bf9d3589b6ea032ae" - sha256 = "0cjli7prxfxayx2grianbla5jr0dq28sazk8phbnh61ac5zaya4s" - -["github.com/ipfs/go-cid"] - sumVersion = "v0.0.7" - ["github.com/ipfs/go-cid".fetch] - type = "git" - url = "https://github.com/ipfs/go-cid" - rev = "8b9ff3906e377143887f406253ba9cb2b17fdc34" - sha256 = "0s01q0scpzxlppk6xfa9yf5lkvzm5vdl9hzww6h04snwksxnhiqy" - -["github.com/jackpal/go-nat-pmp"] - sumVersion = "v1.0.2-0.20160603034137-1fa385a6f458" - ["github.com/jackpal/go-nat-pmp".fetch] - type = "git" - url = "https://github.com/jackpal/go-nat-pmp" - rev = "1fa385a6f45828c83361136b45b1a21a12139493" - sha256 = "1n5h3qrd613cfw95vyqpy9vh3xv0zgbk3j5q8zad25q10wvp6ymn" - -["github.com/jedisct1/go-minisign"] - sumVersion = "v0.0.0-20190909160543-45766022959e" - ["github.com/jedisct1/go-minisign".fetch] - type = "git" - url = "https://github.com/jedisct1/go-minisign" - rev = "45766022959ee057eee31300cdc5f45a8c51ea7f" - sha256 = "02rc52v29wyzias9aw4a7kxsfspf27an3kf0pb9pn4kp0br5dn6v" - -["github.com/jessevdk/go-flags"] - sumVersion = "v1.4.0" - ["github.com/jessevdk/go-flags".fetch] - type = "git" - url = "https://github.com/jessevdk/go-flags" - rev = "c6ca198ec95c841fdb89fc0de7496fed11ab854e" - sha256 = "0algnnigph27spgn655zm4723yfjxjjvlf4k14z9drj3682df25a" - -["github.com/jgautheron/goconst"] - sumVersion = "v1.5.1" - ["github.com/jgautheron/goconst".fetch] - type = "git" - url = "https://github.com/jgautheron/goconst" - rev = "9ea1afc8489c618088835b70f6e9774ef1b08bc0" - sha256 = "10bam480rl1x73afhj928qh32x6218m7h6hkvr78lmxxxk25c43j" - -["github.com/jhump/protoreflect"] - sumVersion = "v1.9.0" - ["github.com/jhump/protoreflect".fetch] - type = "git" - url = "https://github.com/jhump/protoreflect" - rev = "d3608faa83b85e64a0e2880cba9be9c951460727" - sha256 = "0pbyvisfjmhx1g5l6m0dqv730hid1jr8h8746yx3d567ms2hgj8f" - -["github.com/jingyugao/rowserrcheck"] - sumVersion = "v1.1.0" - ["github.com/jingyugao/rowserrcheck".fetch] - type = "git" - url = "https://github.com/jingyugao/rowserrcheck" - rev = "d907ca737bb10a42b7e263244d25f950bb8f1427" - sha256 = "12j046359p7azql6my2qrn45p53pkc77hq9hmmd7fb8ypfk1xh6z" - -["github.com/jirfag/go-printf-func-name"] - sumVersion = "v0.0.0-20200119135958-7558a9eaa5af" - ["github.com/jirfag/go-printf-func-name".fetch] - type = "git" - url = "https://github.com/jirfag/go-printf-func-name" - rev = "7558a9eaa5af8ed9fe5051bbd2791b4665210a0a" - sha256 = "1mj8wq1lpxslmx678izfrf1sg3arw2lq87c26zzcbv5cckni8bgn" - -["github.com/jmespath/go-jmespath"] - sumVersion = "v0.4.0" - ["github.com/jmespath/go-jmespath".fetch] - type = "git" - url = "https://github.com/jmespath/go-jmespath" - rev = "3d4fd11601ddca248480565884e34e393313cd62" - sha256 = "18zyr9nlywmwp3wpzcjxrgq9s9d2mmc6zg6xhsna00m663nkyc3n" - -["github.com/jmespath/go-jmespath/internal/testify"] - sumVersion = "v1.5.1" - relPath = "internal/testify" - ["github.com/jmespath/go-jmespath/internal/testify".fetch] - type = "git" - url = "https://github.com/jmespath/go-jmespath" - rev = "ff168ca20786696708c0f3eb2cc29d7912467599" - sha256 = "0swpmim4gn023pkzxfg8adqilz7mfka8axlsjqsxk0d2r372z75m" - -["github.com/jmhodges/levigo"] - sumVersion = "v1.0.0" - ["github.com/jmhodges/levigo".fetch] - type = "git" - url = "https://github.com/jmhodges/levigo" - rev = "853d788c5c416eaaee5b044570784a96c7a26975" - sha256 = "1lhh413mmclnkwn2lk1crwzargam2cx5w7k6zj8pgasy62c78iy4" - -["github.com/jmoiron/sqlx"] - sumVersion = "v1.2.0" - ["github.com/jmoiron/sqlx".fetch] - type = "git" - url = "https://github.com/jmoiron/sqlx" - rev = "d161d7a76b5661016ad0b085869f77fd410f3e6a" - sha256 = "0pmi2asx157f5738g19fzyxb9g8yyfbpjyh2a2ykr9mafvp60rfd" - -["github.com/jonboulle/clockwork"] - sumVersion = "v0.2.0" - ["github.com/jonboulle/clockwork".fetch] - type = "git" - url = "https://github.com/jonboulle/clockwork" - rev = "56678c9ed265c35c6b7189fbdda2b8a257f6753a" - sha256 = "1pzkvnzanaakdpxhawbmmv6xyislx264fxqzvbf2yqg51sf9f4ll" - -["github.com/jpillora/backoff"] - sumVersion = "v1.0.0" - ["github.com/jpillora/backoff".fetch] - type = "git" - url = "https://github.com/jpillora/backoff" - rev = "d80867952dff4e2fbfb4280ded4ff94d67790457" - sha256 = "0x90fif28fjyl07lmj2cnxzlgdm632v7rkra7kq1mwjdqgmy04dv" - -["github.com/jrick/logrotate"] - sumVersion = "v1.0.0" - ["github.com/jrick/logrotate".fetch] - type = "git" - url = "https://github.com/jrick/logrotate" - rev = "a93b200c26cbae3bb09dd0dc2c7c7fe1468a034a" - sha256 = "0srl6figwjqpi3nbp7br8sxpmvh4v8lzbny1b4lar4ny0156p5nl" - -["github.com/json-iterator/go"] - sumVersion = "v1.1.11" - ["github.com/json-iterator/go".fetch] - type = "git" - url = "https://github.com/json-iterator/go" - rev = "e6b9536d3649bda3e8842bb7e4fab489d79a97ea" - sha256 = "086la0acyi7ryf0yzhsxm7vg9qqlg2333syf4kpr1cmac7v05vmb" - -["github.com/jstemmer/go-junit-report"] - sumVersion = "v0.9.1" - ["github.com/jstemmer/go-junit-report".fetch] - type = "git" - url = "https://github.com/jstemmer/go-junit-report" - rev = "cc1f095d5cc5eca2844f5c5ea7bb37f6b9bf6cac" - sha256 = "1knip80yir1cdsjlb3rzy0a4w3kl4ljpiciaz6hjzwqlfhnv7bkw" - -["github.com/jtolds/gls"] - sumVersion = "v4.20.0+incompatible" - ["github.com/jtolds/gls".fetch] - type = "git" - url = "https://github.com/jtolds/gls" - rev = "b4936e06046bbecbb94cae9c18127ebe510a2cb9" - sha256 = "1k7xd2q2ysv2xsh373qs801v6f359240kx0vrl0ydh7731lngvk6" - -["github.com/juju/ratelimit"] - sumVersion = "v1.0.1" - ["github.com/juju/ratelimit".fetch] - type = "git" - url = "https://github.com/juju/ratelimit" - rev = "59fac5042749a5afb9af70e813da1dd5474f0167" - sha256 = "0ppwvwbh9jdpdk4f9924vw373cpfz5g5ad10c707p22a984vanrz" - -["github.com/julienschmidt/httprouter"] - sumVersion = "v1.3.0" - ["github.com/julienschmidt/httprouter".fetch] - type = "git" - url = "https://github.com/julienschmidt/httprouter" - rev = "4eec211fa4e8df74ed978dc5681612131854144f" - sha256 = "1a6sy0ysqknsjssjh7qg1dqn21xmj9a36c57nrk7srfmab4ffmk1" - -["github.com/julz/importas"] - sumVersion = "v0.0.0-20210419104244-841f0c0fe66d" - ["github.com/julz/importas".fetch] - type = "git" - url = "https://github.com/julz/importas" - rev = "841f0c0fe66d8a78d66676e024272dfd69b57668" - sha256 = "11mccjj422ssxzpdfv6p28yh4wp88fwp5fcw7wbc826bsy1cylkv" - -["github.com/k0kubun/colorstring"] - sumVersion = "v0.0.0-20150214042306-9440f1994b88" - ["github.com/k0kubun/colorstring".fetch] - type = "git" - url = "https://github.com/k0kubun/colorstring" - rev = "9440f1994b88a579ce4e2884bfb4532b79bdca7a" - sha256 = "0isskya7ky4k9znrh85crfc2pxwyfz2s8j1a5cbjb8b8zf2v0qbj" - -["github.com/karalabe/usb"] - sumVersion = "v0.0.0-20190919080040-51dc0efba356" - ["github.com/karalabe/usb".fetch] - type = "git" - url = "https://github.com/karalabe/usb" - rev = "51dc0efba3568b598359930901dc6647e9b2c6a1" - sha256 = "0rshv04w5f60zv3l9f0zqyhimpwrbzm7dir8jbkdpnszicq1dx3m" - -["github.com/keybase/go-keychain"] - sumVersion = "v0.0.0-20190712205309-48d3d31d256d" - ["github.com/keybase/go-keychain".fetch] - type = "git" - url = "https://github.com/keybase/go-keychain" - rev = "48d3d31d256d9922a90b14c518c4b685f321fab2" - sha256 = "1vb4irkbj5s4v8n8dqngmg2w2fbnaz568z731yqryspvvmrki2a1" - -["github.com/kisielk/errcheck"] - sumVersion = "v1.6.0" - ["github.com/kisielk/errcheck".fetch] - type = "git" - url = "https://github.com/kisielk/errcheck" - rev = "4174a4ae53d4a46ffdaddaa9e09eaa4f7a180b08" - sha256 = "17b1khy6lwy39qqkw0xj4s4wf58azd03kj5fa9jdf553rpcxzg1y" - -["github.com/kisielk/gotool"] - sumVersion = "v1.0.0" - ["github.com/kisielk/gotool".fetch] - type = "git" - url = "https://github.com/kisielk/gotool" - rev = "80517062f582ea3340cd4baf70e86d539ae7d84d" - sha256 = "14af2pa0ssyp8bp2mvdw184s5wcysk6akil3wzxmr05wwy951iwn" - -["github.com/kkdai/bstream"] - sumVersion = "v1.0.0" - ["github.com/kkdai/bstream".fetch] - type = "git" - url = "https://github.com/kkdai/bstream" - rev = "a8d27c5aa8eedad6b6683069d64b96ece63696db" - sha256 = "02brc58hhkkfhgb4yxjv3wshq355w533q7d49qrlfkhk265qph7w" - -["github.com/klauspost/compress"] - sumVersion = "v1.11.7" - ["github.com/klauspost/compress".fetch] - type = "git" - url = "https://github.com/klauspost/compress" - rev = "85d8ebff245ce04f07ea619ca9c73be887313eae" - sha256 = "0wybxlkwp5j3lc60dgsc4cvhw80699vd2n7rsr4234vg1lh041nw" - -["github.com/konsorten/go-windows-terminal-sequences"] - sumVersion = "v1.0.3" - ["github.com/konsorten/go-windows-terminal-sequences".fetch] - type = "git" - url = "https://github.com/konsorten/go-windows-terminal-sequences" - rev = "edb144dfd453055e1e49a3d8b410a660b5a87613" - sha256 = "1yrsd4s8vhjnxhwbigirymz89dn6qfjnhn28i33vvvdgf96j6ypl" - -["github.com/kr/fs"] - sumVersion = "v0.1.0" - ["github.com/kr/fs".fetch] - type = "git" - url = "https://github.com/kr/fs" - rev = "1455def202f6e05b95cc7bfc7e8ae67ae5141eba" - sha256 = "11zg176x9hr9q7fsk95r6q0wf214gg4czy02slax4x56n79g6a7q" - -["github.com/kr/logfmt"] - sumVersion = "v0.0.0-20140226030751-b84e30acd515" - ["github.com/kr/logfmt".fetch] - type = "git" - url = "https://github.com/kr/logfmt" - rev = "b84e30acd515aadc4b783ad4ff83aff3299bdfe0" - sha256 = "02ldzxgznrfdzvghfraslhgp19la1fczcbzh7wm2zdc6lmpd1qq9" - -["github.com/kr/pretty"] - sumVersion = "v0.2.1" - ["github.com/kr/pretty".fetch] - type = "git" - url = "https://github.com/kr/pretty" - rev = "ead452280cd055b2ae8a7f0db5eb37a878d902f7" - sha256 = "0vzfz06y9q8gs2nxx0kys0591vzp78k0fvpb8digi5n15h3b25hy" - -["github.com/kr/pty"] - sumVersion = "v1.1.1" - ["github.com/kr/pty".fetch] - type = "git" - url = "https://github.com/kr/pty" - rev = "282ce0e5322c82529687d609ee670fac7c7d917c" - sha256 = "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6" - -["github.com/kr/text"] - sumVersion = "v0.2.0" - ["github.com/kr/text".fetch] - type = "git" - url = "https://github.com/kr/text" - rev = "702c74938df48b97370179f33ce2107bd7ff3b3e" - sha256 = "0hf58ypz6rxsw6nx3i856whir9lvy4sdx946wbw1nfaf2rdmr9vx" - -["github.com/kulti/thelper"] - sumVersion = "v0.4.0" - ["github.com/kulti/thelper".fetch] - type = "git" - url = "https://github.com/kulti/thelper" - rev = "6eac34022d483a318ef675f812d1d4d3f58df459" - sha256 = "15183z1hzk0vz341972phbzwgpxyn6ch488n3vvaw0iv1bwdan6a" - -["github.com/kunwardeep/paralleltest"] - sumVersion = "v1.0.2" - ["github.com/kunwardeep/paralleltest".fetch] - type = "git" - url = "https://github.com/kunwardeep/paralleltest" - rev = "34f993534440ee1f87656885e81c318831bd8376" - sha256 = "123r434lvbra6vn7j0kaicx4wqnp0frv6ycdfqsnr53n1vnxnk2v" - -["github.com/kylelemons/godebug"] - sumVersion = "v1.1.0" - ["github.com/kylelemons/godebug".fetch] - type = "git" - url = "https://github.com/kylelemons/godebug" - rev = "9ff306d4fbead574800b66369df5b6144732d58e" - sha256 = "0dkk3friykg8p6wgqryx6745ahhb9z1j740k7px9dac6v5xjp78c" - -["github.com/kyoh86/exportloopref"] - sumVersion = "v0.1.8" - ["github.com/kyoh86/exportloopref".fetch] - type = "git" - url = "https://github.com/kyoh86/exportloopref" - rev = "722a3a9d673aef9e42d83ecf99cb72ab7e9e6c67" - sha256 = "00zvdqiwdm8qvn8p6pjygl7vs920171j46qn0cs5fbmmrq42dk89" - -["github.com/ldez/gomoddirectives"] - sumVersion = "v0.2.2" - ["github.com/ldez/gomoddirectives".fetch] - type = "git" - url = "https://github.com/ldez/gomoddirectives" - rev = "bedb342ad1cd24348e76c9a2d10eaaf1c12bf31b" - sha256 = "1ja0mja83fb6ksmxabwrshgn1q0blv8ndywsx0bmhb9li1b0z37f" - -["github.com/ldez/tagliatelle"] - sumVersion = "v0.2.0" - ["github.com/ldez/tagliatelle".fetch] - type = "git" - url = "https://github.com/ldez/tagliatelle" - rev = "1d089379c111a49f55711b38665ed4bec819a521" - sha256 = "0snf2ckjzrhy3izrdr3y4g80ni5x3fb0ny6s012pz35w0cdq7kzz" - -["github.com/leodido/go-urn"] - sumVersion = "v1.2.0" - ["github.com/leodido/go-urn".fetch] - type = "git" - url = "https://github.com/leodido/go-urn" - rev = "a0f5013415294bb94553821ace21a1a74c0298cc" - sha256 = "1d4g1vkhc1180l1n7q48vl84b27c7cziywml78cyijbcdz2f8vim" - -["github.com/letsencrypt/pkcs11key/v4"] - sumVersion = "v4.0.0" - relPath = "v4" - ["github.com/letsencrypt/pkcs11key/v4".fetch] - type = "git" - url = "https://github.com/letsencrypt/pkcs11key" - rev = "c9e453037c675bb913cde3388b43a9828b2b6a1d" - sha256 = "1ynmw2zhsr1m880clc2hgmc53cx6b69wdcjddw9pz0sysddnpb81" - -["github.com/lib/pq"] - sumVersion = "v1.10.2" - ["github.com/lib/pq".fetch] - type = "git" - url = "https://github.com/lib/pq" - rev = "2da6713d67f03911a05b1b6559adc85927fe076e" - sha256 = "0drlr4dx3dzlafx5m9ys9q69hx518pdl279s736k0m3lr9iq9c7r" - -["github.com/libp2p/go-buffer-pool"] - sumVersion = "v0.0.2" - ["github.com/libp2p/go-buffer-pool".fetch] - type = "git" - url = "https://github.com/libp2p/go-buffer-pool" - rev = "c4a5988a1e475884367015e1a2d0bd5fa4c491f4" - sha256 = "01iwby4xq9znlfhcxxvqv03smllsv42j1w3vpqg9n307s3i0pj3m" - -["github.com/lightstep/lightstep-tracer-common/golang/gogo"] - sumVersion = "v0.0.0-20190605223551-bc2310a04743" - relPath = "golang/gogo" - ["github.com/lightstep/lightstep-tracer-common/golang/gogo".fetch] - type = "git" - url = "https://github.com/lightstep/lightstep-tracer-common" - rev = "bc2310a0474352fa2616bdc0a27457b146b136b4" - sha256 = "0j7qycrva0ngf38br0jy9blzjb98ksdfi87b0sb2gnpmsp6sz4l8" - -["github.com/lightstep/lightstep-tracer-go"] - sumVersion = "v0.18.1" - ["github.com/lightstep/lightstep-tracer-go".fetch] - type = "git" - url = "https://github.com/lightstep/lightstep-tracer-go" - rev = "95891af43e111d60f0ae6adaa39c2abe8caad401" - sha256 = "0jfnsv7y11d247xysc61wp8xmgn33fdl17v6g0lxxnklbw41k91y" - -["github.com/logrusorgru/aurora"] - sumVersion = "v0.0.0-20181002194514-a7b3b318ed4e" - ["github.com/logrusorgru/aurora".fetch] - type = "git" - url = "https://github.com/logrusorgru/aurora" - rev = "a7b3b318ed4e1ae5b80602b08627267303c68572" - sha256 = "1dldc270z42zm2d377ks7sa5059janjcjhv3inza3rjvapknsrcb" - -["github.com/lucasjones/reggen"] - sumVersion = "v0.0.0-20180717132126-cdb49ff09d77" - ["github.com/lucasjones/reggen".fetch] - type = "git" - url = "https://github.com/lucasjones/reggen" - rev = "cdb49ff09d77331d3fdd51e862b4023d2257954c" - sha256 = "1cby9n647v4gh11mpz1dfscks8n0cw0rj8d2hjh4q9mky4m7jzl1" - -["github.com/magiconair/properties"] - sumVersion = "v1.8.5" - ["github.com/magiconair/properties".fetch] - type = "git" - url = "https://github.com/magiconair/properties" - rev = "291b8266af1000c77a12ae6d4dde1145a028012f" - sha256 = "0v4agnkhc30fblbmhs0gq2bikhdnnmqmpp4phrnza68m04j5hxbn" - -["github.com/maratori/testpackage"] - sumVersion = "v1.0.1" - ["github.com/maratori/testpackage".fetch] - type = "git" - url = "https://github.com/maratori/testpackage" - rev = "68d85e4e2681860b5e626e5ca29961b340778f1a" - sha256 = "0d40jskxr4s4nxj6qgwynirqxxi194zj63a73z3k528hh8g42zwk" - -["github.com/matoous/godox"] - sumVersion = "v0.0.0-20210227103229-6504466cf951" - ["github.com/matoous/godox".fetch] - type = "git" - url = "https://github.com/matoous/godox" - rev = "6504466cf951eb5e1ae25306e5a31fe3cad56539" - sha256 = "1nyzx5il6q7cw1d4dyw93xsqdwdwhbwvl82cgr0lwaxlxwwg7pfj" - -["github.com/mattn/go-colorable"] - sumVersion = "v0.1.8" - ["github.com/mattn/go-colorable".fetch] - type = "git" - url = "https://github.com/mattn/go-colorable" - rev = "2e1b0c1546e0173c0907cf05c67b8ba29ed8b4d1" - sha256 = "0q34zqwbnls72md8q8mhj368s7p3i4xspvs3rk8fs76s0pn7dr2l" - -["github.com/mattn/go-ieproxy"] - sumVersion = "v0.0.0-20190702010315-6dee0af9227d" - ["github.com/mattn/go-ieproxy".fetch] - type = "git" - url = "https://github.com/mattn/go-ieproxy" - rev = "6dee0af9227d0863f1508ce7937af3396d6605c1" - sha256 = "0kxxxi68wch3rf3iqggiv72fbf0g7s6g8wy7r34ir040j8b7k0ri" - -["github.com/mattn/go-isatty"] - sumVersion = "v0.0.14" - ["github.com/mattn/go-isatty".fetch] - type = "git" - url = "https://github.com/mattn/go-isatty" - rev = "504425e14f742f1f517c4586048b49b37f829c8e" - sha256 = "015zc3j60vb85d7f2al15la24wn45piazxlagqhzrbgfdyqci60z" - -["github.com/mattn/go-runewidth"] - sumVersion = "v0.0.9" - ["github.com/mattn/go-runewidth".fetch] - type = "git" - url = "https://github.com/mattn/go-runewidth" - rev = "14e809f6d78fcf9f48ff9b70981472b64c05f754" - sha256 = "1mvlxcdwr0vwp8b2wqs6y7hk72y28sqh03dz5x0xkg48d4y9cplj" - -["github.com/mattn/go-sqlite3"] - sumVersion = "v1.9.0" - ["github.com/mattn/go-sqlite3".fetch] - type = "git" - url = "https://github.com/mattn/go-sqlite3" - rev = "25ecb14adfc7543176f7d85291ec7dba82c6f7e4" - sha256 = "14vw8bwyaz9lrd1rqhfri5cwpimiimhp75pkbqxxsjsr5jz89s7m" - -["github.com/mattn/goveralls"] - sumVersion = "v0.0.2" - ["github.com/mattn/goveralls".fetch] - type = "git" - url = "https://github.com/mattn/goveralls" - rev = "b71a1e4855f87991aff01c2c833a75a07059c61c" - sha256 = "13ffdikvc594g1mryhi94m87skr7irwkjnpxp8ad2kprn6syfslp" - -["github.com/matttproud/golang_protobuf_extensions"] - sumVersion = "v1.0.1" - ["github.com/matttproud/golang_protobuf_extensions".fetch] - type = "git" - url = "https://github.com/matttproud/golang_protobuf_extensions" - rev = "c12348ce28de40eed0136aa2b644d0ee0650e56c" - sha256 = "1d0c1isd2lk9pnfq2nk0aih356j30k3h1gi2w0ixsivi5csl7jya" - -["github.com/mbilski/exhaustivestruct"] - sumVersion = "v1.2.0" - ["github.com/mbilski/exhaustivestruct".fetch] - type = "git" - url = "https://github.com/mbilski/exhaustivestruct" - rev = "7b602e2b6ff7d66cfd3769edf24486d9d20a1549" - sha256 = "19vzskjmmr3ndm0zgcr00swzmq2dr8v9hb1xdlfhpkb0a7vavdgm" - -["github.com/mgechev/dots"] - sumVersion = "v0.0.0-20190921121421-c36f7dcfbb81" - ["github.com/mgechev/dots".fetch] - type = "git" - url = "https://github.com/mgechev/dots" - rev = "c36f7dcfbb81d2220bbddabf29c757c861c3e4d8" - sha256 = "1i22mz4fca4w9fvzay3p95hpz60gb96pns5rq359g037mvk0w1jx" - -["github.com/mgechev/revive"] - sumVersion = "v1.1.1" - ["github.com/mgechev/revive".fetch] - type = "git" - url = "https://github.com/mgechev/revive" - rev = "18cdb55850ae667e1136cf5c2749fab98a911c5b" - sha256 = "126wwcgbnpq7as72ywlzmkvdy5ylxzm1wv6r7nskllrj61h315mf" - -["github.com/miekg/dns"] - sumVersion = "v1.1.35" - ["github.com/miekg/dns".fetch] - type = "git" - url = "https://github.com/miekg/dns" - rev = "3b41a3134255be803026472cbb980adec17193c2" - sha256 = "111rkqjwgkpbnyas68hw8nxx3ik8afay1a0p1k0lz6spf9ijh3qm" - -["github.com/miekg/pkcs11"] - sumVersion = "v1.0.3" - ["github.com/miekg/pkcs11".fetch] - type = "git" - url = "https://github.com/miekg/pkcs11" - rev = "210dc1e16747c5ba98a03bcbcf728c38086ea357" - sha256 = "0rmmgssb6y28x54si5h63gwbdsjjxf5n9xvm3zqdfsf9l10gx2m6" - -["github.com/mimoo/StrobeGo"] - sumVersion = "v0.0.0-20181016162300-f8f6d4d2b643" - ["github.com/mimoo/StrobeGo".fetch] - type = "git" - url = "https://github.com/mimoo/StrobeGo" - rev = "f8f6d4d2b6435f46148e8a6dc2248939893f3ece" - sha256 = "1lgxh3p6aqfc049wn3kz1mj9prm4mqpa9m01p27ph8iw5ry5c7la" - -["github.com/minio/blake2b-simd"] - sumVersion = "v0.0.0-20160723061019-3f5f724cb5b1" - ["github.com/minio/blake2b-simd".fetch] - type = "git" - url = "https://github.com/minio/blake2b-simd" - rev = "3f5f724cb5b182a5c278d6d3d55b40e7f8c2efb4" - sha256 = "0b6jbnj62c0gmmfd4zdmh8xbg01p80f13yygir9xprqkzk6fikmd" - -["github.com/minio/highwayhash"] - sumVersion = "v1.0.1" - ["github.com/minio/highwayhash".fetch] - type = "git" - url = "https://github.com/minio/highwayhash" - rev = "86a2a969d04373bf05ca722517d30fb1c9a3e4f9" - sha256 = "0kj2hs82sphag0h25xvprvf2fz3zlinmlif89sk9jp8h518aiahf" - -["github.com/minio/sha256-simd"] - sumVersion = "v0.1.1-0.20190913151208-6de447530771" - ["github.com/minio/sha256-simd".fetch] - type = "git" - url = "https://github.com/minio/sha256-simd" - rev = "6de4475307716de15b286880ff321c9547086fdd" - sha256 = "1j0iqsckm97g4l79vd4mc7apbmkdar23jpzqpnpdhwpfd834j8lp" - -["github.com/mitchellh/cli"] - sumVersion = "v1.0.0" - ["github.com/mitchellh/cli".fetch] - type = "git" - url = "https://github.com/mitchellh/cli" - rev = "3d22a244be8aa6fb16ac24af0e195c08b7d973aa" - sha256 = "1i9kmr7rcf10d2hji8h4247hmc0nbairv7a0q51393aw2h1bnwg2" - -["github.com/mitchellh/copystructure"] - sumVersion = "v1.0.0" - ["github.com/mitchellh/copystructure".fetch] - type = "git" - url = "https://github.com/mitchellh/copystructure" - rev = "9a1b6f44e8da0e0e374624fb0a825a231b00c537" - sha256 = "05njg92w1088v4yl0js0zdrpfq6k37i9j14mxkr3p90p5yd9rrrr" - -["github.com/mitchellh/go-homedir"] - sumVersion = "v1.1.0" - ["github.com/mitchellh/go-homedir".fetch] - type = "git" - url = "https://github.com/mitchellh/go-homedir" - rev = "af06845cf3004701891bf4fdb884bfe4920b3727" - sha256 = "0ydzkipf28hwj2bfxqmwlww47khyk6d152xax4bnyh60f4lq3nx1" - -["github.com/mitchellh/go-ps"] - sumVersion = "v1.0.0" - ["github.com/mitchellh/go-ps".fetch] - type = "git" - url = "https://github.com/mitchellh/go-ps" - rev = "147ff83818ae939913b2e20b91ae3cd6c391771c" - sha256 = "0ipcbz66x7q8xczi7cyfq06y7n7v0syvkp730vn9jrn7s8f5ag0z" - -["github.com/mitchellh/go-testing-interface"] - sumVersion = "v1.0.0" - ["github.com/mitchellh/go-testing-interface".fetch] - type = "git" - url = "https://github.com/mitchellh/go-testing-interface" - rev = "6d0b8010fcc857872e42fc6c931227569016843c" - sha256 = "1dl2js8di858bawg7dadlf1qjpkl2g3apziihjyf5imri3znyfpw" - -["github.com/mitchellh/gox"] - sumVersion = "v0.4.0" - ["github.com/mitchellh/gox".fetch] - type = "git" - url = "https://github.com/mitchellh/gox" - rev = "c9740af9c6574448fd48eb30a71f964014c7a837" - sha256 = "1q4fdkw904mrmh1q5z8pfd3r0gcn5dm776kldqawddy93iiwnp8r" - -["github.com/mitchellh/iochan"] - sumVersion = "v1.0.0" - ["github.com/mitchellh/iochan".fetch] - type = "git" - url = "https://github.com/mitchellh/iochan" - rev = "b6e3aadd28864e14dae41ff5c7261455b1242d24" - sha256 = "058n9bbf536f2nw3pbs7pysrg9cqvgkb28z2zf5wjyrzrknyk53g" - -["github.com/mitchellh/mapstructure"] - sumVersion = "v1.4.2" - ["github.com/mitchellh/mapstructure".fetch] - type = "git" - url = "https://github.com/mitchellh/mapstructure" - rev = "5ac1f6aa4011ece0c4df24a4fe8020a9cc21e393" - sha256 = "0akjnwsng42vak978pny84d946fbaj2kgp7fzvx30zpc6fzrmli7" - -["github.com/mitchellh/reflectwalk"] - sumVersion = "v1.0.1" - ["github.com/mitchellh/reflectwalk".fetch] - type = "git" - url = "https://github.com/mitchellh/reflectwalk" - rev = "3e2c75dfad4fbf904b58782a80fd595c760ad185" - sha256 = "0pa6a3nhzwv5s5yqcmsmsfhdp5ggxsg2wa86f3akawxrhrkjarnx" - -["github.com/moby/sys/mountinfo"] - sumVersion = "v0.4.1" - relPath = "mountinfo" - ["github.com/moby/sys/mountinfo".fetch] - type = "git" - url = "https://github.com/moby/sys" - rev = "b0f1fd7235275d01bd35cc4421e884e522395f45" - sha256 = "1svicfa0gyq8fcbsl475gpr0y5rgv0389d9yq6hzwz2acrdxyxm2" - -["github.com/modern-go/concurrent"] - sumVersion = "v0.0.0-20180306012644-bacd9c7ef1dd" - ["github.com/modern-go/concurrent".fetch] - type = "git" - url = "https://github.com/modern-go/concurrent" - rev = "bacd9c7ef1dd9b15be4a9909b8ac7a4e313eec94" - sha256 = "0s0fxccsyb8icjmiym5k7prcqx36hvgdwl588y0491gi18k5i4zs" - -["github.com/modern-go/reflect2"] - sumVersion = "v1.0.1" - ["github.com/modern-go/reflect2".fetch] - type = "git" - url = "https://github.com/modern-go/reflect2" - rev = "94122c33edd36123c84d5368cfb2b69df93a0ec8" - sha256 = "06a3sablw53n1dqqbr2f53jyksbxdmmk8axaas4yvnhyfi55k4lf" - -["github.com/mohae/deepcopy"] - sumVersion = "v0.0.0-20170929034955-c48cc78d4826" - ["github.com/mohae/deepcopy".fetch] - type = "git" - url = "https://github.com/mohae/deepcopy" - rev = "c48cc78d482608239f6c4c92a4abd87eb8761c90" - sha256 = "0jdhsz0hsbn0k45rmvm39knbvs024j24ay2q65k5ih8ql8m2c0sd" - -["github.com/moricho/tparallel"] - sumVersion = "v0.2.1" - ["github.com/moricho/tparallel".fetch] - type = "git" - url = "https://github.com/moricho/tparallel" - rev = "88fabab33096f28b37d2734e30c9202ac923a59a" - sha256 = "15ab3vkby29dd004agzdg2rn2hkn13mi793yb0wbadcrn9ra5zbj" - -["github.com/mozilla/scribe"] - sumVersion = "v0.0.0-20180711195314-fb71baf557c1" - ["github.com/mozilla/scribe".fetch] - type = "git" - url = "https://github.com/mozilla/scribe" - rev = "fb71baf557c1eb06ddd77ee832c927e488dc34a2" - sha256 = "1fyl5x7zam2ffjnfl4bmmxfqm8kp0ymy1c2x27fc9sx02qdf5d1b" - -["github.com/mozilla/tls-observatory"] - sumVersion = "v0.0.0-20210609171429-7bc42856d2e5" - ["github.com/mozilla/tls-observatory".fetch] - type = "git" - url = "https://github.com/mozilla/tls-observatory" - rev = "7bc42856d2e5594614b56c2f55baf42bb9751b3d" - sha256 = "1dgyyakx9x9f8gllzavndn8vi2vnqzpfsx1hk3yxmhx1433lwb6x" - -["github.com/mr-tron/base58"] - sumVersion = "v1.1.3" - ["github.com/mr-tron/base58".fetch] - type = "git" - url = "https://github.com/mr-tron/base58" - rev = "b1dd383fd2c02d7933db93f157e339f1899b5163" - sha256 = "0vnnfvx3g61xs9r0rgh5bwmdql5fx440z5qba74qligk2gi23lsm" - -["github.com/mrunalp/fileutils"] - sumVersion = "v0.5.0" - ["github.com/mrunalp/fileutils".fetch] - type = "git" - url = "https://github.com/mrunalp/fileutils" - rev = "d7fdd64cc1cabe10bc154ee7d2318b07b7f296ef" - sha256 = "1zrs959gf4zgi6ijwkdn4dcqk0svfblpaikkqy63q30rqz4swm0x" - -["github.com/mtibben/percent"] - sumVersion = "v0.2.1" - ["github.com/mtibben/percent".fetch] - type = "git" - url = "https://github.com/mtibben/percent" - rev = "07b18b68c1413ce9f8137a8cbd4509fac9e15f0c" - sha256 = "1iqivw8pigj259rj5yifibbvic70f9hb7k24a4sa967s4fj6agb6" - -["github.com/multiformats/go-base32"] - sumVersion = "v0.0.3" - ["github.com/multiformats/go-base32".fetch] - type = "git" - url = "https://github.com/multiformats/go-base32" - rev = "a9c2755c3d1672dbe6a7e4a5d182169fa30b6a8e" - sha256 = "1f4pjnqw4687p8l7vr1qaq6g6i9pcr80fc4pk2kpgrcwzpd1lprg" - -["github.com/multiformats/go-base36"] - sumVersion = "v0.1.0" - ["github.com/multiformats/go-base36".fetch] - type = "git" - url = "https://github.com/multiformats/go-base36" - rev = "dc4afa6ad3b0720f4a1b282776db2a59ca9c8be7" - sha256 = "1lqlcy0q9w1rsdsirbnqydvc7yyhssj6skdjk6qaax7bh6dijsj0" - -["github.com/multiformats/go-multibase"] - sumVersion = "v0.0.3" - ["github.com/multiformats/go-multibase".fetch] - type = "git" - url = "https://github.com/multiformats/go-multibase" - rev = "e2260b5ff35e4a37375ca184662ae0b9b0a661be" - sha256 = "0n096k9y8gwq6ikwscksmnsrikfzf5hr4cfhxwy3gaya1wd0sf56" - -["github.com/multiformats/go-multihash"] - sumVersion = "v0.0.13" - ["github.com/multiformats/go-multihash".fetch] - type = "git" - url = "https://github.com/multiformats/go-multihash" - rev = "6b39927dce4869bc1726861b65ada415ee1f7fc7" - sha256 = "146w59msqqdxkyxxqiw0yxcvkyb4b18nisi681k08590kg4x3wqw" - -["github.com/multiformats/go-varint"] - sumVersion = "v0.0.5" - ["github.com/multiformats/go-varint".fetch] - type = "git" - url = "https://github.com/multiformats/go-varint" - rev = "99465703c4a9cf53a0235e52608cb055e9d39c29" - sha256 = "0a32mslpidx0bb525vnnk7flyp88a5rraia270dizd0d2g9zm2h0" - -["github.com/mwitkow/go-conntrack"] - sumVersion = "v0.0.0-20190716064945-2f068394615f" - ["github.com/mwitkow/go-conntrack".fetch] - type = "git" - url = "https://github.com/mwitkow/go-conntrack" - rev = "2f068394615f73e460c2f3d2c158b0ad9321cadb" - sha256 = "0ymjmy12ks7smgwmrwsa5kf07d9w5kpk1dn650azlzr61b561aw7" - -["github.com/mwitkow/go-proto-validators"] - sumVersion = "v0.2.0" - ["github.com/mwitkow/go-proto-validators".fetch] - type = "git" - url = "https://github.com/mwitkow/go-proto-validators" - rev = "d70d97bb65387105677cb21cee7318e4feb7b4b0" - sha256 = "159mf14bs9a07hmiz8j9198bi3za8k4mzc5qc9slj8dhs9a5nczg" - -["github.com/mwitkow/grpc-proxy"] - sumVersion = "v0.0.0-20181017164139-0f1106ef9c76" - ["github.com/mwitkow/grpc-proxy".fetch] - type = "git" - url = "https://github.com/mwitkow/grpc-proxy" - rev = "0f1106ef9c766333b9acb4b81e705da4bade7215" - sha256 = "087kid1xiaxnhdhljcm1587cgiiwr0iznk931znkrz3f4gdjyqa2" - -["github.com/nakabonne/nestif"] - sumVersion = "v0.3.0" - ["github.com/nakabonne/nestif".fetch] - type = "git" - url = "https://github.com/nakabonne/nestif" - rev = "88e8196e5faa6b1eeac0c2e39b4b1c615ba9330a" - sha256 = "01lf3bpif68m97sgr8a06apnf7vzbwi657cg4dcqa0dzh9v1yy6l" - -["github.com/naoina/go-stringutil"] - sumVersion = "v0.1.0" - ["github.com/naoina/go-stringutil".fetch] - type = "git" - url = "https://github.com/naoina/go-stringutil" - rev = "6b638e95a32d0c1131db0e7fe83775cbea4a0d0b" - sha256 = "00831p1wn3rimybk1z8l30787kn1akv5jax5wx743nn76qcmkmc6" - -["github.com/naoina/toml"] - sumVersion = "v0.1.2-0.20170918210437-9fafd6967416" - ["github.com/naoina/toml".fetch] - type = "git" - url = "https://github.com/naoina/toml" - rev = "9fafd69674167c06933b1787ae235618431ce87f" - sha256 = "0mpvdnidgab48k7dfq1vaiz1wny8n29y7zxpipnp1zm8ibxpism0" - -["github.com/nats-io/jwt"] - sumVersion = "v0.3.2" - ["github.com/nats-io/jwt".fetch] - type = "git" - url = "https://github.com/nats-io/jwt" - rev = "0c3fc7aed8bb2534e7bfdf0968a75890402d48cd" - sha256 = "0n44ghpz6hnbd2i074ikrj72rd2vnxpg1g3nhv1ly1kr0832khx6" - -["github.com/nats-io/nats-server/v2"] - sumVersion = "v2.1.2" - ["github.com/nats-io/nats-server/v2".fetch] - type = "git" - url = "https://github.com/nats-io/nats-server" - rev = "679bedafd96f85ddfa56a4d5736517c18842047a" - sha256 = "1jxi6d0zbhisxprlynvqw3dl1lz4wwxiy9gnpaqrwx1yi3kvvg62" - -["github.com/nats-io/nats.go"] - sumVersion = "v1.9.1" - ["github.com/nats-io/nats.go".fetch] - type = "git" - url = "https://github.com/nats-io/nats.go" - rev = "6063d679d23ae5b3edb4030d5e89a6e30ea53bc6" - sha256 = "0mmbwri2k2c8q1w0fr0g5s81709lfr6wyarvaf3gibc7cig10pij" - -["github.com/nats-io/nkeys"] - sumVersion = "v0.1.3" - ["github.com/nats-io/nkeys".fetch] - type = "git" - url = "https://github.com/nats-io/nkeys" - rev = "f1930e19b436412202ab130a733187cc6f40ba7e" - sha256 = "1fip0bja471mavvp67bninpd24jviwpnh7w99kchyiy27lbxy4hp" - -["github.com/nats-io/nuid"] - sumVersion = "v1.0.1" - ["github.com/nats-io/nuid".fetch] - type = "git" - url = "https://github.com/nats-io/nuid" - rev = "4b96681fa6d28dd0ab5fe79bac63b3a493d9ee94" - sha256 = "11zbhg4kds5idsya04bwz4plj0mmiigypzppzih731ppbk2ms1zg" - -["github.com/nbutton23/zxcvbn-go"] - sumVersion = "v0.0.0-20210217022336-fa2cb2858354" - ["github.com/nbutton23/zxcvbn-go".fetch] - type = "git" - url = "https://github.com/nbutton23/zxcvbn-go" - rev = "fa2cb2858354d539804173893953569804ed418e" - sha256 = "026f5y0lprk61f3k4ld7l0hdqa8wpmvg202kj1gbfw8vjmv2kmwa" - -["github.com/neilotoole/errgroup"] - sumVersion = "v0.1.5" - ["github.com/neilotoole/errgroup".fetch] - type = "git" - url = "https://github.com/neilotoole/errgroup" - rev = "1b5ee5ba6837fe62f5c9f2275033db8ec84de004" - sha256 = "0jk0ws9cxdiicfd4w7mpvfgsx4fabgpjhyl8jwbqnzpq2w0pgk6p" - -["github.com/niemeyer/pretty"] - sumVersion = "v0.0.0-20200227124842-a10e7caefd8e" - ["github.com/niemeyer/pretty".fetch] - type = "git" - url = "https://github.com/niemeyer/pretty" - rev = "a10e7caefd8e0d600cea437f5c3613aeb1553d56" - sha256 = "1jmazh4xzaa3v6g46hz60q2z7nmqs9l9cxdzmmscn3kbcs2znq4v" - -["github.com/nishanths/exhaustive"] - sumVersion = "v0.2.3" - ["github.com/nishanths/exhaustive".fetch] - type = "git" - url = "https://github.com/nishanths/exhaustive" - rev = "8e9e266c28907bb734455b4eba68a1322c19c11e" - sha256 = "0xqx37p8jkk19jqxarjyscwm27f263i0kjcjy8xv78i39rnz3jal" - -["github.com/nishanths/predeclared"] - sumVersion = "v0.2.1" - ["github.com/nishanths/predeclared".fetch] - type = "git" - url = "https://github.com/nishanths/predeclared" - rev = "9533edc13e0840594ced336563bc73ff1a0bdf50" - sha256 = "0rr8h4wnz3g6hlkrwkaz3c4q744j0snf3b2aa6gjm57gkka2zhnc" - -["github.com/nxadm/tail"] - sumVersion = "v1.4.8" - ["github.com/nxadm/tail".fetch] - type = "git" - url = "https://github.com/nxadm/tail" - rev = "abad231d8d07ef91e09cd4c4c457cac35ed3bbb9" - sha256 = "1j2gi485fhwdpmyzn42wk62103fclwbfywg42p275z1qv2bsz1rc" - -["github.com/oklog/oklog"] - sumVersion = "v0.3.2" - ["github.com/oklog/oklog".fetch] - type = "git" - url = "https://github.com/oklog/oklog" - rev = "e3ad1c411c27b4bc18c5facb9331820d141a5a54" - sha256 = "1xnjxhgi0zm51skl533la50h133a245i57wqa3h7fr2lv2jqpzny" - -["github.com/oklog/run"] - sumVersion = "v1.0.0" - ["github.com/oklog/run".fetch] - type = "git" - url = "https://github.com/oklog/run" - rev = "4dadeb3030eda0273a12382bb2348ffc7c9d1a39" - sha256 = "1pbjza4claaj95fpqvvfrysvs10y7dm0pl6qr5lzh6qy1vnhmcgw" - -["github.com/oklog/ulid"] - sumVersion = "v1.3.1" - ["github.com/oklog/ulid".fetch] - type = "git" - url = "https://github.com/oklog/ulid" - rev = "02a8604050d8466dd915307496174adb9be4593a" - sha256 = "0hybwyid820n80axrk863k2py93hbqlq6hxhf84ppmz0qd0ys0gq" - -["github.com/olekukonko/tablewriter"] - sumVersion = "v0.0.5" - ["github.com/olekukonko/tablewriter".fetch] - type = "git" - url = "https://github.com/olekukonko/tablewriter" - rev = "c7d2a8a09b076b70918308a3cd95464b2ae3b5d8" - sha256 = "0zhnrih2px6jm8nxzkz8s7va3lj03bzwxim8wjba9zh7i78bp67z" - -["github.com/onsi/ginkgo"] - sumVersion = "v1.16.4" - ["github.com/onsi/ginkgo".fetch] - type = "git" - url = "https://github.com/onsi/ginkgo" - rev = "d125cd027fee341b3b3d65858a4121cf4931fead" - sha256 = "0rpzh0vg2k33szcq17rdwjvj3q6djp7vqfvasck40gsibadimnd7" - -["github.com/onsi/gomega"] - sumVersion = "v1.13.0" - ["github.com/onsi/gomega".fetch] - type = "git" - url = "https://github.com/onsi/gomega" - rev = "dbc6ecdcc526d81592dab902de6cbaf7be9a8a13" - sha256 = "1x49qblj010z4xvfj7c4jh9q9awrkvbwnfrglvbh30gglmmsss8g" - -["github.com/op/go-logging"] - sumVersion = "v0.0.0-20160315200505-970db520ece7" - ["github.com/op/go-logging".fetch] - type = "git" - url = "https://github.com/op/go-logging" - rev = "970db520ece77730c7e4724c61121037378659d9" - sha256 = "1cpna2x5l071z1vrnk7zipdkka8dzwsjyx7m79xk0lr08rip0kcj" - -["github.com/opencontainers/go-digest"] - sumVersion = "v1.0.0" - ["github.com/opencontainers/go-digest".fetch] - type = "git" - url = "https://github.com/opencontainers/go-digest" - rev = "ea51bea511f75cfa3ef6098cc253c5c3609b037a" - sha256 = "0i5acjajvr6hi9zb7gxwifd8w28y884cv7cx36adj8lngj647xbi" - -["github.com/opencontainers/image-spec"] - sumVersion = "v1.0.1" - ["github.com/opencontainers/image-spec".fetch] - type = "git" - url = "https://github.com/opencontainers/image-spec" - rev = "d60099175f88c47cd379c4738d158884749ed235" - sha256 = "03dvbj3dln8c55v9gp79mgmz2yi2ws3r08iyz2fk41y3i22iaw1q" - -["github.com/opencontainers/runc"] - sumVersion = "v1.0.2" - ["github.com/opencontainers/runc".fetch] - type = "git" - url = "https://github.com/opencontainers/runc" - rev = "52b36a2dd837e8462de8e01458bf02cf9eea47dd" - sha256 = "1bpckghjah0rczciw1a1ab8z718lb2d3k4mjm4zb45lpm3njmrcp" - -["github.com/opencontainers/runtime-spec"] - sumVersion = "v1.0.3-0.20210326190908-1c3f411f0417" - ["github.com/opencontainers/runtime-spec".fetch] - type = "git" - url = "https://github.com/opencontainers/runtime-spec" - rev = "1c3f411f041711bbeecf35ff7e93461ea6789220" - sha256 = "1azk8z41ga8af35c966f06vrq9y9hwz6mkm59r3py5qaamzim3qq" - -["github.com/opencontainers/selinux"] - sumVersion = "v1.8.2" - ["github.com/opencontainers/selinux".fetch] - type = "git" - url = "https://github.com/opencontainers/selinux" - rev = "76bc82e11d854d3e40c08889d13c98abcea72ea2" - sha256 = "1dl1h8nzpyhsfki1dcjphm5h4n52qwilahyl6qlnwgzcc76pwizq" - -["github.com/opentracing-contrib/go-observer"] - sumVersion = "v0.0.0-20170622124052-a52f23424492" - ["github.com/opentracing-contrib/go-observer".fetch] - type = "git" - url = "https://github.com/opentracing-contrib/go-observer" - rev = "a52f2342449246d5bcc273e65cbdcfa5f7d6c63c" - sha256 = "1q7z458m2vh3bzml4x9vm2paffqn1jcgiydbisl0zg2asfniq7k3" - -["github.com/opentracing/basictracer-go"] - sumVersion = "v1.0.0" - ["github.com/opentracing/basictracer-go".fetch] - type = "git" - url = "https://github.com/opentracing/basictracer-go" - rev = "1b32af207119a14b1b231d451df3ed04a72efebf" - sha256 = "0hs969asib4yqj5k755zr0byz2iqvjbs6z1szcnr50q6fihigca0" - -["github.com/opentracing/opentracing-go"] - sumVersion = "v1.1.0" - ["github.com/opentracing/opentracing-go".fetch] - type = "git" - url = "https://github.com/opentracing/opentracing-go" - rev = "659c90643e714681897ec2521c60567dd21da733" - sha256 = "0aj9cbm21zsg1i5l25hz8gn0yf99yxyxcp1gqh3yd5g4knj2cgzf" - -["github.com/openzipkin-contrib/zipkin-go-opentracing"] - sumVersion = "v0.4.5" - ["github.com/openzipkin-contrib/zipkin-go-opentracing".fetch] - type = "git" - url = "https://github.com/openzipkin-contrib/zipkin-go-opentracing" - rev = "223664cff43dfd9f54659ff15dc4bd6e023d0c14" - sha256 = "0mdvx50mw17c926rhhkjg8z54v8h0jvnqahdlpij2kbxi3ncgr7q" - -["github.com/openzipkin/zipkin-go"] - sumVersion = "v0.2.2" - ["github.com/openzipkin/zipkin-go".fetch] - type = "git" - url = "https://github.com/openzipkin/zipkin-go" - rev = "c29478e51bfb2e9c93e0e9f5e015e5993a490399" - sha256 = "18c884anq0pkahmjwyhrdg247wyq33ccxp5k7fcq5gzh8g6dj92s" - -["github.com/ory/dockertest"] - sumVersion = "v3.3.5+incompatible" - ["github.com/ory/dockertest".fetch] - type = "git" - url = "https://github.com/ory/dockertest" - rev = "2b0896a948c60f3207381d9fc259d0fc13227c30" - sha256 = "0fgj60l82sl6chd7i4s7lxqjr9hxkzmkaxnc8h6qbvn42246sy68" - -["github.com/otiai10/copy"] - sumVersion = "v1.6.0" - ["github.com/otiai10/copy".fetch] - type = "git" - url = "https://github.com/otiai10/copy" - rev = "edeb9f37d4d0c28725014fcab6635120197932a1" - sha256 = "1l84qx9n464nh1izgr1kx5xb1ab878b2x803fck0w9gy1bwch25h" - -["github.com/otiai10/curr"] - sumVersion = "v1.0.0" - ["github.com/otiai10/curr".fetch] - type = "git" - url = "https://github.com/otiai10/curr" - rev = "88e2f2cffa0b5f13e90ee963a321bd1b2f715561" - sha256 = "0fpw20adq2wff7l4c87zaavj9jra4d64a8bbjixiiv3bbarim987" - -["github.com/otiai10/mint"] - sumVersion = "v1.3.2" - ["github.com/otiai10/mint".fetch] - type = "git" - url = "https://github.com/otiai10/mint" - rev = "3588d691480a831b1e78b776d3bccd9d5ce6461c" - sha256 = "0448nkhmp1ny64g2d7m5x8inz118zj03j6q0b97q3dszzs7hhan4" - -["github.com/pact-foundation/pact-go"] - sumVersion = "v1.0.4" - ["github.com/pact-foundation/pact-go".fetch] - type = "git" - url = "https://github.com/pact-foundation/pact-go" - rev = "3ce08c8af46b7bc33a06efc9b8807c08806c8af2" - sha256 = "08mnyf1yb6zjqfzs1pdh44drv390lfilhh4vi4asnjk52gknqfn0" - -["github.com/pascaldekloe/goe"] - sumVersion = "v0.1.0" - ["github.com/pascaldekloe/goe".fetch] - type = "git" - url = "https://github.com/pascaldekloe/goe" - rev = "57f6aae5913c64c9bcae5dbdffd33365b5a7f138" - sha256 = "1dqd3mfb4z2vmv6pg6fhgvfc53vhndk24wcl9lj1rz02n6m279fq" - -["github.com/pborman/uuid"] - sumVersion = "v1.2.0" - ["github.com/pborman/uuid".fetch] - type = "git" - url = "https://github.com/pborman/uuid" - rev = "8b1b92947f46224e3b97bb1a3a5b0382be00d31e" - sha256 = "0f146yjqwx2mr110kl8scjhqd08hys7vr5z0d0a3lskb6yy22gfg" - -["github.com/pelletier/go-toml"] - sumVersion = "v1.9.4" - ["github.com/pelletier/go-toml".fetch] - type = "git" - url = "https://github.com/pelletier/go-toml" - rev = "b8ba995eaaba4be30c8a8090bdfb4aa61af52054" - sha256 = "0f2d9m19dadl18i2baf57xygvn9vprm6wb8chvpx8kipx94nchyl" - -["github.com/performancecopilot/speed"] - sumVersion = "v3.0.0+incompatible" - ["github.com/performancecopilot/speed".fetch] - type = "git" - url = "https://github.com/performancecopilot/speed" - rev = "839069a3ed70162d3bcefb9891c8ca852d877c1c" - sha256 = "1r0l6i80xkx9dcysa7ajvs5ypqkw2k0422k0hbz28fizaq9d8y0m" - -["github.com/peterbourgon/diskv"] - sumVersion = "v2.0.1+incompatible" - ["github.com/peterbourgon/diskv".fetch] - type = "git" - url = "https://github.com/peterbourgon/diskv" - rev = "5f041e8faa004a95c88a202771f4cc3e991971e6" - sha256 = "1mxpa5aad08x30qcbffzk80g9540wvbca4blc1r2qyzl65b8929b" - -["github.com/peterh/liner"] - sumVersion = "v1.1.1-0.20190123174540-a2c9a5303de7" - ["github.com/peterh/liner".fetch] - type = "git" - url = "https://github.com/peterh/liner" - rev = "a2c9a5303de792c7581a3b80a8f10258319bb20e" - sha256 = "1cxpr92adcyv4bimswkfg3cmpmk71zq9gpyckhc64j2p4r4mb8zr" - -["github.com/petermattis/goid"] - sumVersion = "v0.0.0-20180202154549-b0b1615b78e5" - ["github.com/petermattis/goid".fetch] - type = "git" - url = "https://github.com/petermattis/goid" - rev = "b0b1615b78e5ee59739545bb38426383b2cda4c9" - sha256 = "0ghfxn045r0bbn2vszw897lxzmhnm4k59aypjvpxl0pbzsw9ab2c" - -["github.com/phayes/checkstyle"] - sumVersion = "v0.0.0-20170904204023-bfd46e6a821d" - ["github.com/phayes/checkstyle".fetch] - type = "git" - url = "https://github.com/phayes/checkstyle" - rev = "bfd46e6a821d07762e664fb4fdde8bb90bb3668c" - sha256 = "0bdfvgvm8gnrxdndnbvwcfjijxyn4c9xcmd11w5bbaz05c40dshx" - -["github.com/pierrec/lz4"] - sumVersion = "v2.0.5+incompatible" - ["github.com/pierrec/lz4".fetch] - type = "git" - url = "https://github.com/pierrec/lz4" - rev = "ea731401f5c95a8ba30f15787e5e0fb77c60c66b" - sha256 = "0y5rh7z01zycd59nnjpkqq0ydyjmcg9j1xw15q1i600l9j9g617p" - -["github.com/pkg/errors"] - sumVersion = "v0.9.1" - ["github.com/pkg/errors".fetch] - type = "git" - url = "https://github.com/pkg/errors" - rev = "614d223910a179a466c1767a985424175c39b465" - sha256 = "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq" - -["github.com/pkg/profile"] - sumVersion = "v1.2.1" - ["github.com/pkg/profile".fetch] - type = "git" - url = "https://github.com/pkg/profile" - rev = "5b67d428864e92711fcbd2f8629456121a56d91f" - sha256 = "0blqmvgqvdbqmh3fp9pfdxc9w1qfshrr0zy9whj0sn372bw64qnr" - -["github.com/pkg/sftp"] - sumVersion = "v1.10.1" - ["github.com/pkg/sftp".fetch] - type = "git" - url = "https://github.com/pkg/sftp" - rev = "3edd153f213d8d4191a0ee4577c61cca19436632" - sha256 = "0iw6lijdljwh5xw5hsy0b578cr52h6vvm7hbnzlrvciwhh4sfhhp" - -["github.com/pmezard/go-difflib"] - sumVersion = "v1.0.0" - ["github.com/pmezard/go-difflib".fetch] - type = "git" - url = "https://github.com/pmezard/go-difflib" - rev = "792786c7400a136282c1664665ae0a8db921c6c2" - sha256 = "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw" - -["github.com/polyfloyd/go-errorlint"] - sumVersion = "v0.0.0-20210722154253-910bb7978349" - ["github.com/polyfloyd/go-errorlint".fetch] - type = "git" - url = "https://github.com/polyfloyd/go-errorlint" - rev = "910bb7978349f0c57ba0b49eee6426a312eb9dfd" - sha256 = "18w78ah0fz9vy136ks42ys2pmibjmanw98sx7s6hhhrx1sdij983" - -["github.com/posener/complete"] - sumVersion = "v1.1.1" - ["github.com/posener/complete".fetch] - type = "git" - url = "https://github.com/posener/complete" - rev = "98eb9847f27ba2008d380a32c98be474dea55bdf" - sha256 = "1nbdiybjizbaxbf5q0xwbq0cjqw4bl6jggvsjzrpif0w86fcjda2" - -["github.com/prometheus/client_golang"] - sumVersion = "v1.11.0" - ["github.com/prometheus/client_golang".fetch] - type = "git" - url = "https://github.com/prometheus/client_golang" - rev = "8184d76b3b0bd3b01ed903690431ccb6826bf3e0" - sha256 = "1xdspykw6wgp0bv7s1r7gklvhr5jfmi59n8bg8zhy3vi0yi902y3" - -["github.com/prometheus/client_model"] - sumVersion = "v0.2.0" - ["github.com/prometheus/client_model".fetch] - type = "git" - url = "https://github.com/prometheus/client_model" - rev = "7bc5445566f0fe75b15de23e6b93886e982d7bf9" - sha256 = "0jffnz94d6ff39fr96b5w8i8yk26pwnrfggzz8jhi8k0yihg2c9d" - -["github.com/prometheus/common"] - sumVersion = "v0.29.0" - ["github.com/prometheus/common".fetch] - type = "git" - url = "https://github.com/prometheus/common" - rev = "8281fb2779ab057c7d90fec6b24ce8eb29edcc13" - sha256 = "09zavm3005skf5mgkr2xndpcga2m3zpm4iq2r7kwyqc5q0cpq02m" - -["github.com/prometheus/procfs"] - sumVersion = "v0.6.0" - ["github.com/prometheus/procfs".fetch] - type = "git" - url = "https://github.com/prometheus/procfs" - rev = "e971af51d579a49db14657a96eebec39cefb4755" - sha256 = "0czzw37dq0sfq7rivxmxxw5hy287grqnng6q6hfz6mkqmhqgm1m6" - -["github.com/prometheus/tsdb"] - sumVersion = "v0.7.1" - ["github.com/prometheus/tsdb".fetch] - type = "git" - url = "https://github.com/prometheus/tsdb" - rev = "c20450564cc42983bf923c13f3fda42de709ac13" - sha256 = "1c1da8i5byvhh4fp3vqjfb65aaksjskn3ggb8wg9hcfzjrhgpz04" - -["github.com/pseudomuto/protoc-gen-doc"] - sumVersion = "v1.3.2" - ["github.com/pseudomuto/protoc-gen-doc".fetch] - type = "git" - url = "https://github.com/pseudomuto/protoc-gen-doc" - rev = "56ed70214364d41f78e82050ac2a4e620aa5cbd1" - sha256 = "0hwl0fh9c3g0z784cr4d22v03nlkxvwg36cisgvjzpif4i8kwf4b" - -["github.com/pseudomuto/protokit"] - sumVersion = "v0.2.0" - ["github.com/pseudomuto/protokit".fetch] - type = "git" - url = "https://github.com/pseudomuto/protokit" - rev = "c63c13958542d70af1d1ef7826d30b25cd5bf6e9" - sha256 = "14l1y989136xmbp5vigr41r594hh9h1nfx8bl5gkjrk585akrmmr" - -["github.com/quasilyte/go-consistent"] - sumVersion = "v0.0.0-20190521200055-c6f3937de18c" - ["github.com/quasilyte/go-consistent".fetch] - type = "git" - url = "https://github.com/quasilyte/go-consistent" - rev = "c6f3937de18cf505dce778903e72b1a57948edcc" - sha256 = "1x0bg7nvqdcgl30z59sil2ildj2kng44v19y2c98kqgiy804q4f0" - -["github.com/quasilyte/go-ruleguard"] - sumVersion = "v0.3.4" - ["github.com/quasilyte/go-ruleguard".fetch] - type = "git" - url = "https://github.com/quasilyte/go-ruleguard" - rev = "211cfa6c95567fa7944a0dcd9c2db87c30fb6eba" - sha256 = "0fd5w7l2wmspgi6x8wcdhc6fg5j5y87pg5lxwgbv8b4k0gid6min" - -["github.com/quasilyte/go-ruleguard/dsl"] - sumVersion = "v0.3.2" - relPath = "dsl" - ["github.com/quasilyte/go-ruleguard/dsl".fetch] - type = "git" - url = "https://github.com/quasilyte/go-ruleguard" - rev = "bce90d218dc80709015c147aa60a9f8f8987725e" - sha256 = "1m5b2x82z1z3jxgxcvx233nwg44vq7fsjz0v0arx08hch9b98qkc" - -["github.com/quasilyte/go-ruleguard/rules"] - sumVersion = "v0.0.0-20210203162857-b223e0831f88" - relPath = "rules" - ["github.com/quasilyte/go-ruleguard/rules".fetch] - type = "git" - url = "https://github.com/quasilyte/go-ruleguard" - rev = "b223e0831f880a3f9dd9fc284d811c0d642895e2" - sha256 = "0im4ci6kwfa3smdy3dwm3w86jv3rlz6ck0yv02v4882a0gxigjm5" - -["github.com/quasilyte/regex/syntax"] - sumVersion = "v0.0.0-20200407221936-30656e2c4a95" - relPath = "syntax" - ["github.com/quasilyte/regex/syntax".fetch] - type = "git" - url = "https://github.com/quasilyte/regex" - rev = "30656e2c4a955b410d658e04b5b9cd44d03d735b" - sha256 = "02kqr5zqxmqys6ncrz9zk5hcmxqxabnfy8kf0nhd306z55bv02b1" - -["github.com/rakyll/statik"] - sumVersion = "v0.1.7" - ["github.com/rakyll/statik".fetch] - type = "git" - url = "https://github.com/rakyll/statik" - rev = "46bd79c4540341fe472fe71dd2ce0ccd4e635450" - sha256 = "0y0kbzma55vmyqhyrw9ssgvxn6nw7d0zg72a7nz8vp1zly4hs6va" - -["github.com/rcrowley/go-metrics"] - sumVersion = "v0.0.0-20200313005456-10cdbea86bc0" - ["github.com/rcrowley/go-metrics".fetch] - type = "git" - url = "https://github.com/rcrowley/go-metrics" - rev = "10cdbea86bc0b922507ce91d43f4f78a5bea2e8f" - sha256 = "157rfn5kf1mdn65gay38zpv6zam3sfa5a3zkx9wxk77y7w3kam19" - -["github.com/regen-network/cosmos-proto"] - sumVersion = "v0.3.1" - ["github.com/regen-network/cosmos-proto".fetch] - type = "git" - url = "https://github.com/regen-network/cosmos-proto" - rev = "f793b6157c2cfb8c1c797100e1918b2d1eb40615" - sha256 = "05sk9jhk4qz5m4vkj0wr0swhvq9niz7v7bvpxh063vz0y6mmpj05" - -["github.com/rjeczalik/notify"] - sumVersion = "v0.9.1" - ["github.com/rjeczalik/notify".fetch] - type = "git" - url = "https://github.com/rjeczalik/notify" - rev = "0f065fa99b48b842c3fd3e2c8b194c6f2b69f6b8" - sha256 = "15zzgyry10hvg0z2d3fm1yncbscln9mmvgsm29w67yncf6n8vcb0" - -["github.com/rogpeppe/fastuuid"] - sumVersion = "v1.2.0" - ["github.com/rogpeppe/fastuuid".fetch] - type = "git" - url = "https://github.com/rogpeppe/fastuuid" - rev = "10c3923834d38e951ae8f627bfec2dc632c5b6cb" - sha256 = "028acdg63zkxpjz3l639nlhki2l0canr2v5jglrmwa1wpjqcfff8" - -["github.com/rogpeppe/go-internal"] - sumVersion = "v1.6.2" - ["github.com/rogpeppe/go-internal".fetch] - type = "git" - url = "https://github.com/rogpeppe/go-internal" - rev = "1115b6af0369aff6bd0766818c61a9a75678c6cc" - sha256 = "14snr12d3dpcsdfbcz8iz55if4mc2ia5x9rqzfbj32f90c9lw4bp" - -["github.com/rs/cors"] - sumVersion = "v1.7.0" - ["github.com/rs/cors".fetch] - type = "git" - url = "https://github.com/rs/cors" - rev = "db0fe48135e83b5812a5a31be0eea66984b1b521" - sha256 = "1abz6jxp7bhcwwsgcz9ajkijspkc46s0chrhqspy4czskmmazygi" - -["github.com/rs/xhandler"] - sumVersion = "v0.0.0-20160618193221-ed27b6fd6521" - ["github.com/rs/xhandler".fetch] - type = "git" - url = "https://github.com/rs/xhandler" - rev = "ed27b6fd65218132ee50cd95f38474a3d8a2cd12" - sha256 = "1fpp4rh812nvr5m0s0d5dsa1ypr4333mcijng0dp5bcgg2bqkwdz" - -["github.com/rs/xid"] - sumVersion = "v1.2.1" - ["github.com/rs/xid".fetch] - type = "git" - url = "https://github.com/rs/xid" - rev = "15d26544def341f036c5f8dca987a4cbe575032c" - sha256 = "1vgw1dikqw273awcci6pzifs7shkl5ah4l88j1zjbnpgbiwzlx9j" - -["github.com/rs/zerolog"] - sumVersion = "v1.23.0" - ["github.com/rs/zerolog".fetch] - type = "git" - url = "https://github.com/rs/zerolog" - rev = "117cb53bc66413d9a810ebed32383e53416347e3" - sha256 = "1cz9g25b47hxhz2nd15pcxarzwnwknm4f2nm4dspr1l99jxll733" - -["github.com/russross/blackfriday"] - sumVersion = "v1.5.2" - ["github.com/russross/blackfriday".fetch] - type = "git" - url = "https://github.com/russross/blackfriday" - rev = "05f3235734ad95d0016f6a23902f06461fcf567a" - sha256 = "0jzbfzcywqcrnym4gxlz6nphmm1grg6wsl4f0r9x384rn83wkj7c" - -["github.com/russross/blackfriday/v2"] - sumVersion = "v2.0.1" - ["github.com/russross/blackfriday/v2".fetch] - type = "git" - url = "https://github.com/russross/blackfriday" - rev = "d3b5b032dc8e8927d31a5071b56e14c89f045135" - sha256 = "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j" - -["github.com/ryancurrah/gomodguard"] - sumVersion = "v1.2.3" - ["github.com/ryancurrah/gomodguard".fetch] - type = "git" - url = "https://github.com/ryancurrah/gomodguard" - rev = "0decae5e66a21da9ca569652a9cf3d211f52017e" - sha256 = "0ppiliiki059gn47qgcj31mkya41pl5cxz6527s2iyy3gfan13an" - -["github.com/ryanrolds/sqlclosecheck"] - sumVersion = "v0.3.0" - ["github.com/ryanrolds/sqlclosecheck".fetch] - type = "git" - url = "https://github.com/ryanrolds/sqlclosecheck" - rev = "ca0d595701689bbb6decd11453747fb3455f89ad" - sha256 = "0s0zvsdkqlsv2j0hq40kd41qvbqk3y2s2r3smzhy63a9qx4qppvx" - -["github.com/ryanuber/columnize"] - sumVersion = "v0.0.0-20160712163229-9b3edd62028f" - ["github.com/ryanuber/columnize".fetch] - type = "git" - url = "https://github.com/ryanuber/columnize" - rev = "9b3edd62028f107d7cabb19353292afd29311a4e" - sha256 = "1ya1idkbb0a9fjlhkcnh5a9yvpwzwfmbyg7d56lpplwr9rqi1da4" - -["github.com/samuel/go-zookeeper"] - sumVersion = "v0.0.0-20190923202752-2cc03de413da" - ["github.com/samuel/go-zookeeper".fetch] - type = "git" - url = "https://github.com/samuel/go-zookeeper" - rev = "2cc03de413da42869e2db7ce7965d3e978d917eb" - sha256 = "11z2r73q6qk9xy3mzkhdxd7cbfqsdr0105d5m03q4r47fki46hgx" - -["github.com/sanposhiho/wastedassign/v2"] - sumVersion = "v2.0.6" - ["github.com/sanposhiho/wastedassign/v2".fetch] - type = "git" - url = "https://github.com/sanposhiho/wastedassign" - rev = "7f7461e8f4b79a495a2fb3bbdb5f5bcbaf8a8e67" - sha256 = "0c514b6xr67lgmsxbps83y63559167gh405sj62h8y723hchf2d1" - -["github.com/sasha-s/go-deadlock"] - sumVersion = "v0.2.1-0.20190427202633-1595213edefa" - ["github.com/sasha-s/go-deadlock".fetch] - type = "git" - url = "https://github.com/sasha-s/go-deadlock" - rev = "1595213edefa28ca5047b00340c63557f9c051d0" - sha256 = "06h5g16zlfnw9wvgaqp7jfav3n3pvli6asfcx1hv44sl601wnwk0" - -["github.com/sean-/seed"] - sumVersion = "v0.0.0-20170313163322-e2103e2c3529" - ["github.com/sean-/seed".fetch] - type = "git" - url = "https://github.com/sean-/seed" - rev = "e2103e2c35297fb7e17febb81e49b312087a2372" - sha256 = "0glir8jxi1w7aga2jwdb63pp1h8q4whknili7xixsqzwyy716125" - -["github.com/seccomp/libseccomp-golang"] - sumVersion = "v0.9.1" - ["github.com/seccomp/libseccomp-golang".fetch] - type = "git" - url = "https://github.com/seccomp/libseccomp-golang" - rev = "689e3c1541a84461afc49c1c87352a6cedf72e9c" - sha256 = "022c8prvxz0shrifams7lq4xidvkcqg9xi87wjjcpmbikqi72cna" - -["github.com/securego/gosec/v2"] - sumVersion = "v2.8.1" - ["github.com/securego/gosec/v2".fetch] - type = "git" - url = "https://github.com/securego/gosec" - rev = "3f800cc8cabf715660987c263e7b8be3e532532c" - sha256 = "0l2161apsyhqyqgcmkmmqxh8hf04cjlq1811lkzl2wd48x406l02" - -["github.com/segmentio/fasthash"] - sumVersion = "v1.0.3" - ["github.com/segmentio/fasthash".fetch] - type = "git" - url = "https://github.com/segmentio/fasthash" - rev = "9dc1b83dc0d8bf7d26ea69d6c6d7a11ebf6fbb89" - sha256 = "0wrlviycj5hz4w576f156h2cpnnmkflfx5jfj298qzn5lymnqv86" - -["github.com/sergi/go-diff"] - sumVersion = "v1.1.0" - ["github.com/sergi/go-diff".fetch] - type = "git" - url = "https://github.com/sergi/go-diff" - rev = "58c5cb1602ee9676b5d3590d782bedde80706fcc" - sha256 = "0ir8ali2vx0j7pipmlfd6k8c973akyy2nmbjrf008fm800zcp7z2" - -["github.com/shazow/go-diff"] - sumVersion = "v0.0.0-20160112020656-b6b7b6733b8c" - ["github.com/shazow/go-diff".fetch] - type = "git" - url = "https://github.com/shazow/go-diff" - rev = "b6b7b6733b8c9589e2452df9345ddaf75badd0db" - sha256 = "095q9cc94j8p7c2z1007gjac35xnhixlfdi46c4kacvspz833bgr" - -["github.com/shirou/gopsutil"] - sumVersion = "v2.20.5+incompatible" - ["github.com/shirou/gopsutil".fetch] - type = "git" - url = "https://github.com/shirou/gopsutil" - rev = "663af789c0858f2ede24f71a8dfba3643100dec9" - sha256 = "1q115pn37ymfqis43sm82iivbab4zk4gmjng21yb54vjk8pzsjvr" - -["github.com/shirou/gopsutil/v3"] - sumVersion = "v3.21.7" - relPath = "v3" - ["github.com/shirou/gopsutil/v3".fetch] - type = "git" - url = "https://github.com/shirou/gopsutil" - rev = "ae17bb5860aced0c9e072fcaf0b903d8f540262a" - sha256 = "1r93wwxl9c2qsal6yjg8qh9k192iz9sw1pxvklcffmvws2nnhrnj" - -["github.com/shurcooL/go"] - sumVersion = "v0.0.0-20180423040247-9e1955d9fb6e" - ["github.com/shurcooL/go".fetch] - type = "git" - url = "https://github.com/shurcooL/go" - rev = "9e1955d9fb6e1ee2345ba1f5e71669263e719e27" - sha256 = "1lad9bvs75jsn61cfza19739c2c057k0bqxg2b4xz3z3l4w1mkqj" - -["github.com/shurcooL/go-goon"] - sumVersion = "v0.0.0-20170922171312-37c2f522c041" - ["github.com/shurcooL/go-goon".fetch] - type = "git" - url = "https://github.com/shurcooL/go-goon" - rev = "37c2f522c041b74919a9e5e3a6c5c47eb34730a5" - sha256 = "17ac6j6msdcxbmfhq6pxhw5z339b87bd6ciln9909drjv2szyxqv" - -["github.com/shurcooL/sanitized_anchor_name"] - sumVersion = "v1.0.0" - ["github.com/shurcooL/sanitized_anchor_name".fetch] - type = "git" - url = "https://github.com/shurcooL/sanitized_anchor_name" - rev = "7bfe4c7ecddb3666a94b053b422cdd8f5aaa3615" - sha256 = "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f" - -["github.com/sirupsen/logrus"] - sumVersion = "v1.8.1" - ["github.com/sirupsen/logrus".fetch] - type = "git" - url = "https://github.com/sirupsen/logrus" - rev = "bdc0db8ead3853c56b7cd1ac2ba4e11b47d7da6b" - sha256 = "0rvqzic2zz7fpxyizmqxwmhv1m52ii9bgxnqa6km8wsa0l08wh42" - -["github.com/smartystreets/assertions"] - sumVersion = "v0.0.0-20180927180507-b2de0cb4f26d" - ["github.com/smartystreets/assertions".fetch] - type = "git" - url = "https://github.com/smartystreets/assertions" - rev = "b2de0cb4f26d0705483a2f495d89896d0b808573" - sha256 = "1i7ldgavgl35c7gk25p7bvdr282ckng090zr4ch9mk1705akx09y" - -["github.com/smartystreets/goconvey"] - sumVersion = "v1.6.4" - ["github.com/smartystreets/goconvey".fetch] - type = "git" - url = "https://github.com/smartystreets/goconvey" - rev = "505e419363375c0dc132d3ac02632a4ee32199ca" - sha256 = "07zjxwszayal88z1j2bwnqrsa32vg8l4nivks5yfr9j8xfsw7n6m" - -["github.com/snikch/goodman"] - sumVersion = "v0.0.0-20171125024755-10e37e294daa" - ["github.com/snikch/goodman".fetch] - type = "git" - url = "https://github.com/snikch/goodman" - rev = "10e37e294daa3c9a90abded60ff9924bafab3888" - sha256 = "0n6m17lmlfsynd7ja3s3w7pgpi7zdyakqbg4ahzdq9918fwddqmp" - -["github.com/soheilhy/cmux"] - sumVersion = "v0.1.4" - ["github.com/soheilhy/cmux".fetch] - type = "git" - url = "https://github.com/soheilhy/cmux" - rev = "e09e9389d85d8492d313d73d1469c029e710623f" - sha256 = "1f736g68d9vwlyfb6g0fxkr0r875369xafk30cz8kaq5niaqwv0h" - -["github.com/sonatard/noctx"] - sumVersion = "v0.0.1" - ["github.com/sonatard/noctx".fetch] - type = "git" - url = "https://github.com/sonatard/noctx" - rev = "45f5b560ec1a4f160e71e1cc204eba81cef8fa86" - sha256 = "0wpi120594ranybjlk9wndgv0yqqq5bbhnvwi10dnal8crvb54bs" - -["github.com/sony/gobreaker"] - sumVersion = "v0.4.1" - ["github.com/sony/gobreaker".fetch] - type = "git" - url = "https://github.com/sony/gobreaker" - rev = "21dbfda1fc5e89b91bd0c835a91c31fe4d461e88" - sha256 = "0iarblm3w2d0p997jsw9bkznfj0wa8d586nh37ii5gnqy41va700" - -["github.com/sourcegraph/go-diff"] - sumVersion = "v0.6.1" - ["github.com/sourcegraph/go-diff".fetch] - type = "git" - url = "https://github.com/sourcegraph/go-diff" - rev = "842d2c12cc52ab06942669cffeb4e2b43d8c0c71" - sha256 = "0ic58wi4cac61kh5sasn9iylcbzbqawlzva964rk0y0nifsyjcmc" - -["github.com/spaolacci/murmur3"] - sumVersion = "v1.1.0" - ["github.com/spaolacci/murmur3".fetch] - type = "git" - url = "https://github.com/spaolacci/murmur3" - rev = "f09979ecbc725b9e6d41a297405f65e7e8804acc" - sha256 = "1lv3zyz3jy2d76bhvvs8svygx66606iygdvwy5cwc0p5z8yghq25" - -["github.com/spf13/afero"] - sumVersion = "v1.6.0" - ["github.com/spf13/afero".fetch] - type = "git" - url = "https://github.com/spf13/afero" - rev = "bc94f58beda5dbff6f74599fcb1f1717c5b1c111" - sha256 = "0yi8p0yxiidpcg4cagxg2iyqcaapsng89rak4qyxmgails2fqg37" - -["github.com/spf13/cast"] - sumVersion = "v1.4.1" - ["github.com/spf13/cast".fetch] - type = "git" - url = "https://github.com/spf13/cast" - rev = "88075729b052bca4b8b6c31bf198db2fe6c9da93" - sha256 = "06qsfpvcbgkf2pvcvf9l46fj55kmbhp2yz382fkj5gll2bykx9ld" - -["github.com/spf13/cobra"] - sumVersion = "v1.2.1" - ["github.com/spf13/cobra".fetch] - type = "git" - url = "https://github.com/spf13/cobra" - rev = "de187e874d1ca382320088f8f6d76333408e5c2e" - sha256 = "091kz3xnlsgpqb90fc5nhjr4yfr8b8sjnyl0zd4wm1fgzkpw09jh" - -["github.com/spf13/jwalterweatherman"] - sumVersion = "v1.1.0" - ["github.com/spf13/jwalterweatherman".fetch] - type = "git" - url = "https://github.com/spf13/jwalterweatherman" - rev = "94f6ae3ed3bceceafa716478c5fbf8d29ca601a1" - sha256 = "1ywmkwci5zyd88ijym6f30fj5c0k2yayxarkmnazf5ybljv50q7b" - -["github.com/spf13/pflag"] - sumVersion = "v1.0.5" - ["github.com/spf13/pflag".fetch] - type = "git" - url = "https://github.com/spf13/pflag" - rev = "2e9d26c8c37aae03e3f9d4e90b7116f5accb7cab" - sha256 = "0gpmacngd0gpslnbkzi263f5ishigzgh6pbdv9hp092rnjl4nd31" - -["github.com/spf13/viper"] - sumVersion = "v1.8.1" - ["github.com/spf13/viper".fetch] - type = "git" - url = "https://github.com/spf13/viper" - rev = "bd038658992ae06c6ccf069a5b4bebe432602d0f" - sha256 = "0jcsvd9l05pv10rma6zicp44q2mlvxj0qlhnf4zcg2pymb5i0hq6" - -["github.com/ssgreg/nlreturn/v2"] - sumVersion = "v2.1.0" - ["github.com/ssgreg/nlreturn/v2".fetch] - type = "git" - url = "https://github.com/ssgreg/nlreturn" - rev = "5ded3fbf2a4dc9b3694ffd3a765e47c4f2a28de6" - sha256 = "117jz3s49lpcq59gg1nsd7p1mqil9a8c9wranxc920qkcb3dlf3l" - -["github.com/status-im/keycard-go"] - sumVersion = "v0.0.0-20190316090335-8537d3370df4" - ["github.com/status-im/keycard-go".fetch] - type = "git" - url = "https://github.com/status-im/keycard-go" - rev = "8537d3370df43a30a3d450c023783d2e43432b89" - sha256 = "15kbh04282vyb59fy9rjr533aa6vlxxh0cpa66x2qw6wb0896za1" - -["github.com/steakknife/bloomfilter"] - sumVersion = "v0.0.0-20180922174646-6819c0d2a570" - ["github.com/steakknife/bloomfilter".fetch] - type = "git" - url = "https://github.com/steakknife/bloomfilter" - rev = "6819c0d2a57025e1700378ee59b7382d71987f14" - sha256 = "1dr4pb172rwi9cxvxl23j4j8q6ybqjfzll5dd14cd398f231nk81" - -["github.com/steakknife/hamming"] - sumVersion = "v0.0.0-20180906055917-c99c65617cd3" - ["github.com/steakknife/hamming".fetch] - type = "git" - url = "https://github.com/steakknife/hamming" - rev = "c99c65617cd3d686aea8365fe563d6542f01d940" - sha256 = "03scc8fkkwpbc7p9ymlrm6wg57mzr0d6s2k2dz2gp339pllxyxjr" - -["github.com/streadway/amqp"] - sumVersion = "v0.0.0-20190827072141-edfb9018d271" - ["github.com/streadway/amqp".fetch] - type = "git" - url = "https://github.com/streadway/amqp" - rev = "edfb9018d2714e4ec54dbaba37dbfef2bdadf0e4" - sha256 = "07icg7x7saawzqb9lm9avw6bizs387xdi27zry03m6z5i1a22zq2" - -["github.com/streadway/handy"] - sumVersion = "v0.0.0-20190108123426-d5acb3125c2a" - ["github.com/streadway/handy".fetch] - type = "git" - url = "https://github.com/streadway/handy" - rev = "d5acb3125c2a6654d2d691e6851674a645333da1" - sha256 = "02jwalahfj2lh1snklh6i5hysjl9npx59q31ihdfrva10dssg30r" - -["github.com/stretchr/objx"] - sumVersion = "v0.2.0" - ["github.com/stretchr/objx".fetch] - type = "git" - url = "https://github.com/stretchr/objx" - rev = "ea4fe68685ee0d3cee7032121851b57e7494e8ea" - sha256 = "0pcdvakxgddaiwcdj73ra4da05a3q4cgwbpm2w75ycq4kzv8ij8k" - -["github.com/stretchr/testify"] - sumVersion = "v1.7.0" - ["github.com/stretchr/testify".fetch] - type = "git" - url = "https://github.com/stretchr/testify" - rev = "acba37e5db06f0093b465a7d47822bf13644b66c" - sha256 = "0ixgjsvafr3513pz3r6pmgk074s2dxkll0dadvl25gkf30rkmh10" - -["github.com/subosito/gotenv"] - sumVersion = "v1.2.0" - ["github.com/subosito/gotenv".fetch] - type = "git" - url = "https://github.com/subosito/gotenv" - rev = "2ef7124db659d49edac6aa459693a15ae36c671a" - sha256 = "0mav91j7r4arjkpq5zcf9j74f6pww8ic53x43wy7kg3ibw31yjs5" - -["github.com/syndtr/gocapability"] - sumVersion = "v0.0.0-20200815063812-42c35b437635" - ["github.com/syndtr/gocapability".fetch] - type = "git" - url = "https://github.com/syndtr/gocapability" - rev = "42c35b4376354fd554efc7ad35e0b7f94e3a0ffb" - sha256 = "00zi0k190ydlm9drnafvj9p4cf6axm858wr71pbmq1p3r94iqws4" - -["github.com/syndtr/goleveldb"] - sumVersion = "v1.0.1-0.20200815110645-5c35d600f0ca" - ["github.com/syndtr/goleveldb".fetch] - type = "git" - url = "https://github.com/syndtr/goleveldb" - rev = "5c35d600f0caac04c20d52438103f1a7aa612598" - sha256 = "0wsqybzip0khzgk4cl23ilm30jnf4yd674dkbq4c26ivak9qkmz7" - -["github.com/tdakkota/asciicheck"] - sumVersion = "v0.0.0-20200416200610-e657995f937b" - ["github.com/tdakkota/asciicheck".fetch] - type = "git" - url = "https://github.com/tdakkota/asciicheck" - rev = "e657995f937b8362b9e1425aa31bb96798b592f2" - sha256 = "0kyj9zizkbbdzhbr0hak306zwx4ia87cflbasfl743kvx43af1g0" - -["github.com/tecbot/gorocksdb"] - sumVersion = "v0.0.0-20191217155057-f0fad39f321c" - ["github.com/tecbot/gorocksdb".fetch] - type = "git" - url = "https://github.com/tecbot/gorocksdb" - rev = "f0fad39f321c61bf05fcb4a01fe259606235e712" - sha256 = "0brf99da00jf91hf7w0qqk6yj61zcya9ci7pm8d60q6zl40i87c5" - -["github.com/tendermint/btcd"] - sumVersion = "v0.1.1" - ["github.com/tendermint/btcd".fetch] - type = "git" - url = "https://github.com/tendermint/btcd" - rev = "80daadac05d1cd29571fccf27002d79667a88b58" - sha256 = "16s909z5awvqi060rdj577wzbgziyk88s53x24kv9rzc71rm99x1" - -["github.com/tendermint/crypto"] - sumVersion = "v0.0.0-20191022145703-50d29ede1e15" - ["github.com/tendermint/crypto".fetch] - type = "git" - url = "https://github.com/tendermint/crypto" - rev = "50d29ede1e15ab205c8558ad67b85596ee19d3a0" - sha256 = "0vhyxsypb2q1zpcl464hlsdpap7kc3nj6gdff53xwrln2bg1jjin" - -["github.com/tendermint/go-amino"] - sumVersion = "v0.16.0" - ["github.com/tendermint/go-amino".fetch] - type = "git" - url = "https://github.com/tendermint/go-amino" - rev = "ccb15b138dfd74282be78f5e9059387768b12918" - sha256 = "1zcms3l5fihzg8nf4vhdk18qpn1jkbm3rpkjfpskfcrgzlxk6vi5" - -["github.com/tendermint/tendermint"] - sumVersion = "v0.34.14" - ["github.com/tendermint/tendermint".fetch] - type = "git" - url = "https://github.com/tendermint/tendermint" - rev = "85870def7b628effad73af942e638bbddf2ba8fd" - sha256 = "15rrh25qdc4dvq0f125a039n08wv82ijjd0zzrr3n9d6fv028mpw" - -["github.com/tendermint/tm-db"] - sumVersion = "v0.6.4" - ["github.com/tendermint/tm-db".fetch] - type = "git" - url = "https://github.com/tendermint/tm-db" - rev = "6f9a08cd4522fb13d8df69b1694587d5015114fc" - sha256 = "1sgjf2vaq554ybc0cwkzn17cz2ibzph2rq0dgaw21c2hym09437x" - -["github.com/tetafro/godot"] - sumVersion = "v1.4.9" - ["github.com/tetafro/godot".fetch] - type = "git" - url = "https://github.com/tetafro/godot" - rev = "2d9c8a617dcf8bb2927b4562c37d1077c43d2d49" - sha256 = "1kmdk3v2a6ygcg2i8jfgz61yzxi4183xgzlaviq9jwsqwc2hj60w" - -["github.com/tidwall/gjson"] - sumVersion = "v1.6.7" - ["github.com/tidwall/gjson".fetch] - type = "git" - url = "https://github.com/tidwall/gjson" - rev = "97ec619cbe9546828dc45cb856a5938dcf3d74e1" - sha256 = "1gq689xp5bqxn17hcg8kwciakr05rz84dgd8qpiy7aqdv8iqrghq" - -["github.com/tidwall/match"] - sumVersion = "v1.0.3" - ["github.com/tidwall/match".fetch] - type = "git" - url = "https://github.com/tidwall/match" - rev = "c2f534168b739a7ec1821a33839fb2f029f26bbc" - sha256 = "1haa5p7hsjqx0ijxbypgc9c31v128mykm1g0lyymvkk3qdajvcyr" - -["github.com/tidwall/pretty"] - sumVersion = "v1.0.2" - ["github.com/tidwall/pretty".fetch] - type = "git" - url = "https://github.com/tidwall/pretty" - rev = "ef453c788d6a371829f4f9967b014b2b81856df5" - sha256 = "0bfp2nqwd7w3709lsyw2iw71hgbrnhcs1nr9n4vbari408qk2rv0" - -["github.com/tidwall/sjson"] - sumVersion = "v1.1.4" - ["github.com/tidwall/sjson".fetch] - type = "git" - url = "https://github.com/tidwall/sjson" - rev = "b547b7aea4b0c9a8ed8885f0790aea039483f337" - sha256 = "0nin7n4bfjxznkkrjb4g7clprnmkdx79hgx1rjakxqp821l6s85s" - -["github.com/timakin/bodyclose"] - sumVersion = "v0.0.0-20200424151742-cb6215831a94" - ["github.com/timakin/bodyclose".fetch] - type = "git" - url = "https://github.com/timakin/bodyclose" - rev = "cb6215831a94c8f045805eae1d9782ebf907ced9" - sha256 = "0r5xi11qkxkhypq7y0q5p93z2q00sbn9yf32340cxzbim67niw0q" - -["github.com/tklauser/go-sysconf"] - sumVersion = "v0.3.7" - ["github.com/tklauser/go-sysconf".fetch] - type = "git" - url = "https://github.com/tklauser/go-sysconf" - rev = "ee6b65a65cffa83a2b81381420632959d977e790" - sha256 = "0gwf4s2bvvmk5fm0521kaz93hwjrzg6nwcjlm0fc8zan7l94f1g9" - -["github.com/tklauser/numcpus"] - sumVersion = "v0.2.3" - ["github.com/tklauser/numcpus".fetch] - type = "git" - url = "https://github.com/tklauser/numcpus" - rev = "8d45637165b3f9e97e45a2827870f0ae292b033b" - sha256 = "1b4ag1f3narkq3bw17b2zfr27ws3bcadq6z3n8zz4f0i4afsp0jh" - -["github.com/tmc/grpc-websocket-proxy"] - sumVersion = "v0.0.0-20200427203606-3cfed13b9966" - ["github.com/tmc/grpc-websocket-proxy".fetch] - type = "git" - url = "https://github.com/tmc/grpc-websocket-proxy" - rev = "3cfed13b99662c5c5740aa3bed7a81170f3ef94f" - sha256 = "1flhz7ksk1r9mwj6h7snbs0a39b8mjijcqf8q1xbxyyqg8j8x0bs" - -["github.com/tomarrell/wrapcheck/v2"] - sumVersion = "v2.3.0" - ["github.com/tomarrell/wrapcheck/v2".fetch] - type = "git" - url = "https://github.com/tomarrell/wrapcheck" - rev = "d409df3395169cccdb7f39aea3092e20c5e69a9c" - sha256 = "040fwm1bzspwk8djliqawylblsbljhd0p6r99jzbk3p8grym4ypn" - -["github.com/tomasen/realip"] - sumVersion = "v0.0.0-20180522021738-f0c99a92ddce" - ["github.com/tomasen/realip".fetch] - type = "git" - url = "https://github.com/tomasen/realip" - rev = "f0c99a92ddcedd3964a269d23c8e89d9a9229be6" - sha256 = "1iz2cwks2ywwvvnbfmw3pfyz4ql7z0f8s9sdj6pzirpp75zar9nn" - -["github.com/tommy-muehle/go-mnd/v2"] - sumVersion = "v2.4.0" - ["github.com/tommy-muehle/go-mnd/v2".fetch] - type = "git" - url = "https://github.com/tommy-muehle/go-mnd" - rev = "c588e97417345a8d6cde3d418988f18e8c94207b" - sha256 = "1znw6kamd3zlc34myc6j606psnv94p1vvnjf5aamb2pp2b6d1plx" - -["github.com/tv42/httpunix"] - sumVersion = "v0.0.0-20150427012821-b75d8614f926" - ["github.com/tv42/httpunix".fetch] - type = "git" - url = "https://github.com/tv42/httpunix" - rev = "b75d8614f926c077e48d85f1f8f7885b758c6225" - sha256 = "1sd9nnyyjm7n96fa18l0shlnapld4m0yj5ij2ba0l9yaaa2byqm9" - -["github.com/tyler-smith/go-bip39"] - sumVersion = "v1.0.2" - ["github.com/tyler-smith/go-bip39".fetch] - type = "git" - url = "https://github.com/tyler-smith/go-bip39" - rev = "5e3853c3f4e1a44df487c7efeb064ee8b43755de" - sha256 = "1nbjm9h0hbchp3rgxlnzix5hzwa474kr311yqb1dqxmvyrngaq9w" - -["github.com/ugorji/go"] - sumVersion = "v1.1.7" - ["github.com/ugorji/go".fetch] - type = "git" - url = "https://github.com/ugorji/go" - rev = "23ab95ef5dc3b70286760af84ce2327a2b64ed62" - sha256 = "068gja55kbh2iivp03x4n9dcml0rxv0k64ivkmq06si2ar1835rm" - -["github.com/ugorji/go/codec"] - sumVersion = "v1.1.7" - relPath = "codec" - ["github.com/ugorji/go/codec".fetch] - type = "git" - url = "https://github.com/ugorji/go" - rev = "23ab95ef5dc3b70286760af84ce2327a2b64ed62" - sha256 = "068gja55kbh2iivp03x4n9dcml0rxv0k64ivkmq06si2ar1835rm" - -["github.com/ultraware/funlen"] - sumVersion = "v0.0.3" - ["github.com/ultraware/funlen".fetch] - type = "git" - url = "https://github.com/ultraware/funlen" - rev = "262c7008279852412f50c8ece2f1a22c759bd84b" - sha256 = "1b1yjiwr4p2il9kgyc20hk83gvcm5mfv5xlfvs9hp01pydhx5pll" - -["github.com/ultraware/whitespace"] - sumVersion = "v0.0.4" - ["github.com/ultraware/whitespace".fetch] - type = "git" - url = "https://github.com/ultraware/whitespace" - rev = "83a46e7e913269e68dc64d4d2db3f2c9fb0e1714" - sha256 = "0hxa3w806zhi051wk15aj718isp2vc89cvfsqvw3ysbgwllaa60b" - -["github.com/urfave/cli"] - sumVersion = "v1.22.1" - ["github.com/urfave/cli".fetch] - type = "git" - url = "https://github.com/urfave/cli" - rev = "c71fbcefd21552b70cd625b2c54466006e258ad7" - sha256 = "04ymak18flqlfcn8lycmg8r3931al8dvr8f1cg9n4yjaskmg72v8" - -["github.com/uudashr/gocognit"] - sumVersion = "v1.0.5" - ["github.com/uudashr/gocognit".fetch] - type = "git" - url = "https://github.com/uudashr/gocognit" - rev = "16f84d241bedf9d2f731a71bf0e55ad654717bd9" - sha256 = "1yx8fydwpgnazwpr0f9cfmfz28di91q2qsmim4wmvxaqxp2mhi5a" - -["github.com/valyala/bytebufferpool"] - sumVersion = "v1.0.0" - ["github.com/valyala/bytebufferpool".fetch] - type = "git" - url = "https://github.com/valyala/bytebufferpool" - rev = "e746df99fe4a3986f4d4f79e13c1e0117ce9c2f7" - sha256 = "01lqzjddq6kz9v41nkky7wbgk7f1cw036sa7ldz10d82g5klzl93" - -["github.com/valyala/fasthttp"] - sumVersion = "v1.16.0" - ["github.com/valyala/fasthttp".fetch] - type = "git" - url = "https://github.com/valyala/fasthttp" - rev = "434c48ba7e3a0dafb32964b8971fb1448a39ceee" - sha256 = "120vyy6q75v70vkhbckh287700bma6wqzvg7i8wf8qy2vvq551ag" - -["github.com/valyala/quicktemplate"] - sumVersion = "v1.6.3" - ["github.com/valyala/quicktemplate".fetch] - type = "git" - url = "https://github.com/valyala/quicktemplate" - rev = "f15a233858c23fd598b71cf2f11fd9db3989dbdf" - sha256 = "0zvn92mpa1qfdh5rc9w8y6h9y1aki0027idfhlbxf3liq90nn24r" - -["github.com/valyala/tcplisten"] - sumVersion = "v0.0.0-20161114210144-ceec8f93295a" - ["github.com/valyala/tcplisten".fetch] - type = "git" - url = "https://github.com/valyala/tcplisten" - rev = "ceec8f93295a060cdb565ec25e4ccf17941dbd55" - sha256 = "0ksbj1gsdqanbnhly5w1wcc107bib4w0zpnyl00prr89zch3imnf" - -["github.com/viki-org/dnscache"] - sumVersion = "v0.0.0-20130720023526-c70c1f23c5d8" - ["github.com/viki-org/dnscache".fetch] - type = "git" - url = "https://github.com/viki-org/dnscache" - rev = "c70c1f23c5d84ab39054ec6b418a5ed0fa51cade" - sha256 = "0k9p3v3df1y1l85xhh5k8wsnidhxx7qyqpyfka1pcs1562q35l97" - -["github.com/vishvananda/netlink"] - sumVersion = "v1.1.0" - ["github.com/vishvananda/netlink".fetch] - type = "git" - url = "https://github.com/vishvananda/netlink" - rev = "f049be6f391489d3f374498fe0c8df8449258372" - sha256 = "1vhl30p1gx636a088ls4h6a0l8jjyfvz79fr5w0qzdrg4qg9h08h" - -["github.com/vishvananda/netns"] - sumVersion = "v0.0.0-20191106174202-0a2b9b5464df" - ["github.com/vishvananda/netns".fetch] - type = "git" - url = "https://github.com/vishvananda/netns" - rev = "0a2b9b5464df8343199164a0321edf3313202f7e" - sha256 = "1k1zb7pzc4r4wicq7ncspf6zsvq298lvpsq963ibj813shg657xw" - -["github.com/vmihailenco/msgpack/v5"] - sumVersion = "v5.1.4" - ["github.com/vmihailenco/msgpack/v5".fetch] - type = "git" - url = "https://github.com/vmihailenco/msgpack" - rev = "77a6f797778061f2c9c30b13418c3a2f5cb98070" - sha256 = "109nansr75fidx3r00nb4jkc14davfzb88kdf75h6jyk06b50iaa" - -["github.com/vmihailenco/tagparser"] - sumVersion = "v0.1.2" - ["github.com/vmihailenco/tagparser".fetch] - type = "git" - url = "https://github.com/vmihailenco/tagparser" - rev = "be04d19a03d0f4739671a500012335e98ebfeb9f" - sha256 = "0418gkcds57c6g6slf8kl3ya7xp14p5y42w1gqkiqp6p98nhblqh" - -["github.com/wsddn/go-ecdh"] - sumVersion = "v0.0.0-20161211032359-48726bab9208" - ["github.com/wsddn/go-ecdh".fetch] - type = "git" - url = "https://github.com/wsddn/go-ecdh" - rev = "48726bab92085232373de4ec5c51ce7b441c63a0" - sha256 = "1rszp777snp9qvnh2giim7d42cvca5l180gq4j7clbmshnzg6c6m" - -["github.com/xiang90/probing"] - sumVersion = "v0.0.0-20190116061207-43a291ad63a2" - ["github.com/xiang90/probing".fetch] - type = "git" - url = "https://github.com/xiang90/probing" - rev = "43a291ad63a214a207fefbf03c7d9d78b703162b" - sha256 = "1z22ms16j5j42775mf31isanwx2pwr1d8wqw8006dczjv36qnz5i" - -["github.com/xo/terminfo"] - sumVersion = "v0.0.0-20210125001918-ca9a967f8778" - ["github.com/xo/terminfo".fetch] - type = "git" - url = "https://github.com/xo/terminfo" - rev = "ca9a967f877831dd8742c136f5c19f82d03673f4" - sha256 = "05gdcvcbwcrcwxznhvs1q1xh4irz2d10v2mz179pydjh30kjc0j5" - -["github.com/xordataexchange/crypt"] - sumVersion = "v0.0.3-0.20170626215501-b2862e3d0a77" - ["github.com/xordataexchange/crypt".fetch] - type = "git" - url = "https://github.com/xordataexchange/crypt" - rev = "b2862e3d0a775f18c7cfe02273500ae307b61218" - sha256 = "04q3856anpzl4gdfgmg7pbp9cx231nkz3ymq2xp27rnmmwhfxr8y" - -["github.com/ybbus/jsonrpc"] - sumVersion = "v2.1.2+incompatible" - ["github.com/ybbus/jsonrpc".fetch] - type = "git" - url = "https://github.com/ybbus/jsonrpc" - rev = "dd866631e904a5df2067d934985c5def68f391ac" - sha256 = "1k2i4q4bliqfkam4gd00729plgi6f7wa60npqpgagrlfnd4w9k4m" - -["github.com/yeya24/promlinter"] - sumVersion = "v0.1.0" - ["github.com/yeya24/promlinter".fetch] - type = "git" - url = "https://github.com/yeya24/promlinter" - rev = "000c7d74ddb3f60264547f8096a03855ea9ecfbb" - sha256 = "010m0i8kiwarn5b4p9m8j7frzlm5gnb5ahfh3ph1rz6a6qyiiq7b" - -["github.com/yudai/gojsondiff"] - sumVersion = "v1.0.0" - ["github.com/yudai/gojsondiff".fetch] - type = "git" - url = "https://github.com/yudai/gojsondiff" - rev = "d53dddaf16b9f5b19737f4722943e7e1f289af13" - sha256 = "0qnymi0027mb8kxm24mmd22bvjrdkc56c7f4q3lbdf93x1vxbbc2" - -["github.com/yudai/golcs"] - sumVersion = "v0.0.0-20170316035057-ecda9a501e82" - ["github.com/yudai/golcs".fetch] - type = "git" - url = "https://github.com/yudai/golcs" - rev = "ecda9a501e8220fae3b4b600c3db4b0ba22cfc68" - sha256 = "0mx6wc5fz05yhvg03vvps93bc5mw4vnng98fhmixd47385qb29pq" - -["github.com/yudai/pp"] - sumVersion = "v2.0.1+incompatible" - ["github.com/yudai/pp".fetch] - type = "git" - url = "https://github.com/yudai/pp" - rev = "7b2049560316f10b8b3923c5a959691ce2132318" - sha256 = "18vbc7jagnjw1wpvhqjffl0np7bzzqdd9jpdcisvj5h85lbyn5gk" - -["github.com/yuin/goldmark"] - sumVersion = "v1.3.5" - ["github.com/yuin/goldmark".fetch] - type = "git" - url = "https://github.com/yuin/goldmark" - rev = "9f5125e104c38283b8ca0a581793abe4260dd786" - sha256 = "08rrhfji92hixiv3v0wvamwcy56f90wsw84w7lyvad7g90kbsknx" - -["github.com/zondax/hid"] - sumVersion = "v0.9.0" - ["github.com/zondax/hid".fetch] - type = "git" - url = "https://github.com/zondax/hid" - rev = "302fd402163c34626286195dfa9adac758334acc" - sha256 = "1wnpfn4bd86nz2v9dgb40xpz1ya66vahdkrhb1gj4jyyxdnnhqkh" - -["go.etcd.io/bbolt"] - sumVersion = "v1.3.5" - ["go.etcd.io/bbolt".fetch] - type = "git" - url = "https://github.com/etcd-io/bbolt" - rev = "232d8fc87f50244f9c808f4745759e08a304c029" - sha256 = "1h64gipvcg7060byv5wjlf524kqwj12p3v08kfh4ygv46vpm8p2r" - -["go.etcd.io/etcd"] - sumVersion = "v0.0.0-20200513171258-e048e166ab9c" - ["go.etcd.io/etcd".fetch] - type = "git" - url = "https://github.com/etcd-io/etcd" - rev = "e048e166ab9c87f11e5f48c3dcf9774fb7c17fa8" - sha256 = "1xlngzwyrk04715rhi262jqsyci4aniw526sxa2cap9lnbyq2v0m" - -["go.etcd.io/etcd/api/v3"] - sumVersion = "v3.5.0" - relPath = "api" - ["go.etcd.io/etcd/api/v3".fetch] - type = "git" - url = "https://github.com/etcd-io/etcd" - rev = "946a5a6f25c3b6b89408ab447852731bde6e6289" - sha256 = "1dinf1668bkpq5lff8sr4fjd7dkxw9smm1f9zcadpdz3ci3knpzg" - -["go.etcd.io/etcd/client/pkg/v3"] - sumVersion = "v3.5.0" - relPath = "client/pkg" - ["go.etcd.io/etcd/client/pkg/v3".fetch] - type = "git" - url = "https://github.com/etcd-io/etcd" - rev = "946a5a6f25c3b6b89408ab447852731bde6e6289" - sha256 = "1dinf1668bkpq5lff8sr4fjd7dkxw9smm1f9zcadpdz3ci3knpzg" - -["go.etcd.io/etcd/client/v2"] - sumVersion = "v2.305.0" - relPath = "client" - ["go.etcd.io/etcd/client/v2".fetch] - type = "git" - url = "https://github.com/etcd-io/etcd" - rev = "946a5a6f25c3b6b89408ab447852731bde6e6289" - sha256 = "1dinf1668bkpq5lff8sr4fjd7dkxw9smm1f9zcadpdz3ci3knpzg" - -["go.mozilla.org/mozlog"] - sumVersion = "v0.0.0-20170222151521-4bb13139d403" - ["go.mozilla.org/mozlog".fetch] - type = "git" - url = "https://github.com/mozilla-services/go-mozlog" - rev = "4bb13139d40339f59bf140d0f5f28be83b07cc58" - sha256 = "197754z5z3ixdasymw6ks51b7vmfv3q3skiz5yn2mzgw9hlgphkq" - -["go.opencensus.io"] - sumVersion = "v0.23.0" - ["go.opencensus.io".fetch] - type = "git" - url = "https://github.com/census-instrumentation/opencensus-go" - rev = "49838f207d61097fc0ebb8aeef306913388376ca" - sha256 = "0gw4f7inf8y2ik00yfb36xganiq9rl4w2d1a41bsjqsh83ajz2km" - -["go.uber.org/atomic"] - sumVersion = "v1.7.0" - ["go.uber.org/atomic".fetch] - type = "git" - url = "https://github.com/uber-go/atomic" - rev = "12f27ba2637fa0e13772a4f05fa46a5d18d53182" - sha256 = "0yxvb5sixh76cl9j8dpa97gznj0p8pmg2cdw0ypfwhd3ipx9wph1" - -["go.uber.org/multierr"] - sumVersion = "v1.6.0" - ["go.uber.org/multierr".fetch] - type = "git" - url = "https://github.com/uber-go/multierr" - rev = "3114a8b704d2d28dbacda34a872690aaef66aeed" - sha256 = "162941s8f6a9x2w04qm4qa3zz0zylwag9149hywrj9ibp2nzcsqz" - -["go.uber.org/tools"] - sumVersion = "v0.0.0-20190618225709-2cfd321de3ee" - ["go.uber.org/tools".fetch] - type = "git" - url = "https://github.com/uber-go/tools" - rev = "2cfd321de3ee5d5f8a5fda2521d1703478334d98" - sha256 = "0kcsg9pd3vyp5v9dz8xzd9lkpbqrlhr1rv6hg38afq6ifziw319i" - -["go.uber.org/zap"] - sumVersion = "v1.17.0" - ["go.uber.org/zap".fetch] - type = "git" - url = "https://github.com/uber-go/zap" - rev = "ebebbf3828cd267f08b11cc3f6f4a155c952b2ba" - sha256 = "14mr66h7vxirpvb12106372apw1w3ppymbf89lprxkkg03srkfy8" - -["golang.org/x/crypto"] - sumVersion = "v0.0.0-20210920023735-84f357641f63" - ["golang.org/x/crypto".fetch] - type = "git" - url = "https://go.googlesource.com/crypto" - rev = "84f357641f6309f0bc8d2d3f445107e46d6a5101" - sha256 = "1gyawpjn79j1z7rxhvfzm3a7ywvnyzx6dbq367jm8wrmr7h6ip3n" - -["golang.org/x/exp"] - sumVersion = "v0.0.0-20200331195152-e8c3332aa8e5" - ["golang.org/x/exp".fetch] - type = "git" - url = "https://go.googlesource.com/exp" - rev = "e8c3332aa8e5b8e6acb4707c3a7e5979052b20aa" - sha256 = "085mbasmshl64f2d0awrf5k0iyh1aij888cp9aa12ldzp36404rw" - -["golang.org/x/image"] - sumVersion = "v0.0.0-20190802002840-cff245a6509b" - ["golang.org/x/image".fetch] - type = "git" - url = "https://go.googlesource.com/image" - rev = "cff245a6509b8c4de022d0d5b9037c503c5989d6" - sha256 = "0hiznlkiaay30acwvvyq8g6bm32r7bc6gv47pygrcxqpapasbz84" - -["golang.org/x/lint"] - sumVersion = "v0.0.0-20210508222113-6edffad5e616" - ["golang.org/x/lint".fetch] - type = "git" - url = "https://go.googlesource.com/lint" - rev = "6edffad5e6160f5949cdefc81710b2706fbcd4f6" - sha256 = "1n7lrr3282q3li4f06afms444qy13rfd316za0drqihakwyki2jk" - -["golang.org/x/mobile"] - sumVersion = "v0.0.0-20200801112145-973feb4309de" - ["golang.org/x/mobile".fetch] - type = "git" - url = "https://go.googlesource.com/mobile" - rev = "973feb4309de5c3aad0553fc987d76abf1fa58f7" - sha256 = "0jwz7jq1cqp9x6b9kpfrmw84sg7dg5v4xaa8zdbgq14gskmjx72d" - -["golang.org/x/mod"] - sumVersion = "v0.4.2" - ["golang.org/x/mod".fetch] - type = "git" - url = "https://go.googlesource.com/mod" - rev = "d6ab96f2441f9631f81862375ef66782fc4a9c12" - sha256 = "0z1p17i291z2k6va08i80ljyzyij2b6qsz78lnz0wi8zsnkfdz43" - -["golang.org/x/net"] - sumVersion = "v0.0.0-20210903162142-ad29c8ab022f" - ["golang.org/x/net".fetch] - type = "git" - url = "https://go.googlesource.com/net" - rev = "ad29c8ab022f0f2c6a18c8279b1db2230acfa59b" - sha256 = "14qfyn4n6x7c339771i1s7chb8qx12y9xbrkgszyn0a3vgggzh6x" - -["golang.org/x/oauth2"] - sumVersion = "v0.0.0-20210514164344-f6687ab2804c" - ["golang.org/x/oauth2".fetch] - type = "git" - url = "https://go.googlesource.com/oauth2" - rev = "f6687ab2804cbebdfdeef385bee94918b1ce83de" - sha256 = "0n0hwhan765nl2znk94jwnawkss1lmcmslqyxnym57p3sdi77zsp" - -["golang.org/x/sync"] - sumVersion = "v0.0.0-20210220032951-036812b2e83c" - ["golang.org/x/sync".fetch] - type = "git" - url = "https://go.googlesource.com/sync" - rev = "036812b2e83c0ddf193dd5a34e034151da389d09" - sha256 = "1gl202py3s4gl6arkaxlf8qa6f0jyyg2f95m6f89qnfmr416h85b" - -["golang.org/x/sys"] - sumVersion = "v0.0.0-20210903071746-97244b99971b" - ["golang.org/x/sys".fetch] - type = "git" - url = "https://go.googlesource.com/sys" - rev = "97244b99971b253e564db131f988a3fde9c556ca" - sha256 = "08b7iaj5ahr6g09wxagh2l9ndpgmnmsmlghkp33rwhwjkn5scxig" - -["golang.org/x/term"] - sumVersion = "v0.0.0-20201126162022-7de9c90e9dd1" - ["golang.org/x/term".fetch] - type = "git" - url = "https://go.googlesource.com/term" - rev = "7de9c90e9dd184706b838f536a1cbf40a296ddb7" - sha256 = "1ba252xmv6qsvf1w1gcy98mngrj0vd4inbjw0lsklqvva65nljna" - -["golang.org/x/text"] - sumVersion = "v0.3.6" - ["golang.org/x/text".fetch] - type = "git" - url = "https://go.googlesource.com/text" - rev = "e328d63cff14134669501e0e154e4f141c784322" - sha256 = "0wzhvdb059vrp2cczqw422ajrb9sbs4l3qd020hlngj33qfhxah0" - -["golang.org/x/time"] - sumVersion = "v0.0.0-20200416051211-89c76fbcd5d1" - ["golang.org/x/time".fetch] - type = "git" - url = "https://go.googlesource.com/time" - rev = "89c76fbcd5d1cd4969e5d2fe19d48b19d5ad94a0" - sha256 = "1zj3vzvsssz3qm856zgifca74zm54qfglw483wn6z56gl3qill1k" - -["golang.org/x/tools"] - sumVersion = "v0.1.5" - ["golang.org/x/tools".fetch] - type = "git" - url = "https://go.googlesource.com/tools" - rev = "ef97713d99aa4e69742aa68fd45a63247b5d3ea0" - sha256 = "1wzbbcja1q0gn8ahxvzvpl4nzj2icwmc0pppgipmx5rdnngqw80l" - -["golang.org/x/xerrors"] - sumVersion = "v0.0.0-20200804184101-5ec99f83aff1" - ["golang.org/x/xerrors".fetch] - type = "git" - url = "https://go.googlesource.com/xerrors" - rev = "5ec99f83aff198f5fbd629d6c8d8eb38a04218ca" - sha256 = "1dbzc3gmf2haazpv7cgmv97rq40g2xzwbglc17vas8dwhgwgwrzb" - -["google.golang.org/api"] - sumVersion = "v0.44.0" - ["google.golang.org/api".fetch] - type = "git" - url = "https://github.com/googleapis/google-api-go-client" - rev = "e8cf7f70a1e0160405dd0f789a006e6b6074fbdb" - sha256 = "0sh6qzc3pnyliy10afrmzpfbbbm2mwcyc6mp5422xhgp3p2x370x" - -["google.golang.org/appengine"] - sumVersion = "v1.6.7" - ["google.golang.org/appengine".fetch] - type = "git" - url = "https://github.com/golang/appengine" - rev = "5d1c1d03f8703c2e81478d9a30e9afa2d3e4bd8a" - sha256 = "1wkipg7xxc0ha5p6c3bj0vpgq38l18441n5l6zxdhx0gzvz5z1hs" - -["google.golang.org/genproto"] - sumVersion = "v0.0.0-20210920155426-26f343e4c215" - ["google.golang.org/genproto".fetch] - type = "git" - url = "https://github.com/googleapis/go-genproto" - rev = "26f343e4c21528303e0a168b92bbb24bc48778a4" - sha256 = "1r0zrg53qfk857jijgdpqwacpw6vhqd3vfycd09zslgbapp672gi" - -["google.golang.org/grpc"] - sumVersion = "v1.33.2" - ["google.golang.org/grpc".fetch] - type = "git" - url = "https://github.com/grpc/grpc-go" - rev = "56d63285d528c0d33f9bf8c355139d91edc047de" - sha256 = "03yz4nlf4kqbnpw48f0mvcb2f5zzy0vjd5i2iw0hrjspd0238fzk" - -["google.golang.org/protobuf"] - sumVersion = "v1.27.1" - ["google.golang.org/protobuf".fetch] - type = "git" - url = "https://go.googlesource.com/protobuf" - rev = "b92717ecb630d4a4824b372bf98c729d87311a4d" - sha256 = "0aszb7cv8fq1m8akgd4kjyg5q7g5z9fdqnry6057ygq9r8r2yif2" - -["gopkg.in/alecthomas/kingpin.v2"] - sumVersion = "v2.2.6" - ["gopkg.in/alecthomas/kingpin.v2".fetch] - type = "git" - url = "https://gopkg.in/alecthomas/kingpin.v2" - rev = "947dcec5ba9c011838740e680966fd7087a71d0d" - sha256 = "0mndnv3hdngr3bxp7yxfd47cas4prv98sqw534mx7vp38gd88n5r" - -["gopkg.in/check.v1"] - sumVersion = "v1.0.0-20200902074654-038fdea0a05b" - ["gopkg.in/check.v1".fetch] - type = "git" - url = "https://gopkg.in/check.v1" - rev = "038fdea0a05bc030b0bfda479dc2e08d2220ec74" - sha256 = "060kpz01bfglrd7przzgq8a1fqf1x0hlkmdj6isindzwx3kfhnm4" - -["gopkg.in/cheggaaa/pb.v1"] - sumVersion = "v1.0.28" - ["gopkg.in/cheggaaa/pb.v1".fetch] - type = "git" - url = "https://gopkg.in/cheggaaa/pb.v1" - rev = "f907f6f5dd81f77c2bbc1cde92e4c5a04720cb11" - sha256 = "13a66cqbpdif804qj12z9ad8r24va9q41gfk71qbc4zg1wsxs3rh" - -["gopkg.in/errgo.v2"] - sumVersion = "v2.1.0" - ["gopkg.in/errgo.v2".fetch] - type = "git" - url = "https://gopkg.in/errgo.v2" - rev = "f768c5ab0476c50e978b039312180859c10fe8c0" - sha256 = "065mbihiy7q67wnql0bzl9y1kkvck5ivra68254zbih52jxwrgr2" - -["gopkg.in/fsnotify.v1"] - sumVersion = "v1.4.7" - ["gopkg.in/fsnotify.v1".fetch] - type = "git" - url = "https://gopkg.in/fsnotify.v1" - rev = "c2828203cd70a50dcccfb2761f8b1f8ceef9a8e9" - sha256 = "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g" - -["gopkg.in/gcfg.v1"] - sumVersion = "v1.2.3" - ["gopkg.in/gcfg.v1".fetch] - type = "git" - url = "https://gopkg.in/gcfg.v1" - rev = "61b2c08bc8f6068f7c5ca684372f9a6cb1c45ebe" - sha256 = "165f9wincwnkblp8x6m1f4ch4m8k4gvy5v4x4gqdpmf59kqv5y7s" - -["gopkg.in/ini.v1"] - sumVersion = "v1.63.2" - ["gopkg.in/ini.v1".fetch] - type = "git" - url = "https://gopkg.in/ini.v1" - rev = "14e9811b1643cf01ea36277e44dffef4f119fa31" - sha256 = "0s35274ibybg1nidwb65jyc3gkkbs91s7rv5jdg73x6sbd73q6wr" - -["gopkg.in/natefinch/npipe.v2"] - sumVersion = "v2.0.0-20160621034901-c1b8fa8bdcce" - ["gopkg.in/natefinch/npipe.v2".fetch] - type = "git" - url = "https://gopkg.in/natefinch/npipe.v2" - rev = "c1b8fa8bdccecb0b8db834ee0b92fdbcfa606dd6" - sha256 = "1qplrvhks05pay169d9lph3hl7apdam4vj1kx3yzik7cphx6b24f" - -["gopkg.in/olebedev/go-duktape.v3"] - sumVersion = "v3.0.0-20200619000410-60c24ae608a6" - ["gopkg.in/olebedev/go-duktape.v3".fetch] - type = "git" - url = "https://gopkg.in/olebedev/go-duktape.v3" - rev = "60c24ae608a642bf894bed9eb53627d2384bedca" - sha256 = "13qirm5nqk6isv9n0wdi18k9wc8h1d7n6zwflhziwix7ghnr7a1q" - -["gopkg.in/resty.v1"] - sumVersion = "v1.12.0" - ["gopkg.in/resty.v1".fetch] - type = "git" - url = "https://gopkg.in/resty.v1" - rev = "fa5875c0caa5c260ab78acec5a244215a730247f" - sha256 = "062mn735rqzhha5ag07z4gz08hxzrfm2yx067jfmaaxmb6797lmp" - -["gopkg.in/tomb.v1"] - sumVersion = "v1.0.0-20141024135613-dd632973f1e7" - ["gopkg.in/tomb.v1".fetch] - type = "git" - url = "https://gopkg.in/tomb.v1" - rev = "dd632973f1e7218eb1089048e0798ec9ae7dceb8" - sha256 = "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv" - -["gopkg.in/urfave/cli.v1"] - sumVersion = "v1.20.0" - ["gopkg.in/urfave/cli.v1".fetch] - type = "git" - url = "https://gopkg.in/urfave/cli.v1" - rev = "cfb38830724cc34fedffe9a2a29fb54fa9169cd1" - sha256 = "0y6f4sbzkiiwrxbl15biivj8c7qwxnvm3zl2dd3mw4wzg4x10ygj" - -["gopkg.in/warnings.v0"] - sumVersion = "v0.1.2" - ["gopkg.in/warnings.v0".fetch] - type = "git" - url = "https://gopkg.in/warnings.v0" - rev = "ec4a0fea49c7b46c2aeb0b51aac55779c607e52b" - sha256 = "1kzj50jn708cingn7a13c2wdlzs6qv89dr2h4zj8d09647vlnd81" - -["gopkg.in/yaml.v2"] - sumVersion = "v2.4.0" - ["gopkg.in/yaml.v2".fetch] - type = "git" - url = "https://gopkg.in/yaml.v2" - rev = "7649d4548cb53a614db133b2a8ac1f31859dda8c" - sha256 = "1pbmrpj7gcws34g8vwna4i2nhm9p6235piww36436xhyaa10cldr" - -["gopkg.in/yaml.v3"] - sumVersion = "v3.0.0-20210107192922-496545a6307b" - ["gopkg.in/yaml.v3".fetch] - type = "git" - url = "https://gopkg.in/yaml.v3" - rev = "496545a6307b2a7d7a710fd516e5e16e8ab62dbc" - sha256 = "06f4lnrp494wqaygv09dggr2dwf3z2bawqhnlnnwiamg5y787k4g" - -["gotest.tools"] - sumVersion = "v2.2.0+incompatible" - ["gotest.tools".fetch] - type = "git" - url = "https://github.com/gotestyourself/gotest.tools" - rev = "7c797b5133e5460410dbb22ba779bf35e6975dea" - sha256 = "0yif3gdyckmf8i54jq0xn00kflla5rhib9sarw66ngnbl7bn9kyl" - -["honnef.co/go/tools"] - sumVersion = "v0.2.1" - ["honnef.co/go/tools".fetch] - type = "git" - url = "https://github.com/dominikh/go-tools" - rev = "df71e5d0e0ed317ebf43e6e59cf919430fa4b8f2" - sha256 = "11zzzxk0v3lprgkgvwjgbnmwc7wdnx9jhf55sy1l8r9kybw44gjn" - -["mvdan.cc/gofumpt"] - sumVersion = "v0.1.1" - ["mvdan.cc/gofumpt".fetch] - type = "git" - url = "https://github.com/mvdan/gofumpt" - rev = "667a24092cf8f76a50e7206ae566339e59508f3a" - sha256 = "0q97nywfs7i2zm9hdhm0df3kdaj6lrrps151j75nl1fgs0kp2wrh" - -["mvdan.cc/interfacer"] - sumVersion = "v0.0.0-20180901003855-c20040233aed" - ["mvdan.cc/interfacer".fetch] - type = "git" - url = "https://github.com/mvdan/interfacer" - rev = "c20040233aedb03da82d460eca6130fcd91c629a" - sha256 = "0cx4m74mvn200360pmsqxx4z0apk9fcknwwqh8r94zd3jfv4akq2" - -["mvdan.cc/lint"] - sumVersion = "v0.0.0-20170908181259-adc824a0674b" - ["mvdan.cc/lint".fetch] - type = "git" - url = "https://github.com/mvdan/lint" - rev = "adc824a0674b99099789b6188a058d485eaf61c0" - sha256 = "17mi2rvkg9kzv1shxcyawzcj4jj3v738d1j82fp4yygx859yvr8r" - -["mvdan.cc/unparam"] - sumVersion = "v0.0.0-20210104141923-aac4ce9116a7" - ["mvdan.cc/unparam".fetch] - type = "git" - url = "https://github.com/mvdan/unparam" - rev = "aac4ce9116a7d389fb9d16019cfbfa13a34be227" - sha256 = "0ibfx9z4vb945rzmazvk3v47sqfhkzy1bnikx7kv173d5gjqc8i6" - -["nhooyr.io/websocket"] - sumVersion = "v1.8.6" - ["nhooyr.io/websocket".fetch] - type = "git" - url = "https://github.com/nhooyr/websocket" - rev = "02861b474d9c29660eff53a3c424d589aaf46d1e" - sha256 = "1xw7rhy9bvk0kzqvpcvj92l9zwwnakvqwycfxm724dw7m0d84n52" - -["pgregory.net/rapid"] - sumVersion = "v0.4.7" - ["pgregory.net/rapid".fetch] - type = "git" - url = "https://github.com/flyingmutant/rapid" - rev = "ce9c50fb82ac4f865695b30fa30a8d33ffd47ff9" - sha256 = "1ffh6nabwvab42k6x9lixslr6cd09hf9qap2d79n3sdkk0i67b5m" - -["rsc.io/binaryregexp"] - sumVersion = "v0.2.0" - ["rsc.io/binaryregexp".fetch] - type = "git" - url = "https://github.com/rsc/binaryregexp" - rev = "857b9542aaa89cfa42a1477b43fa1f24192fe921" - sha256 = "1kar0myy85waw418zslviwx8846zj0m9cmqkxjx0fvgjdi70nc4b" - -["rsc.io/quote/v3"] - sumVersion = "v3.1.0" - relPath = "v3" - ["rsc.io/quote/v3".fetch] - type = "git" - url = "https://github.com/rsc/quote" - rev = "0406d7298882187f4c75f75fa85cc808a64bcef1" - sha256 = "0nvv97hwwrl1mx5gzsbdm1ndnwpg3m7i2jb10ig9wily7zmvki0i" - -["rsc.io/sampler"] - sumVersion = "v1.3.0" - ["rsc.io/sampler".fetch] - type = "git" - url = "https://github.com/rsc/sampler" - rev = "0cc034b51e57ed7832d4c67d526f75a900996e5c" - sha256 = "0byxk2ynba50py805kcvbvjzh59l1r308i1xgyzpw6lff4xx9xjh" - -["sigs.k8s.io/yaml"] - sumVersion = "v1.1.0" - ["sigs.k8s.io/yaml".fetch] - type = "git" - url = "https://github.com/kubernetes-sigs/yaml" - rev = "fd68e9863619f6ec2fdd8625fe1f02e7c877e480" - sha256 = "1p7hvjdr5jsyk7nys1g1pmgnf3ys6n320i6hds85afppk81k01kb" - -["sourcegraph.com/sourcegraph/appdash"] - sumVersion = "v0.0.0-20190731080439-ebfcffb1b5c0" - ["sourcegraph.com/sourcegraph/appdash".fetch] - type = "git" - url = "https://github.com/sourcegraph/appdash" - rev = "ebfcffb1b5c00031ce797183546746715a3cfe87" - sha256 = "1xlff68pa7jchg1xr2nkrkk94mrd0ba2z38968j7swlfyf8rkk3d" diff --git a/resources/regen/last-synced.narHash b/resources/regen/last-synced.narHash deleted file mode 100644 index 450191a2..00000000 --- a/resources/regen/last-synced.narHash +++ /dev/null @@ -1 +0,0 @@ -sha256-jMlqmTlosMroa3AHvwCJjnRd08EWYu5JqGOUiAV3JV0= diff --git a/resources/relayer/default.nix b/resources/relayer/default.nix deleted file mode 100644 index c6a2e389..00000000 --- a/resources/relayer/default.nix +++ /dev/null @@ -1,7 +0,0 @@ -{ pkgs, relayer-src }: -pkgs.buildGoApplication { - name = "relayer"; - src = "${relayer-src}"; - modules = ./go-modules.toml; - doCheck = false; -} diff --git a/resources/relayer/go-modules.toml b/resources/relayer/go-modules.toml deleted file mode 100644 index 1997caaa..00000000 --- a/resources/relayer/go-modules.toml +++ /dev/null @@ -1,4987 +0,0 @@ -["4d63.com/gochecknoglobals"] - sumVersion = "v0.0.0-20201008074935-acfc0b28355a" - ["4d63.com/gochecknoglobals".fetch] - type = "git" - url = "https://github.com/leighmcculloch/gochecknoglobals" - rev = "acfc0b28355a2084eb4b6a354c7c05d7945059f5" - sha256 = "1vk1zd04s8npi1dbidpmhymypb9y30i7zfq7g4sjxz1nqp8wms7w" - -["bazil.org/fuse"] - sumVersion = "v0.0.0-20160811212531-371fbbdaa898" - ["bazil.org/fuse".fetch] - type = "git" - url = "https://github.com/bazil/fuse" - rev = "371fbbdaa8987b715bdd21d6adc4c9b20155f748" - sha256 = "1x5p301py7mcxgwklfm6pqqkzssln0nfzllng49pnk60m03ilp4w" - -["bitbucket.org/creachadair/shell"] - sumVersion = "v0.0.6" - ["bitbucket.org/creachadair/shell".fetch] - type = "git" - url = "https://bitbucket.org/creachadair/shell.git" - rev = "b260a13921a4d50f6eaf363c47edfb151c2cbc0c" - sha256 = "03wg7mnaxzknx6bj4l2d22j36zbz8hqxrqdc5asy0bm3jb1ddif2" - -["cloud.google.com/go"] - sumVersion = "v0.81.0" - ["cloud.google.com/go".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "a9e5bdc4191b4b9282b3b53c549e89ccd183c9b6" - sha256 = "15jgynqb5pbxqbj3a7ii970yn4srsw1dbxzxnhpkfkmplalpgyh3" - -["cloud.google.com/go/bigquery"] - sumVersion = "v1.8.0" - relPath = "bigquery" - ["cloud.google.com/go/bigquery".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "0aa265f094062dbc111a6906d279fbb88a6cc761" - sha256 = "1127ha4r0xjsfl04mdb134b6kvpc6yz5bx4bba8m1jmb4k3vyg3j" - -["cloud.google.com/go/datastore"] - sumVersion = "v1.1.0" - relPath = "datastore" - ["cloud.google.com/go/datastore".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "d96ccb2ba7586bb79a416471882d347754a78ce5" - sha256 = "18f1l28665x1a8j8a5bh2i7wb2vrwj050d1g5qda50isgqaybixd" - -["cloud.google.com/go/firestore"] - sumVersion = "v1.1.0" - relPath = "firestore" - ["cloud.google.com/go/firestore".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "20091f47d3c522ea545f358dd9ac1cdb326bba6f" - sha256 = "0slvm0vx5f8l2vs4k9k8jv8qnz6z9dzq25xmrhza82cj9j51ghvb" - -["cloud.google.com/go/pubsub"] - sumVersion = "v1.5.0" - relPath = "pubsub" - ["cloud.google.com/go/pubsub".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "34780b6fce10bf13168ba254f594f810c4dc4983" - sha256 = "0cjnfc7d4ghbqcypa5v12z1yqyj07arbb7mgasz8sy72rdpnf561" - -["cloud.google.com/go/spanner"] - sumVersion = "v1.7.0" - relPath = "spanner" - ["cloud.google.com/go/spanner".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "25a5f07e5bab2a2fbaa1e9cef1f01429f2d01b46" - sha256 = "17szh5px9mw57if74z8cb5bdyzvf2cw0iqc9xigmrpgzmrg3izp8" - -["cloud.google.com/go/storage"] - sumVersion = "v1.10.0" - relPath = "storage" - ["cloud.google.com/go/storage".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "3f2988d48e253a8e290b8c0e821284eead1131a0" - sha256 = "10fp6galzz8jwx35159xdcrwsqaz95xw78iwv1z5n67vhglwi5nf" - -["contrib.go.opencensus.io/exporter/stackdriver"] - sumVersion = "v0.13.4" - ["contrib.go.opencensus.io/exporter/stackdriver".fetch] - type = "git" - url = "https://github.com/census-ecosystem/opencensus-go-exporter-stackdriver" - rev = "0fc2674ae49bc91ffa3b9880ad66f56155ff5616" - sha256 = "1y320lqyxfh9xps1fcblr23ws7lwk4q2cdmy0g5pqxfzi8lhll1l" - -["dmitri.shuralyov.com/gpu/mtl"] - sumVersion = "v0.0.0-20190408044501-666a987793e9" - ["dmitri.shuralyov.com/gpu/mtl".fetch] - type = "git" - url = "https://dmitri.shuralyov.com/gpu/mtl" - rev = "666a987793e9432fbb48592aa2f3bf3463685dfa" - sha256 = "1isd03hgiwcf2ld1rlp0plrnfz7r4i7c5q4kb6hkcd22axnmrv0z" - -["filippo.io/edwards25519"] - sumVersion = "v1.0.0-beta.2" - ["filippo.io/edwards25519".fetch] - type = "git" - url = "https://github.com/FiloSottile/edwards25519" - rev = "6944ac7e84c8dffcf51f4e1b0bc2d75a822549e5" - sha256 = "1fv6mssk1r96jbkbb413kxmcf87xz2knyx1bivdam2aa3mhxrim5" - -["github.com/99designs/keyring"] - sumVersion = "v1.1.6" - ["github.com/99designs/keyring".fetch] - type = "git" - url = "https://github.com/99designs/keyring" - rev = "68286ee5140ad1c5cce93fcc054e6cc90015b0ea" - sha256 = "08rcdqpxaa9n348q10fw40q4gxpjajkyrighykk71i7mxzwkcgwn" - -["github.com/Antonboom/errname"] - sumVersion = "v0.1.4" - ["github.com/Antonboom/errname".fetch] - type = "git" - url = "https://github.com/Antonboom/errname" - rev = "aefe8f8fa884b42290e734657221a8279bdb8417" - sha256 = "15jkw6i68wici9bc9yxyns9vjfijnwvz4f7i8n8nqkz81ka2wiqf" - -["github.com/Azure/azure-pipeline-go"] - sumVersion = "v0.2.2" - ["github.com/Azure/azure-pipeline-go".fetch] - type = "git" - url = "https://github.com/Azure/azure-pipeline-go" - rev = "232aee85e8e3a6223a11c0943f7df2ae0fac00e4" - sha256 = "1agn2nzmm1dkwggm4w7h4bnrav4n5jrl0vqbqy2s49vqlr8zirn6" - -["github.com/Azure/azure-storage-blob-go"] - sumVersion = "v0.7.0" - ["github.com/Azure/azure-storage-blob-go".fetch] - type = "git" - url = "https://github.com/Azure/azure-storage-blob-go" - rev = "3efca72bd11c050222deab57e25ea90df03b9692" - sha256 = "03lxg2v7gjl49cli818g9rnkz6818zvwhw8zm8z16y6cjmj8qmzv" - -["github.com/Azure/go-ansiterm"] - sumVersion = "v0.0.0-20210617225240-d185dfc1b5a1" - ["github.com/Azure/go-ansiterm".fetch] - type = "git" - url = "https://github.com/Azure/go-ansiterm" - rev = "d185dfc1b5a126116ea5a19e148e29d16b4574c9" - sha256 = "1y54b1fx80qlyvv2915xrryb9vcc8nnbsdkxszhxjg8bcg85ps5c" - -["github.com/Azure/go-autorest/autorest"] - sumVersion = "v0.9.0" - relPath = "autorest" - ["github.com/Azure/go-autorest/autorest".fetch] - type = "git" - url = "https://github.com/Azure/go-autorest" - rev = "85d9c035382e5537c3c76e84ca5b82c5f09825e9" - sha256 = "01fg6x3a6as2kh0km8kvjzjalq7xiqa17hnsdwawzlpnfpqgslvq" - -["github.com/Azure/go-autorest/autorest/adal"] - sumVersion = "v0.8.0" - relPath = "autorest/adal" - ["github.com/Azure/go-autorest/autorest/adal".fetch] - type = "git" - url = "https://github.com/Azure/go-autorest" - rev = "740293c019d8314ce3378d456b4327fa646297e6" - sha256 = "1ga12qs31v95010jdn8raw0mf2kvlxhfl8z856y7dn2x3fviv7r4" - -["github.com/Azure/go-autorest/autorest/date"] - sumVersion = "v0.2.0" - relPath = "autorest/date" - ["github.com/Azure/go-autorest/autorest/date".fetch] - type = "git" - url = "https://github.com/Azure/go-autorest" - rev = "5bd9621f41a06b08038be5c0522971a35316d5ef" - sha256 = "0fifmqljld72v0g545qqljmynhjgg8jm0ying35wzni0m7cg6n4y" - -["github.com/Azure/go-autorest/autorest/mocks"] - sumVersion = "v0.3.0" - relPath = "autorest/mocks" - ["github.com/Azure/go-autorest/autorest/mocks".fetch] - type = "git" - url = "https://github.com/Azure/go-autorest" - rev = "5bd9621f41a06b08038be5c0522971a35316d5ef" - sha256 = "0fifmqljld72v0g545qqljmynhjgg8jm0ying35wzni0m7cg6n4y" - -["github.com/Azure/go-autorest/logger"] - sumVersion = "v0.1.0" - relPath = "logger" - ["github.com/Azure/go-autorest/logger".fetch] - type = "git" - url = "https://github.com/Azure/go-autorest" - rev = "4bb4e3c99dd98a53e3d65a6f28aa05e2d435cb24" - sha256 = "1w94wxjjkiv8m44rcdm1af9h0ap2r8kpp9198cxpxj8d5xxkaxpz" - -["github.com/Azure/go-autorest/tracing"] - sumVersion = "v0.5.0" - relPath = "tracing" - ["github.com/Azure/go-autorest/tracing".fetch] - type = "git" - url = "https://github.com/Azure/go-autorest" - rev = "5e7a399d8bbf4953ab0c8e3167d7fd535fd74ce1" - sha256 = "0n482cjr2pk6ql6awcnn6llrnygjzakihbjaahgmylf3znwil7jp" - -["github.com/BurntSushi/toml"] - sumVersion = "v0.4.1" - ["github.com/BurntSushi/toml".fetch] - type = "git" - url = "https://github.com/BurntSushi/toml" - rev = "641c3cf2148ad11ca058c000eab0453dd5d67954" - sha256 = "0bz7q3v4m2rq5z47q81bvb4lw6ss2r1x3phgr43a6nls9x5kcpp1" - -["github.com/BurntSushi/xgb"] - sumVersion = "v0.0.0-20160522181843-27f122750802" - ["github.com/BurntSushi/xgb".fetch] - type = "git" - url = "https://github.com/BurntSushi/xgb" - rev = "27f122750802c950b2c869a5b63dafcf590ced95" - sha256 = "18lp2x8f5bljvlz0r7xn744f0c9rywjsb9ifiszqqdcpwhsa0kvj" - -["github.com/ChainSafe/go-schnorrkel"] - sumVersion = "v0.0.0-20200405005733-88cbf1b4c40d" - ["github.com/ChainSafe/go-schnorrkel".fetch] - type = "git" - url = "https://github.com/ChainSafe/go-schnorrkel" - rev = "88cbf1b4c40de64a5ea4863476c6c8ae5433c594" - sha256 = "09ncxdzy4scwmgj96lq83a40bb29nkws1y9x0nim86l9x5jmgi4b" - -["github.com/DataDog/datadog-go"] - sumVersion = "v3.2.0+incompatible" - ["github.com/DataDog/datadog-go".fetch] - type = "git" - url = "https://github.com/DataDog/datadog-go" - rev = "8bfdc335936a79b55b3e2c1080930bc5a3eb57f2" - sha256 = "1m8anll166rwcprjyv3bb0l450p35m0gzn6fs7bcd3ck2s527k7x" - -["github.com/DataDog/zstd"] - sumVersion = "v1.4.5" - ["github.com/DataDog/zstd".fetch] - type = "git" - url = "https://github.com/DataDog/zstd" - rev = "0e71ac6221c995a831bb393da70730c3d3a07091" - sha256 = "0xhgh7nzxq3lzba7w7v3w5mb4nb799v5xh5ylml0hk21ricm7g9s" - -["github.com/Djarvur/go-err113"] - sumVersion = "v0.0.0-20210108212216-aea10b59be24" - ["github.com/Djarvur/go-err113".fetch] - type = "git" - url = "https://github.com/Djarvur/go-err113" - rev = "aea10b59be24dbccef6788e95bb147053c8c774c" - sha256 = "0scsahyv6agld712mlczdv6hnd7ja76xfmr3a0pyf1z5zwqp4fha" - -["github.com/Knetic/govaluate"] - sumVersion = "v3.0.1-0.20171022003610-9aa49832a739+incompatible" - ["github.com/Knetic/govaluate".fetch] - type = "git" - url = "https://github.com/Knetic/govaluate" - rev = "9aa49832a739dcd78a5542ff189fb82c3e423116" - sha256 = "12klijhq4fckzbhv0cwygbazj6lvhmdqksha9y6jgfmwzv51kwv5" - -["github.com/Masterminds/goutils"] - sumVersion = "v1.1.0" - ["github.com/Masterminds/goutils".fetch] - type = "git" - url = "https://github.com/Masterminds/goutils" - rev = "41ac8693c5c10a92ea1ff5ac3a7f95646f6123b0" - sha256 = "180px47gj936qyk5bkv5mbbgiil9abdjq6kwkf7sq70vyi9mcfiq" - -["github.com/Masterminds/semver"] - sumVersion = "v1.5.0" - ["github.com/Masterminds/semver".fetch] - type = "git" - url = "https://github.com/Masterminds/semver" - rev = "805c489aa98f412e79eb308a37996bf9d8b1c91e" - sha256 = "1i169xscsxsh8lsw8bz2apnsqixld37xdnfh36i30xy5wnf0iwfx" - -["github.com/Masterminds/sprig"] - sumVersion = "v2.22.0+incompatible" - ["github.com/Masterminds/sprig".fetch] - type = "git" - url = "https://github.com/Masterminds/sprig" - rev = "e4c0945838d570720d876a6ad9b4568ed32317b4" - sha256 = "09dzwhj4zh3p6f1jhyic16n4qdnvpamz7hyk9fycpm4b1jfq63gd" - -["github.com/Microsoft/go-winio"] - sumVersion = "v0.5.0" - ["github.com/Microsoft/go-winio".fetch] - type = "git" - url = "https://github.com/Microsoft/go-winio" - rev = "58dba89befbca5b5a2c944f84642f5b0540bcfd5" - sha256 = "123p5by5craqigydfqj0hchplcv75zz81xzj5s3ixq624qjbg0z5" - -["github.com/Nvveen/Gotty"] - sumVersion = "v0.0.0-20120604004816-cd527374f1e5" - ["github.com/Nvveen/Gotty".fetch] - type = "git" - url = "https://github.com/Nvveen/Gotty" - rev = "cd527374f1e5bff4938207604a14f2e38a9cf512" - sha256 = "1ylvr1p6p036ns3g3wdz8f92f69symshkc8j54fa6gpg4hyk0k6q" - -["github.com/OneOfOne/xxhash"] - sumVersion = "v1.2.2" - ["github.com/OneOfOne/xxhash".fetch] - type = "git" - url = "https://github.com/OneOfOne/xxhash" - rev = "6def279d2ce6c81a79dd1c1be580f03bb216fb8a" - sha256 = "1mjfhrwhvxa48rycjnqpqzm521i38h1hdyz6pdwmhd7xb8j6gwi6" - -["github.com/OpenPeeDeeP/depguard"] - sumVersion = "v1.0.1" - ["github.com/OpenPeeDeeP/depguard".fetch] - type = "git" - url = "https://github.com/OpenPeeDeeP/depguard" - rev = "2c5871f4f2dd78afab3c5075f292cdadb1f1d2d8" - sha256 = "1lg3pq9mg55zpv3k431nnpx3pz13aja7vs18hw236jl2yb1ga1vw" - -["github.com/ProtonMail/go-crypto"] - sumVersion = "v0.0.0-20210428141323-04723f9f07d7" - ["github.com/ProtonMail/go-crypto".fetch] - type = "git" - url = "https://github.com/ProtonMail/go-crypto" - rev = "04723f9f07d7a4331b1811a18b679d1adc157e32" - sha256 = "047yvcfk94zj1bsjmgxab5w2n8c28dbrx6zfg720sj9lyb2izf3h" - -["github.com/Shopify/sarama"] - sumVersion = "v1.19.0" - ["github.com/Shopify/sarama".fetch] - type = "git" - url = "https://github.com/Shopify/sarama" - rev = "ec843464b50d4c8b56403ec9d589cf41ea30e722" - sha256 = "0q1z3pvcd011yprwzws2s293v4cjvsszhai6vnfrahjcbsz79q0z" - -["github.com/Shopify/toxiproxy"] - sumVersion = "v2.1.4+incompatible" - ["github.com/Shopify/toxiproxy".fetch] - type = "git" - url = "https://github.com/Shopify/toxiproxy" - rev = "49b4ea27da29ae83ad3bfe7f7f090d18cbee1dc3" - sha256 = "07yhsvscdv1qjfc2fyyh9qsrrdwrrw04wadk5gaq4qddcway7vig" - -["github.com/StackExchange/wmi"] - sumVersion = "v1.2.1" - ["github.com/StackExchange/wmi".fetch] - type = "git" - url = "https://github.com/StackExchange/wmi" - rev = "441642c1665945335b93778e496324884ce569e7" - sha256 = "0ijhmr8sl768vkxslvw7fprav6srw4ivp32rzg3ydj8nc1wh86nl" - -["github.com/VictoriaMetrics/fastcache"] - sumVersion = "v1.5.7" - ["github.com/VictoriaMetrics/fastcache".fetch] - type = "git" - url = "https://github.com/VictoriaMetrics/fastcache" - rev = "2c7a92dc306a8b0402608403e97ae9c3cb3c2328" - sha256 = "19fsx8ha2kdjbsinlllz70fj96z6xhvn38x8qrmml0abmsf5z60k" - -["github.com/VividCortex/gohistogram"] - sumVersion = "v1.0.0" - ["github.com/VividCortex/gohistogram".fetch] - type = "git" - url = "https://github.com/VividCortex/gohistogram" - rev = "51564d9861991fb0ad0f531c99ef602d0f9866e6" - sha256 = "1ykpvrkri3mzc0z77kdva93ylh0bqg7jq3i024r3iv0i6bwx3rnf" - -["github.com/Workiva/go-datastructures"] - sumVersion = "v1.0.52" - ["github.com/Workiva/go-datastructures".fetch] - type = "git" - url = "https://github.com/Workiva/go-datastructures" - rev = "0819bcaf26091e7c33585441f8961854c2400faa" - sha256 = "0qsj9r3md4n9nxmlvg6cgysivm4ay905ivbk5vi5csnykwnamqmk" - -["github.com/Zilliqa/gozilliqa-sdk"] - sumVersion = "v1.2.1-0.20201201074141-dd0ecada1be6" - ["github.com/Zilliqa/gozilliqa-sdk".fetch] - type = "git" - url = "https://github.com/Zilliqa/gozilliqa-sdk" - rev = "dd0ecada1be6987976b9f3b557dbb4de305ecf5b" - sha256 = "06hzp118gzkbfvmzpwsqd4iky9br99lxgidgs5xnxwhzhli017w1" - -["github.com/acomagu/bufpipe"] - sumVersion = "v1.0.3" - ["github.com/acomagu/bufpipe".fetch] - type = "git" - url = "https://github.com/acomagu/bufpipe" - rev = "dac7fac8e4fdc02e3f37673df5755dc1649d1169" - sha256 = "1a74sh8g3wmigxx2i0jcpysd46509ll4fw626wfzwrlrbbd1z144" - -["github.com/adlio/schema"] - sumVersion = "v1.1.13" - ["github.com/adlio/schema".fetch] - type = "git" - url = "https://github.com/adlio/schema" - rev = "158666f4977057e9c8000a43995556d43f18fc8e" - sha256 = "18myq29vi5l3l1yzmpvam29m8lb6pgihs2a3gxpip9m38cz72rsf" - -["github.com/aead/siphash"] - sumVersion = "v1.0.1" - ["github.com/aead/siphash".fetch] - type = "git" - url = "https://github.com/aead/siphash" - rev = "83563a290f60225eb120d724600b9690c3fb536f" - sha256 = "01kd1z82sc4nh3nj9c25aryyp396s7jrqc2kz9d7qq1vy2hdbznc" - -["github.com/afex/hystrix-go"] - sumVersion = "v0.0.0-20180502004556-fa1af6a1f4f5" - ["github.com/afex/hystrix-go".fetch] - type = "git" - url = "https://github.com/afex/hystrix-go" - rev = "fa1af6a1f4f56e0e50d427fe901cd604d8c6fb8a" - sha256 = "0zlj0330j816flvwvis4d4vv1gigpxlghph7awbc9jb7ggf2qssn" - -["github.com/alecthomas/template"] - sumVersion = "v0.0.0-20190718012654-fb15b899a751" - ["github.com/alecthomas/template".fetch] - type = "git" - url = "https://github.com/alecthomas/template" - rev = "fb15b899a75114aa79cc930e33c46b577cc664b1" - sha256 = "1vlasv4dgycydh5wx6jdcvz40zdv90zz1h7836z7lhsi2ymvii26" - -["github.com/alecthomas/units"] - sumVersion = "v0.0.0-20190924025748-f65c72e2690d" - ["github.com/alecthomas/units".fetch] - type = "git" - url = "https://github.com/alecthomas/units" - rev = "f65c72e2690dc4b403c8bd637baf4611cd4c069b" - sha256 = "04jyqm7m3m01ppfy1f9xk4qvrwvs78q9zml6llyf2b3v5k6b2bbc" - -["github.com/alexkohler/prealloc"] - sumVersion = "v1.0.0" - ["github.com/alexkohler/prealloc".fetch] - type = "git" - url = "https://github.com/alexkohler/prealloc" - rev = "77a5b5dd9799c465ee170120588411b74218d5bb" - sha256 = "011i8yqzyjgwj17k44xvvg4bxfv8z20s0416r2d3yf4s3wqqygpq" - -["github.com/allegro/bigcache"] - sumVersion = "v1.2.1-0.20190218064605-e24eb225f156" - ["github.com/allegro/bigcache".fetch] - type = "git" - url = "https://github.com/allegro/bigcache" - rev = "e24eb225f15679bbe54f91bfa7da3b00e59b9768" - sha256 = "1ha36q4km0i1klhpxywkfc8w77ldddl7nvqg0wl0ixy17j20na7m" - -["github.com/andybalholm/brotli"] - sumVersion = "v1.0.0" - ["github.com/andybalholm/brotli".fetch] - type = "git" - url = "https://github.com/andybalholm/brotli" - rev = "b60f0d972eeb79a5fba5fb60f1e0568bc8c97e42" - sha256 = "13znsij8np519qjnbc06366dnyxkwbm48m15p60ls2sppdd83f7k" - -["github.com/anmitsu/go-shlex"] - sumVersion = "v0.0.0-20161002113705-648efa622239" - ["github.com/anmitsu/go-shlex".fetch] - type = "git" - url = "https://github.com/anmitsu/go-shlex" - rev = "648efa622239a2f6ff949fed78ee37b48d499ba4" - sha256 = "10rgdp5d106iisgz25ic8k6f44s9adh4sjh6fyxq9ccm21gw49b7" - -["github.com/antihax/optional"] - sumVersion = "v1.0.0" - ["github.com/antihax/optional".fetch] - type = "git" - url = "https://github.com/antihax/optional" - rev = "c3f0ba9c1a592b971d66b2787679af55b5c58f21" - sha256 = "1ix08vl49qxr58rc6201cl97g1yznhhkwvqldslawind99js4rj0" - -["github.com/aokoli/goutils"] - sumVersion = "v1.0.1" - ["github.com/aokoli/goutils".fetch] - type = "git" - url = "https://github.com/aokoli/goutils" - rev = "3391d3790d23d03408670993e957e8f408993c34" - sha256 = "1yj4yjfwylica31sgj69ygb04p9xxi22kgfxd0j5f58zr8vwww2n" - -["github.com/apache/thrift"] - sumVersion = "v0.13.0" - ["github.com/apache/thrift".fetch] - type = "git" - url = "https://github.com/apache/thrift" - rev = "cecee50308fc7e6f77f55b3fd906c1c6c471fa2f" - sha256 = "17ckl7p7s3ga33yrjisilsimp80ansqxl54wvpkv0j7vx2zvc13y" - -["github.com/aristanetworks/goarista"] - sumVersion = "v0.0.0-20170210015632-ea17b1a17847" - ["github.com/aristanetworks/goarista".fetch] - type = "git" - url = "https://github.com/aristanetworks/goarista" - rev = "ea17b1a17847fb6e4c0a91de0b674704693469b0" - sha256 = "02q3dhrgcbdx2826vs7gwrnw6yg9kwcyqyhrvnyf5fj5wfdqzdmp" - -["github.com/armon/circbuf"] - sumVersion = "v0.0.0-20150827004946-bbbad097214e" - ["github.com/armon/circbuf".fetch] - type = "git" - url = "https://github.com/armon/circbuf" - rev = "bbbad097214e2918d8543d5201d12bfd7bca254d" - sha256 = "1idpr0lzb2px2p3wgfq2276yl7jpaz43df6n91kf790404s4zmk3" - -["github.com/armon/consul-api"] - sumVersion = "v0.0.0-20180202201655-eb2c6b5be1b6" - ["github.com/armon/consul-api".fetch] - type = "git" - url = "https://github.com/armon/consul-api" - rev = "eb2c6b5be1b66bab83016e0b05f01b8d5496ffbd" - sha256 = "1j6fdr1sg36qy4n4xjl7brq739fpm5npq98cmvklzjc9qrx98nk9" - -["github.com/armon/go-metrics"] - sumVersion = "v0.3.9" - ["github.com/armon/go-metrics".fetch] - type = "git" - url = "https://github.com/armon/go-metrics" - rev = "f792dbc8f4b651df89dc7098fce61ca56a0a2bee" - sha256 = "0sbnzw7sdjcf2l6nsxynpv99m6sza1zyakl82by37sqhn60hj9is" - -["github.com/armon/go-radix"] - sumVersion = "v0.0.0-20180808171621-7fddfc383310" - ["github.com/armon/go-radix".fetch] - type = "git" - url = "https://github.com/armon/go-radix" - rev = "7fddfc383310abc091d79a27f116d30cf0424032" - sha256 = "0y8chspn14n9xpsfb9gxnnf819rfpriaz64v81p7873a42kkhxb4" - -["github.com/armon/go-socks5"] - sumVersion = "v0.0.0-20160902184237-e75332964ef5" - ["github.com/armon/go-socks5".fetch] - type = "git" - url = "https://github.com/armon/go-socks5" - rev = "e75332964ef517daa070d7c38a9466a0d687e0a5" - sha256 = "104w10jf0wlxyxi35hf6frndgf0ybz21h54xjmnkivpb6slycpyq" - -["github.com/aryann/difflib"] - sumVersion = "v0.0.0-20170710044230-e206f873d14a" - ["github.com/aryann/difflib".fetch] - type = "git" - url = "https://github.com/aryann/difflib" - rev = "e206f873d14a916d3d26c40ab667bca123f365a3" - sha256 = "00zb9sx6l6b2zq614x45zlyshl20zjhwfj8r5krw4f9y0mx3n2dm" - -["github.com/ashanbrown/forbidigo"] - sumVersion = "v1.2.0" - ["github.com/ashanbrown/forbidigo".fetch] - type = "git" - url = "https://github.com/ashanbrown/forbidigo" - rev = "f30240a5170c8f6a62cf603ea541c0ff2008a6be" - sha256 = "01c3wkzsr54cjrqfmjw2wxij66znjrs9l58mv9i6qxka3dhl62xr" - -["github.com/ashanbrown/makezero"] - sumVersion = "v0.0.0-20210520155254-b6261585ddde" - ["github.com/ashanbrown/makezero".fetch] - type = "git" - url = "https://github.com/ashanbrown/makezero" - rev = "b6261585ddde940da3aa0123bac3b77cd87577f7" - sha256 = "0x9cvkrvjs0mssg740cspr8l941sv7hpmr60qcqb8ghv0wj12jgh" - -["github.com/avast/retry-go"] - sumVersion = "v2.6.0+incompatible" - ["github.com/avast/retry-go".fetch] - type = "git" - url = "https://github.com/avast/retry-go" - rev = "a8f6dc7e8f46a5d11c01d9da1e887bb5a51fd107" - sha256 = "13d5n2hw389vvy61h1p155ikv7wk908irqkfrigly675gp4n032n" - -["github.com/aws/aws-lambda-go"] - sumVersion = "v1.13.3" - ["github.com/aws/aws-lambda-go".fetch] - type = "git" - url = "https://github.com/aws/aws-lambda-go" - rev = "b5b7267d297de263cc5b61f8c37543daa9c95ffd" - sha256 = "049zq6gr9xdjjsxd3yimawqlh2ibfkj2434cnjm4x93ph62hppm9" - -["github.com/aws/aws-sdk-go"] - sumVersion = "v1.36.30" - ["github.com/aws/aws-sdk-go".fetch] - type = "git" - url = "https://github.com/aws/aws-sdk-go" - rev = "c69138922cc4f28b2678532d711cd1bafcb975e7" - sha256 = "0vbfqbcwg02hvq50f0flz1q9pqxhjcpfb4a5xywcvddbf4izr4yl" - -["github.com/aws/aws-sdk-go-v2"] - sumVersion = "v0.18.0" - ["github.com/aws/aws-sdk-go-v2".fetch] - type = "git" - url = "https://github.com/aws/aws-sdk-go-v2" - rev = "b0e297c21991cec8a5d645714ea400caa790cb43" - sha256 = "00nrd8bs80w5k0ms31gqjpnl2mf0jav4hr8m54w8a7l13w5szy7s" - -["github.com/beorn7/perks"] - sumVersion = "v1.0.1" - ["github.com/beorn7/perks".fetch] - type = "git" - url = "https://github.com/beorn7/perks" - rev = "37c8de3658fcb183f997c4e13e8337516ab753e6" - sha256 = "17n4yygjxa6p499dj3yaqzfww2g7528165cl13haj97hlx94dgl7" - -["github.com/bgentry/speakeasy"] - sumVersion = "v0.1.0" - ["github.com/bgentry/speakeasy".fetch] - type = "git" - url = "https://github.com/bgentry/speakeasy" - rev = "4aabc24848ce5fd31929f7d1e4ea74d3709c14cd" - sha256 = "02dfrj0wyphd3db9zn2mixqxwiz1ivnyc5xc7gkz58l5l27nzp8s" - -["github.com/bits-and-blooms/bitset"] - sumVersion = "v1.2.0" - ["github.com/bits-and-blooms/bitset".fetch] - type = "git" - url = "https://github.com/bits-and-blooms/bitset" - rev = "59de210119f50cedaa42d175dc88b6335fcf63f6" - sha256 = "0r9f7lvz6znl7yr6njg77m8hj472yhdshf1qaybwyw7j8as6c4r3" - -["github.com/bketelsen/crypt"] - sumVersion = "v0.0.4" - ["github.com/bketelsen/crypt".fetch] - type = "git" - url = "https://github.com/bketelsen/crypt" - rev = "3f0829aaee54a3e9eabd45afbf68257a5cf754f7" - sha256 = "0fyfcvy73zskd1p1mv0cn03anxkkr5gvlawsc87znqk60hdypq3v" - -["github.com/bkielbasa/cyclop"] - sumVersion = "v1.2.0" - ["github.com/bkielbasa/cyclop".fetch] - type = "git" - url = "https://github.com/bkielbasa/cyclop" - rev = "eff218d674761de1166873cf3633e52c164be838" - sha256 = "1ww35mnyjl53h84iyv5c5wccp8ss7pvyjv5gafkibcz061kx751c" - -["github.com/bombsimon/wsl/v3"] - sumVersion = "v3.3.0" - ["github.com/bombsimon/wsl/v3".fetch] - type = "git" - url = "https://github.com/bombsimon/wsl" - rev = "6d756b6381469ac99373f3f65fc0da95e87e98a0" - sha256 = "14p7cx7a4jmya9a88gxvm9d87zi8alvqahjh79gy2k90p0p551aj" - -["github.com/btcsuite/btcd"] - sumVersion = "v0.22.0-beta" - ["github.com/btcsuite/btcd".fetch] - type = "git" - url = "https://github.com/btcsuite/btcd" - rev = "63438c6d3661a7dec09013f7731035abdf1eb4bc" - sha256 = "0rcsd3wcs0cii8qq0573h9fi1x92i8c1gzdvifnkm2r0ndl4knla" - -["github.com/btcsuite/btclog"] - sumVersion = "v0.0.0-20170628155309-84c8d2346e9f" - ["github.com/btcsuite/btclog".fetch] - type = "git" - url = "https://github.com/btcsuite/btclog" - rev = "84c8d2346e9fc8c7b947e243b9c24e6df9fd206a" - sha256 = "02dl46wcnfpg9sqvg0ipipkpnd7lrf4fnvb9zy56jqa7mfcwc7wk" - -["github.com/btcsuite/btcutil"] - sumVersion = "v1.0.3-0.20201208143702-a53e38424cce" - ["github.com/btcsuite/btcutil".fetch] - type = "git" - url = "https://github.com/btcsuite/btcutil" - rev = "a53e38424cce1c9de2062b69364efd35fd428d15" - sha256 = "1izjvgi0d5wnknfwdnqa196hn4vj1n5ga7swbhcfsgghk2zngwr4" - -["github.com/btcsuite/go-socks"] - sumVersion = "v0.0.0-20170105172521-4720035b7bfd" - ["github.com/btcsuite/go-socks".fetch] - type = "git" - url = "https://github.com/btcsuite/go-socks" - rev = "4720035b7bfd2a9bb130b1c184f8bbe41b6f0d0f" - sha256 = "18cv2icj059lq4s99p6yh91hlas5f2gi3f1p4c10sjgwrs933d7b" - -["github.com/btcsuite/goleveldb"] - sumVersion = "v1.0.0" - ["github.com/btcsuite/goleveldb".fetch] - type = "git" - url = "https://github.com/btcsuite/goleveldb" - rev = "3fd0373267b6461dbefe91cef614278064d05465" - sha256 = "0kwllw5yflpn362xbsqphbm10qcy08v3zqs15zbyp4mkjjk0bl9z" - -["github.com/btcsuite/snappy-go"] - sumVersion = "v1.0.0" - ["github.com/btcsuite/snappy-go".fetch] - type = "git" - url = "https://github.com/btcsuite/snappy-go" - rev = "b3db38edf0a9a11a115eb6b022d8c946024a9ac0" - sha256 = "0b2536a58l6advb0ag9ywz7i5cdzclvmm3x796jydv1yrbj5x2vk" - -["github.com/btcsuite/websocket"] - sumVersion = "v0.0.0-20150119174127-31079b680792" - ["github.com/btcsuite/websocket".fetch] - type = "git" - url = "https://github.com/btcsuite/websocket" - rev = "31079b6807923eb23992c421b114992b95131b55" - sha256 = "0xpkf257ml6fpfdgv7hxxc41n0d5yxxm3njm50qpzp7j71l9cjwa" - -["github.com/btcsuite/winsvc"] - sumVersion = "v1.0.0" - ["github.com/btcsuite/winsvc".fetch] - type = "git" - url = "https://github.com/btcsuite/winsvc" - rev = "f8fb11f83f7e860e3769a08e6811d1b399a43722" - sha256 = "0nsw8y86a5hzr2a3j6ch9myrpccj5bnsgaxpgajhzfk5d31xlw1z" - -["github.com/casbin/casbin/v2"] - sumVersion = "v2.1.2" - ["github.com/casbin/casbin/v2".fetch] - type = "git" - url = "https://github.com/casbin/casbin" - rev = "31a4cf3e119fdace8f02263315e83ca37a3fcc18" - sha256 = "175y7v4wlr26g23k551676zq3n3cxv8wjm3zsfhyxy3liikg7899" - -["github.com/cenkalti/backoff"] - sumVersion = "v2.2.1+incompatible" - ["github.com/cenkalti/backoff".fetch] - type = "git" - url = "https://github.com/cenkalti/backoff" - rev = "5267b6dd4d2666b980a911bf235efa276222cbe2" - sha256 = "1mf4lsl3rbb8kk42x0mrhzzy4ikqy0jf6nxpzhkr02rdgwh6rjk8" - -["github.com/cenkalti/backoff/v3"] - sumVersion = "v3.2.2" - ["github.com/cenkalti/backoff/v3".fetch] - type = "git" - url = "https://github.com/cenkalti/backoff" - rev = "ef3e94fd92088352d8a2e81b2f742d546d77b7e6" - sha256 = "01h52k1sl6drabm3fgd4yy1iwbz06wcbbh16zd6v4wi7slabma9m" - -["github.com/census-instrumentation/opencensus-proto"] - sumVersion = "v0.2.1" - ["github.com/census-instrumentation/opencensus-proto".fetch] - type = "git" - url = "https://github.com/census-instrumentation/opencensus-proto" - rev = "d89fa54de508111353cb0b06403c00569be780d8" - sha256 = "19fcx3sc99i5dsklny6r073z5j20vlwn2xqm6di1q3b1xwchzqfj" - -["github.com/cespare/cp"] - sumVersion = "v0.1.0" - ["github.com/cespare/cp".fetch] - type = "git" - url = "https://github.com/cespare/cp" - rev = "165db2f241fd235aec29ba6d9b1ccd5f1c14637c" - sha256 = "1x76x985q9av29smybpc3g4az2qjmzqw181vp9z38wpbips31nm9" - -["github.com/cespare/xxhash"] - sumVersion = "v1.1.0" - ["github.com/cespare/xxhash".fetch] - type = "git" - url = "https://github.com/cespare/xxhash" - rev = "569f7c8abf1f58d9043ab804d364483cb1c853b6" - sha256 = "1qyzlcdcayavfazvi03izx83fvip8h36kis44zr2sg7xf6sx6l4x" - -["github.com/cespare/xxhash/v2"] - sumVersion = "v2.1.1" - ["github.com/cespare/xxhash/v2".fetch] - type = "git" - url = "https://github.com/cespare/xxhash" - rev = "d7df74196a9e781ede915320c11c378c1b2f3a1f" - sha256 = "0rl5rs8546zj1vzggv38w93wx0b5dvav7yy5hzxa8kw7iikv1cgr" - -["github.com/charithe/durationcheck"] - sumVersion = "v0.0.8" - ["github.com/charithe/durationcheck".fetch] - type = "git" - url = "https://github.com/charithe/durationcheck" - rev = "b884a93f92ceca38d1230c18b015b79aa04db74b" - sha256 = "0lg5w1p1ilb76sql6jv8x0wpaxwc17hshjnnilikfa75n7rn2sya" - -["github.com/chavacava/garif"] - sumVersion = "v0.0.0-20210405164556-e8a0a408d6af" - ["github.com/chavacava/garif".fetch] - type = "git" - url = "https://github.com/chavacava/garif" - rev = "e8a0a408d6af0f30eb79e2114600ce31d1a0e371" - sha256 = "07cbl8x9cpai8k4086qmdq9r2wy97khvi0pkwl7bh8r9m3q4msiv" - -["github.com/checkpoint-restore/go-criu/v5"] - sumVersion = "v5.0.0" - ["github.com/checkpoint-restore/go-criu/v5".fetch] - type = "git" - url = "https://github.com/checkpoint-restore/go-criu" - rev = "885cc36edb02fc5afeed0759885b473c16d249d8" - sha256 = "07dal5a9y43azkkh61jf6s81h7anbl17drkh2mal9mzcsi8wa2z8" - -["github.com/chzyer/logex"] - sumVersion = "v1.1.10" - ["github.com/chzyer/logex".fetch] - type = "git" - url = "https://github.com/chzyer/logex" - rev = "cd112f618178aaaf4ea8592c8839f5276145d9cf" - sha256 = "08pbjj3wx9acavlwyr055isa8a5hnmllgdv5k6ra60l5y1brmlq4" - -["github.com/chzyer/readline"] - sumVersion = "v0.0.0-20180603132655-2972be24d48e" - ["github.com/chzyer/readline".fetch] - type = "git" - url = "https://github.com/chzyer/readline" - rev = "2972be24d48e78746da79ba8e24e8b488c9880de" - sha256 = "104q8dazj8yf6b089jjr82fy9h1g80zyyzvp3g8b44a7d8ngjj6r" - -["github.com/chzyer/test"] - sumVersion = "v0.0.0-20180213035817-a1ea475d72b1" - ["github.com/chzyer/test".fetch] - type = "git" - url = "https://github.com/chzyer/test" - rev = "a1ea475d72b168a29f44221e0ad031a842642302" - sha256 = "0rns2aqk22i9xsgyap0pq8wi4cfaxsri4d9q6xxhhyma8jjsnj2k" - -["github.com/cilium/ebpf"] - sumVersion = "v0.6.2" - ["github.com/cilium/ebpf".fetch] - type = "git" - url = "https://github.com/cilium/ebpf" - rev = "ca492085341e0e917f48ec30704d5054c5d42ca8" - sha256 = "0x64sg0kyc8bbsp75dpv8g2jfmpdldsshf9ni49jh6rgsnnqhpf8" - -["github.com/circonus-labs/circonus-gometrics"] - sumVersion = "v2.3.1+incompatible" - ["github.com/circonus-labs/circonus-gometrics".fetch] - type = "git" - url = "https://github.com/circonus-labs/circonus-gometrics" - rev = "9eb673b3d5f6bf1c932ae7596831eefb0c0c3c2f" - sha256 = "0s2wir711h0k2h8xsypgpzshccnx8jkwjfni7n32l7wd8yng9ngs" - -["github.com/circonus-labs/circonusllhist"] - sumVersion = "v0.1.3" - ["github.com/circonus-labs/circonusllhist".fetch] - type = "git" - url = "https://github.com/circonus-labs/circonusllhist" - rev = "87d4d00b35adeefe4911ece727838749e0fab113" - sha256 = "127js92p5gx84vfj3vdmf7nn6dmqmkrxg927z0jh91fdkipmmv3i" - -["github.com/clbanning/x2j"] - sumVersion = "v0.0.0-20191024224557-825249438eec" - ["github.com/clbanning/x2j".fetch] - type = "git" - url = "https://github.com/clbanning/x2j" - rev = "825249438eec392bc87b980fb635b336e496a888" - sha256 = "1khqy1m22vnyw0x24i4bwd37zvgzj25q139mh79bddj1rw5hf7hy" - -["github.com/client9/misspell"] - sumVersion = "v0.3.4" - ["github.com/client9/misspell".fetch] - type = "git" - url = "https://github.com/client9/misspell" - rev = "b90dc15cfd220ecf8bbc9043ecb928cef381f011" - sha256 = "1vwf33wsc4la25zk9nylpbp9px3svlmldkm0bha4hp56jws4q9cs" - -["github.com/cloudflare/cloudflare-go"] - sumVersion = "v0.10.2-0.20190916151808-a80f83b9add9" - ["github.com/cloudflare/cloudflare-go".fetch] - type = "git" - url = "https://github.com/cloudflare/cloudflare-go" - rev = "a80f83b9add9d67ca4098ccbf42cd865ebb36ffb" - sha256 = "07q34xpgw1p091v2mmf64s2lx1gi7wxn7mnzr9182sxa7xp0bj52" - -["github.com/cncf/udpa/go"] - sumVersion = "v0.0.0-20201120205902-5459f2c99403" - relPath = "go" - ["github.com/cncf/udpa/go".fetch] - type = "git" - url = "https://github.com/cncf/udpa" - rev = "5459f2c994033b0afed7e4a70ac7e90c90c1ffee" - sha256 = "0i3al193dsp91j7iywqrm6fr56y2sz51ci4vf19mb3j4n2x44gsi" - -["github.com/cncf/xds/go"] - sumVersion = "v0.0.0-20210312221358-fbca930ec8ed" - relPath = "go" - ["github.com/cncf/xds/go".fetch] - type = "git" - url = "https://github.com/cncf/xds" - rev = "fbca930ec8edc42e1a2b083dc59d0f6ec4946eb1" - sha256 = "16dlsms2k63570051ch1jb9yphrkqz61wdgs2l6zqaykhg13rjmh" - -["github.com/cockroachdb/datadriven"] - sumVersion = "v0.0.0-20190809214429-80d97fb3cbaa" - ["github.com/cockroachdb/datadriven".fetch] - type = "git" - url = "https://github.com/cockroachdb/datadriven" - rev = "80d97fb3cbaa752564320702f409fdb2ef3da0ef" - sha256 = "0rvavka9zhri6r50n8fy98247fl5vycb1hffjrhshsicjv1frmlp" - -["github.com/codahale/hdrhistogram"] - sumVersion = "v0.0.0-20161010025455-3a0bb77429bd" - ["github.com/codahale/hdrhistogram".fetch] - type = "git" - url = "https://github.com/codahale/hdrhistogram" - rev = "3a0bb77429bd3a61596f5e8a3172445844342120" - sha256 = "1zampgfjbxy192cbwdi7g86l1idxaam96d834wncnpfdwgh5kl57" - -["github.com/coinbase/rosetta-sdk-go"] - sumVersion = "v0.6.10" - ["github.com/coinbase/rosetta-sdk-go".fetch] - type = "git" - url = "https://github.com/coinbase/rosetta-sdk-go" - rev = "9ba330f0a51ab41c1c8738a040eb2b28894b82d9" - sha256 = "0idsqyxjdvb2j7h97g5jyr7nniphwcd8pjgw969fvrg08rjm7qr7" - -["github.com/confio/ics23/go"] - sumVersion = "v0.6.6" - relPath = "go" - ["github.com/confio/ics23/go".fetch] - type = "git" - url = "https://github.com/confio/ics23" - rev = "6cf2f712b5ecccf0a138c29a77b726d57bdaad51" - sha256 = "0r1vk5lvjfri57hd5dk75dfiyzz57qaljshw6sr80aj5v8krzxsn" - -["github.com/containerd/console"] - sumVersion = "v1.0.2" - ["github.com/containerd/console".fetch] - type = "git" - url = "https://github.com/containerd/console" - rev = "2f1e3d2b6afd18e8b2077816c711205a0b4d8769" - sha256 = "0rxwgq578hphs2ldx1gg6c9fq1qm8rgqfx3vgi2sbrsmxn6m2438" - -["github.com/containerd/continuity"] - sumVersion = "v0.1.0" - ["github.com/containerd/continuity".fetch] - type = "git" - url = "https://github.com/containerd/continuity" - rev = "bce1c3f9669b6f3e7f6656ee715b0b4d75fa64a6" - sha256 = "1h756l1xc31sc4zc1d3hmh64kl9qm5vpbbw0c93hrasn51ki96yz" - -["github.com/coreos/bbolt"] - sumVersion = "v1.3.2" - ["github.com/coreos/bbolt".fetch] - type = "git" - url = "https://github.com/coreos/bbolt" - rev = "63597a96ec0ad9e6d43c3fc81e809909e0237461" - sha256 = "13d5l6p6c5wvkr6vn9hkhz9c593qifn7fgx0hg4d6jcvg1y0bnm2" - -["github.com/coreos/etcd"] - sumVersion = "v3.3.13+incompatible" - ["github.com/coreos/etcd".fetch] - type = "git" - url = "https://github.com/coreos/etcd" - rev = "98d308426819d892e149fe45f6fd542464cb1f9d" - sha256 = "1kac4qfr83f2hdz35403f1ald05wc85vvhw79vxb431n61jvyaqy" - -["github.com/coreos/go-etcd"] - sumVersion = "v2.0.0+incompatible" - ["github.com/coreos/go-etcd".fetch] - type = "git" - url = "https://github.com/coreos/go-etcd" - rev = "f02171fbd43c7b9b53ce8679b03235a1ef3c7b12" - sha256 = "1xb34hzaa1lkbq5vkzy9vcz6gqwj7hp6cdbvyack2bf28dwn33jj" - -["github.com/coreos/go-semver"] - sumVersion = "v0.3.0" - ["github.com/coreos/go-semver".fetch] - type = "git" - url = "https://github.com/coreos/go-semver" - rev = "e214231b295a8ea9479f11b70b35d5acf3556d9b" - sha256 = "0770h1mpig2j5sbiha3abnwaw8p6dg9i87r8pc7cf6m4kwml3sc9" - -["github.com/coreos/go-systemd"] - sumVersion = "v0.0.0-20190620071333-e64a0ec8b42a" - ["github.com/coreos/go-systemd".fetch] - type = "git" - url = "https://github.com/coreos/go-systemd" - rev = "e64a0ec8b42a61e2a9801dc1d0abe539dea79197" - sha256 = "0jf705z62hy1230ryw9z3686g31v5yc16izcjzcasbawgv5c000v" - -["github.com/coreos/go-systemd/v22"] - sumVersion = "v22.3.2" - ["github.com/coreos/go-systemd/v22".fetch] - type = "git" - url = "https://github.com/coreos/go-systemd" - rev = "777e73a89cef78631ccaa97f53a9bae67e166186" - sha256 = "1ndi86b8va84ha93njqgafypz4di7yxfd5r5kf1r0s3y3ghcjajq" - -["github.com/coreos/pkg"] - sumVersion = "v0.0.0-20180928190104-399ea9e2e55f" - ["github.com/coreos/pkg".fetch] - type = "git" - url = "https://github.com/coreos/pkg" - rev = "399ea9e2e55f791b6e3d920860dbecb99c3692f0" - sha256 = "0nxbn0m7lr4dg0yrwnvlkfiyg3ndv8vdpssjx7b714nivpc6ar0y" - -["github.com/cosmos/cosmos-sdk"] - sumVersion = "v0.44.3" - ["github.com/cosmos/cosmos-sdk".fetch] - type = "git" - url = "https://github.com/cosmos/cosmos-sdk" - rev = "b75c29fc15d3320ec0c7596dbd7c787c48dccad8" - sha256 = "0ppzj5bzs5z1y1g8s49c8v7adqx9n7fm6kfad9sgr2wm0l1vpc0g" - -["github.com/cosmos/go-bip39"] - sumVersion = "v1.0.0" - ["github.com/cosmos/go-bip39".fetch] - type = "git" - url = "https://github.com/cosmos/go-bip39" - rev = "3027fe585f89a39da9b7389bd4e3482e056f6d3f" - sha256 = "0q063bsalxffq41l3f6xlr50xa2985liw6y5niiwnjysdc5rlva2" - -["github.com/cosmos/iavl"] - sumVersion = "v0.17.1" - ["github.com/cosmos/iavl".fetch] - type = "git" - url = "https://github.com/cosmos/iavl" - rev = "8e24bc87fc0702f0994ac3b2b55386235c3dd3cf" - sha256 = "1q5fbk4afkxxlgyj82xfxfmwzcpsaa4hwm431xl8b34xhpdglkdp" - -["github.com/cosmos/ibc-go/v2"] - sumVersion = "v2.0.0-rc0" - ["github.com/cosmos/ibc-go/v2".fetch] - type = "git" - url = "https://github.com/cosmos/ibc-go" - rev = "4e9752d10cecb9c39067b156e14b3797d0523afe" - sha256 = "1xxy3ppm8snac9gxxbbz1846s7hbwn27lck0aq5jc2ybbsmhdlhb" - -["github.com/cosmos/ledger-cosmos-go"] - sumVersion = "v0.11.1" - ["github.com/cosmos/ledger-cosmos-go".fetch] - type = "git" - url = "https://github.com/cosmos/ledger-cosmos-go" - rev = "c03f491cbf1740e5ec7919683019c2c84d9fbc10" - sha256 = "0c584nig16mz1i5w1pp741q1ymb1ln70kvxkv3l62rkdymbbwn6a" - -["github.com/cosmos/ledger-go"] - sumVersion = "v0.9.2" - ["github.com/cosmos/ledger-go".fetch] - type = "git" - url = "https://github.com/cosmos/ledger-go" - rev = "1c99b41f1877b58e3517ef93012cc76fe5cd335b" - sha256 = "10vnj13c8diq3bxvf2m46s8ifj4fj1iwsw5hg7i1h55h1v83x0ni" - -["github.com/cpuguy83/go-md2man"] - sumVersion = "v1.0.10" - ["github.com/cpuguy83/go-md2man".fetch] - type = "git" - url = "https://github.com/cpuguy83/go-md2man" - rev = "7762f7e404f8416dfa1d9bb6a8c192aa9acb4d19" - sha256 = "1bqkf2bvy1dns9zd24k81mh2p1zxsx2nhq5cj8dz2vgkv1xkh60i" - -["github.com/cpuguy83/go-md2man/v2"] - sumVersion = "v2.0.0" - ["github.com/cpuguy83/go-md2man/v2".fetch] - type = "git" - url = "https://github.com/cpuguy83/go-md2man" - rev = "f79a8a8ca69da163eee19ab442bedad7a35bba5a" - sha256 = "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv" - -["github.com/creack/pty"] - sumVersion = "v1.1.11" - ["github.com/creack/pty".fetch] - type = "git" - url = "https://github.com/creack/pty" - rev = "2a38352e8b4d7ab6c336eef107e42a55e72e7fbc" - sha256 = "0dwhch53vqxpnbiqvfa27cliabx9ma2m4dax4adlrz8rami4sakw" - -["github.com/cyphar/filepath-securejoin"] - sumVersion = "v0.2.2" - ["github.com/cyphar/filepath-securejoin".fetch] - type = "git" - url = "https://github.com/cyphar/filepath-securejoin" - rev = "a261ee33d7a517f054effbf451841abaafe3e0fd" - sha256 = "0id32zjb92wm569m29nfrzz5mw9z1glr3klayr6j134pp4h1sgq4" - -["github.com/daixiang0/gci"] - sumVersion = "v0.2.9" - ["github.com/daixiang0/gci".fetch] - type = "git" - url = "https://github.com/daixiang0/gci" - rev = "59beec6e2fe1fd299a96d9182071dbb529b936fc" - sha256 = "0pz4pi57m2lb2whh2iwxbgcxjd8d7mi6zw648l19hcw3g8wckkrp" - -["github.com/danieljoos/wincred"] - sumVersion = "v1.0.2" - ["github.com/danieljoos/wincred".fetch] - type = "git" - url = "https://github.com/danieljoos/wincred" - rev = "b892d337201d1400370ebf4fa919941c9ea222ee" - sha256 = "1ym8mygjrf3rw1qka9irw76b2yisr2l5pq2w581s40yldnbfq4lc" - -["github.com/davecgh/go-spew"] - sumVersion = "v1.1.1" - ["github.com/davecgh/go-spew".fetch] - type = "git" - url = "https://github.com/davecgh/go-spew" - rev = "8991bc29aa16c548c550c7ff78260e27b9ab7c73" - sha256 = "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y" - -["github.com/deckarep/golang-set"] - sumVersion = "v0.0.0-20180603214616-504e848d77ea" - ["github.com/deckarep/golang-set".fetch] - type = "git" - url = "https://github.com/deckarep/golang-set" - rev = "504e848d77ea4752b3057b8fb46da0e7f746ccf3" - sha256 = "0n0dgz82vvwpxh2fp3d9ciawzrwv0w3hsnkk4y7z64pxp27r4k7n" - -["github.com/decred/dcrd/lru"] - sumVersion = "v1.0.0" - relPath = "lru" - ["github.com/decred/dcrd/lru".fetch] - type = "git" - url = "https://github.com/decred/dcrd" - rev = "5c3e0d6454001c8d14fcf06be94381d93991aaea" - sha256 = "0m2mxrkbnr4dfan9ljxq9dd5hhqmpx5n9pd4hnwn5mlj4zgv018a" - -["github.com/denis-tingajkin/go-header"] - sumVersion = "v0.4.2" - ["github.com/denis-tingajkin/go-header".fetch] - type = "git" - url = "https://github.com/denis-tingajkin/go-header" - rev = "5c90e44d1198ad5015300e930829fe83a0899652" - sha256 = "1y6yzfy9xmga1k7y042hw48h1ygsjw1jd8m7fjs3r7ij1kcihr3k" - -["github.com/desertbit/timer"] - sumVersion = "v0.0.0-20180107155436-c41aec40b27f" - ["github.com/desertbit/timer".fetch] - type = "git" - url = "https://github.com/desertbit/timer" - rev = "c41aec40b27f0eeb2b94300fffcd624c69b02990" - sha256 = "1jsy04ga79xbdfn0xqzs7q8gyh2sz9jpfqdsb210m6188yscxck9" - -["github.com/dgraph-io/badger/v2"] - sumVersion = "v2.2007.2" - ["github.com/dgraph-io/badger/v2".fetch] - type = "git" - url = "https://github.com/dgraph-io/badger" - rev = "d5a25b83fbf4f3f61ff03a9202e36f5b75544426" - sha256 = "0cck8ap61bi56dv070cirkkl6fjavz05kwyxjv08lbfykhlpz3da" - -["github.com/dgraph-io/ristretto"] - sumVersion = "v0.0.3" - ["github.com/dgraph-io/ristretto".fetch] - type = "git" - url = "https://github.com/dgraph-io/ristretto" - rev = "bcb54d096f2303ce80960e125b5991ac4d6325c3" - sha256 = "1v29j6b0r87pf5dwsxi3rxa8yavkl3h79i63rbddfd42p2jyssyg" - -["github.com/dgrijalva/jwt-go"] - sumVersion = "v3.2.0+incompatible" - ["github.com/dgrijalva/jwt-go".fetch] - type = "git" - url = "https://github.com/dgrijalva/jwt-go" - rev = "06ea1031745cb8b3dab3f6a236daf2b0aa468b7e" - sha256 = "08m27vlms74pfy5z79w67f9lk9zkx6a9jd68k3c4msxy75ry36mp" - -["github.com/dgryski/go-farm"] - sumVersion = "v0.0.0-20200201041132-a6ae2369ad13" - ["github.com/dgryski/go-farm".fetch] - type = "git" - url = "https://github.com/dgryski/go-farm" - rev = "a6ae2369ad13dc757768086f0cb902728c7e03e5" - sha256 = "1qbz4a4fv3853ix974x02q1129kc4xxf0c92ib5sdpsq04zjbqv8" - -["github.com/dgryski/go-sip13"] - sumVersion = "v0.0.0-20181026042036-e10d5fee7954" - ["github.com/dgryski/go-sip13".fetch] - type = "git" - url = "https://github.com/dgryski/go-sip13" - rev = "e10d5fee79544bd84105c9329adcc7b745fd588c" - sha256 = "15fyibfas209ljz3f7g07kdmfbl3hhyd9n5n7aq5n5p9m5mn41d6" - -["github.com/dlclark/regexp2"] - sumVersion = "v1.2.0" - ["github.com/dlclark/regexp2".fetch] - type = "git" - url = "https://github.com/dlclark/regexp2" - rev = "92c702aa5812963ef9193a9624191932d44073d7" - sha256 = "011l1prsywvhhi0yc7qmpsca1cwavmawyyld5kjzi0ff9ghvj4ng" - -["github.com/docker/docker"] - sumVersion = "v1.4.2-0.20180625184442-8e610b2b55bf" - ["github.com/docker/docker".fetch] - type = "git" - url = "https://github.com/docker/docker" - rev = "8e610b2b55bfd1bfa9436ab110d311f5e8a74dcb" - sha256 = "00d27aj6c2vi9q0djy9pqk3h8fqp066vffqckil43qq1c5b83c1j" - -["github.com/docker/go-connections"] - sumVersion = "v0.4.0" - ["github.com/docker/go-connections".fetch] - type = "git" - url = "https://github.com/docker/go-connections" - rev = "7395e3f8aa162843a74ed6d48e79627d9792ac55" - sha256 = "0mv6f6b5nljc17dmwmc28hc0y11pqglz7x0d2mjrwdmfxf64hwqq" - -["github.com/docker/go-units"] - sumVersion = "v0.4.0" - ["github.com/docker/go-units".fetch] - type = "git" - url = "https://github.com/docker/go-units" - rev = "519db1ee28dcc9fd2474ae59fca29a810482bfb1" - sha256 = "0k8gja8ql4pqg5rzmqvka42vjfs6rzablak87whcnqba6qxpimvz" - -["github.com/dop251/goja"] - sumVersion = "v0.0.0-20200721192441-a695b0cdd498" - ["github.com/dop251/goja".fetch] - type = "git" - url = "https://github.com/dop251/goja" - rev = "a695b0cdd4987b22f979a6f4d4ea30689058441a" - sha256 = "1s9358a30gmmbizvavd977n1zyla46bpxb2ymmr6qmmixw8ry4zv" - -["github.com/dustin/go-humanize"] - sumVersion = "v1.0.0" - ["github.com/dustin/go-humanize".fetch] - type = "git" - url = "https://github.com/dustin/go-humanize" - rev = "9f541cc9db5d55bce703bd99987c9d5cb8eea45e" - sha256 = "1kqf1kavdyvjk7f8kx62pnm7fbypn9z1vbf8v2qdh3y7z7a0cbl3" - -["github.com/dvsekhvalnov/jose2go"] - sumVersion = "v0.0.0-20200901110807-248326c1351b" - ["github.com/dvsekhvalnov/jose2go".fetch] - type = "git" - url = "https://github.com/dvsekhvalnov/jose2go" - rev = "248326c1351b716b2820b01a49d53837bfd9ac59" - sha256 = "06zj4n96pa5lnx8pxjhn3vis01fjklhsdqbcbqdv9m4kc7qip27s" - -["github.com/dvyukov/go-fuzz"] - sumVersion = "v0.0.0-20200318091601-be3528f3a813" - ["github.com/dvyukov/go-fuzz".fetch] - type = "git" - url = "https://github.com/dvyukov/go-fuzz" - rev = "be3528f3a81351d8a438aed216130e1e7da39f7c" - sha256 = "1sxl62r8c13p4sm60c77mzcn6dlxbbk6c2nmic6j8z55dx4nlg1a" - -["github.com/eapache/go-resiliency"] - sumVersion = "v1.1.0" - ["github.com/eapache/go-resiliency".fetch] - type = "git" - url = "https://github.com/eapache/go-resiliency" - rev = "ea41b0fad31007accc7f806884dcdf3da98b79ce" - sha256 = "1zmgw3c4w5r6m2r340n4jc5l5ll3m3nbszqrmrgbqc2xixxyk2gx" - -["github.com/eapache/go-xerial-snappy"] - sumVersion = "v0.0.0-20180814174437-776d5712da21" - ["github.com/eapache/go-xerial-snappy".fetch] - type = "git" - url = "https://github.com/eapache/go-xerial-snappy" - rev = "776d5712da21bc4762676d614db1d8a64f4238b0" - sha256 = "0ncc41dv7xwb1znyzmzh7cvs6j5fzz0f1n8h1v3grl9ma6s1si9d" - -["github.com/eapache/queue"] - sumVersion = "v1.1.0" - ["github.com/eapache/queue".fetch] - type = "git" - url = "https://github.com/eapache/queue" - rev = "44cc805cf13205b55f69e14bcb69867d1ae92f98" - sha256 = "07dp54n94gn3gsvdcki56yqh7py7wqqigxbamhxwgbr05n61fqyg" - -["github.com/edsrzf/mmap-go"] - sumVersion = "v1.0.0" - ["github.com/edsrzf/mmap-go".fetch] - type = "git" - url = "https://github.com/edsrzf/mmap-go" - rev = "188cc3b666ba704534fa4f96e9e61f21f1e1ba7c" - sha256 = "0ajmkk5cj6xmbngx3nhar7672i2vrkwpnbv1f26i5p4f5aydhl4k" - -["github.com/emirpasic/gods"] - sumVersion = "v1.12.0" - ["github.com/emirpasic/gods".fetch] - type = "git" - url = "https://github.com/emirpasic/gods" - rev = "1615341f118ae12f353cc8a983f35b584342c9b3" - sha256 = "0i5qqq7ajvw3mikr95zl9rsnfsjanzwpqqs6kzzplsfgsifybar1" - -["github.com/enigmampc/btcutil"] - sumVersion = "v1.0.3-0.20200723161021-e2fb6adb2a25" - ["github.com/enigmampc/btcutil".fetch] - type = "git" - url = "https://github.com/enigmampc/btcutil" - rev = "e2fb6adb2a25f868283c4f243c873ad6b4894974" - sha256 = "0r2gf20acxnrcrch57hvgg8qp8ic96w6bx0j080cfya04xib3dxv" - -["github.com/envoyproxy/go-control-plane"] - sumVersion = "v0.9.9-0.20210512163311-63b5d3c536b0" - ["github.com/envoyproxy/go-control-plane".fetch] - type = "git" - url = "https://github.com/envoyproxy/go-control-plane" - rev = "63b5d3c536b0a97ec2bbb2e74de7adae1ba1dfee" - sha256 = "1zb462sarpyjd4jxgiv9mqlmzz2rbjfh2r9xb7z4nbdkhpg1wh1j" - -["github.com/envoyproxy/protoc-gen-validate"] - sumVersion = "v0.1.0" - ["github.com/envoyproxy/protoc-gen-validate".fetch] - type = "git" - url = "https://github.com/envoyproxy/protoc-gen-validate" - rev = "9eff07ddfcb4001aa1aab280648153f46e1a8ddc" - sha256 = "0kxd3wwh3xwqk0r684hsy281xq4y71cd11d4q2hspcjbnlbwh7cy" - -["github.com/esimonov/ifshort"] - sumVersion = "v1.0.2" - ["github.com/esimonov/ifshort".fetch] - type = "git" - url = "https://github.com/esimonov/ifshort" - rev = "c1bcdfa3aa300993b7bb252edfa1c126fe303d09" - sha256 = "1kqq3js0rhhdircwamyr0b6l7b01flgvj4ny5x4g51vz8m1z36jj" - -["github.com/ethereum/go-ethereum"] - sumVersion = "v1.9.25" - ["github.com/ethereum/go-ethereum".fetch] - type = "git" - url = "https://github.com/ethereum/go-ethereum" - rev = "e7872729012a4871397307b12cc3f4772ffcbec6" - sha256 = "1gilb29gcjw8x3s9krbq9cf6kzvq5cvkad4wc20g91a3i2hd7daf" - -["github.com/ettle/strcase"] - sumVersion = "v0.1.1" - ["github.com/ettle/strcase".fetch] - type = "git" - url = "https://github.com/ettle/strcase" - rev = "693d0d408811c431fde27311cd013dcf5061676b" - sha256 = "0g1d52dfh5nqs9ikjbd9vgrs554s3nsb6df9dllggikya46a1p8l" - -["github.com/facebookgo/ensure"] - sumVersion = "v0.0.0-20160127193407-b4ab57deab51" - ["github.com/facebookgo/ensure".fetch] - type = "git" - url = "https://github.com/facebookgo/ensure" - rev = "b4ab57deab51ee655ae4bd85281f0715a068016d" - sha256 = "19icavc3sg0mdz8151q3vp2vn3ipq53mnb9h9n57w32amyyszl4d" - -["github.com/facebookgo/stack"] - sumVersion = "v0.0.0-20160209184415-751773369052" - ["github.com/facebookgo/stack".fetch] - type = "git" - url = "https://github.com/facebookgo/stack" - rev = "751773369052141c013c6e827a71e8f35c07879c" - sha256 = "07yr05mz7h007ldpij90zjflwgixp148sbyrdlh1fj5bikr4p8m3" - -["github.com/facebookgo/subset"] - sumVersion = "v0.0.0-20150612182917-8dac2c3c4870" - ["github.com/facebookgo/subset".fetch] - type = "git" - url = "https://github.com/facebookgo/subset" - rev = "8dac2c3c48703541e481feddf22975953d4ff842" - sha256 = "0kyc2m5wxjzj4fwspybgn1mgjzhbdfnadpwy9mrw1s05bh21rgai" - -["github.com/fatih/color"] - sumVersion = "v1.12.0" - ["github.com/fatih/color".fetch] - type = "git" - url = "https://github.com/fatih/color" - rev = "cf452350f542986d689fb53db88dbb0212f141db" - sha256 = "0r6r4vh9aiz8ny2whvpq288x8shkyvpj38g5pqw5840ryq38chig" - -["github.com/fatih/structtag"] - sumVersion = "v1.2.0" - ["github.com/fatih/structtag".fetch] - type = "git" - url = "https://github.com/fatih/structtag" - rev = "72c94723f1e6825195e0d8e9857fca28cd23d835" - sha256 = "09a9pycvkf384v5f47ff4q33bjbzpx6kbkn23za1gcwc96466sk3" - -["github.com/felixge/httpsnoop"] - sumVersion = "v1.0.1" - ["github.com/felixge/httpsnoop".fetch] - type = "git" - url = "https://github.com/felixge/httpsnoop" - rev = "33ec42cfe005395fb4cc4b296781f65d7ffef2c3" - sha256 = "0ncd8lar5zxiwjhsp315s4hsl4bhnm271h49jhyxc66r5yffgmac" - -["github.com/fjl/memsize"] - sumVersion = "v0.0.0-20180418122429-ca190fb6ffbc" - ["github.com/fjl/memsize".fetch] - type = "git" - url = "https://github.com/fjl/memsize" - rev = "ca190fb6ffbc076ff49197b7168a760f30182d2e" - sha256 = "02vz4mfsajpsjk9nwrb6djs5zd9f70iqxf6z3x7h7kq5lqc2wfjc" - -["github.com/flynn/go-shlex"] - sumVersion = "v0.0.0-20150515145356-3f9db97f8568" - ["github.com/flynn/go-shlex".fetch] - type = "git" - url = "https://github.com/flynn/go-shlex" - rev = "3f9db97f856818214da2e1057f8ad84803971cff" - sha256 = "1j743lysygkpa2s2gii2xr32j7bxgc15zv4113b0q9jhn676ysia" - -["github.com/fortytw2/leaktest"] - sumVersion = "v1.3.0" - ["github.com/fortytw2/leaktest".fetch] - type = "git" - url = "https://github.com/fortytw2/leaktest" - rev = "9a23578d06a26ec1b47bfc8965bf5e7011df8bd6" - sha256 = "0487zghyxqzk6zdbhd2j074pcc2l15l4sfg5clrjqwfbql7519wx" - -["github.com/franela/goblin"] - sumVersion = "v0.0.0-20200105215937-c9ffbefa60db" - ["github.com/franela/goblin".fetch] - type = "git" - url = "https://github.com/franela/goblin" - rev = "c9ffbefa60dbcc40777294734ec3664f35a8c838" - sha256 = "0qdhg6i4bcf6inmzq2dbdv0r0c7clw1vd3n2zs4896ig0aws6vff" - -["github.com/franela/goreq"] - sumVersion = "v0.0.0-20171204163338-bcd34c9993f8" - ["github.com/franela/goreq".fetch] - type = "git" - url = "https://github.com/franela/goreq" - rev = "bcd34c9993f899273c74baaa95e15386cd97b6e7" - sha256 = "055a20nc5f1blk2swiwpwqpxd3z495ms1qr6a7cbbss1w3a7a7sb" - -["github.com/frankban/quicktest"] - sumVersion = "v1.11.3" - ["github.com/frankban/quicktest".fetch] - type = "git" - url = "https://github.com/frankban/quicktest" - rev = "e7d1f0b53af1e9c9cf66924bc310190b1db8c339" - sha256 = "0d5njmwkfq2809vlimnlvy8ir6kln0c4cgdwr680fwsclpbr43qs" - -["github.com/fsnotify/fsnotify"] - sumVersion = "v1.4.9" - ["github.com/fsnotify/fsnotify".fetch] - type = "git" - url = "https://github.com/fsnotify/fsnotify" - rev = "45d7d09e39ef4ac08d493309fa031790c15bfe8a" - sha256 = "1i1r72knpbfwwql9frn9bqc3nhfc2ai5m6qllcyr6wban62lr40x" - -["github.com/fullstorydev/grpcurl"] - sumVersion = "v1.6.0" - ["github.com/fullstorydev/grpcurl".fetch] - type = "git" - url = "https://github.com/fullstorydev/grpcurl" - rev = "2108c8f0b319c4182d718308ad3d6eb669a20a35" - sha256 = "03x9yj8c39vdwjk31nghk8j3h80bi8a1ns5fn2aglygkwnhsz33l" - -["github.com/fzipp/gocyclo"] - sumVersion = "v0.3.1" - ["github.com/fzipp/gocyclo".fetch] - type = "git" - url = "https://github.com/fzipp/gocyclo" - rev = "39f24b305784dc1d91c39229afd889a161000c9b" - sha256 = "1rimdrhmy6nkzh7ydpx6139hh9ml6rdqg5gvkpy2l1x9mhanvan0" - -["github.com/gballet/go-libpcsclite"] - sumVersion = "v0.0.0-20190607065134-2772fd86a8ff" - ["github.com/gballet/go-libpcsclite".fetch] - type = "git" - url = "https://github.com/gballet/go-libpcsclite" - rev = "2772fd86a8ff4306d2749f610a386bfee9e0d727" - sha256 = "1j7389jcjdsb73c30cial688m3r2wypspn8zhy5mvm3c9xqnigin" - -["github.com/ghodss/yaml"] - sumVersion = "v1.0.0" - ["github.com/ghodss/yaml".fetch] - type = "git" - url = "https://github.com/ghodss/yaml" - rev = "0ca9ea5df5451ffdf184b4428c902747c2c11cd7" - sha256 = "0skwmimpy7hlh7pva2slpcplnm912rp3igs98xnqmn859kwa5v8g" - -["github.com/gin-contrib/sse"] - sumVersion = "v0.1.0" - ["github.com/gin-contrib/sse".fetch] - type = "git" - url = "https://github.com/gin-contrib/sse" - rev = "54d8467d122d380a14768b6b4e5cd7ca4755938f" - sha256 = "072nq91a65n5xvwslqjyvydfd0mfpnvb3vwjyfvmzm1ym96wr1nd" - -["github.com/gin-gonic/gin"] - sumVersion = "v1.7.0" - ["github.com/gin-gonic/gin".fetch] - type = "git" - url = "https://github.com/gin-gonic/gin" - rev = "d496f64540b6707602de50ab57aeea8ff4080b74" - sha256 = "0zjygwmd6718rar3rwi947b6gh53jp0mv115m336i4b1bknmajcq" - -["github.com/gliderlabs/ssh"] - sumVersion = "v0.2.2" - ["github.com/gliderlabs/ssh".fetch] - type = "git" - url = "https://github.com/gliderlabs/ssh" - rev = "5b6cc7030f17095c0cf23bb063b0bfe824fe5f8b" - sha256 = "1gzbyhs8i08jz2nm1460lv35wlmi415k285mpnrzhwm8qhsy0h0x" - -["github.com/go-critic/go-critic"] - sumVersion = "v0.5.6" - ["github.com/go-critic/go-critic".fetch] - type = "git" - url = "https://github.com/go-critic/go-critic" - rev = "3d8144d7f9920a1f186297e8c53222d2ad71ee8a" - sha256 = "1qqinwy88rr2i4rypvpclcp73dg2602fcx2qh9cr83wnsf7d6a3r" - -["github.com/go-git/gcfg"] - sumVersion = "v1.5.0" - ["github.com/go-git/gcfg".fetch] - type = "git" - url = "https://github.com/go-git/gcfg" - rev = "22f18f9a74d34e3b1a7d59cfa33043bc50ebe376" - sha256 = "1lb14z4j35pwz2b2rbykkpsq515spwbndb00gwn2xlrzn949xb83" - -["github.com/go-git/go-billy/v5"] - sumVersion = "v5.3.1" - ["github.com/go-git/go-billy/v5".fetch] - type = "git" - url = "https://github.com/go-git/go-billy" - rev = "3bf3fe5b381bcfa471f7f6054c0cf2309c35e651" - sha256 = "0x5z649f47lwsqw8578a5hvgjaxp0zz6cg184s0n68xdqhza3m2i" - -["github.com/go-git/go-git-fixtures/v4"] - sumVersion = "v4.2.1" - ["github.com/go-git/go-git-fixtures/v4".fetch] - type = "git" - url = "https://github.com/go-git/go-git-fixtures" - rev = "8a402b8960fdffae9c2398e21c391ac17ba4e433" - sha256 = "0ciss75m8hal8fykh9cnvmbr06wls9bikrjpcpfqsdijriakfchx" - -["github.com/go-git/go-git/v5"] - sumVersion = "v5.4.2" - ["github.com/go-git/go-git/v5".fetch] - type = "git" - url = "https://github.com/go-git/go-git" - rev = "da810275bf682d29a530ed819aff175f47bd7634" - sha256 = "08kdknkrh9qks8qykmd1hmc573cb6qbb4b10f57k3kik4ygq2frj" - -["github.com/go-gl/glfw"] - sumVersion = "v0.0.0-20190409004039-e6da0acd62b1" - ["github.com/go-gl/glfw".fetch] - type = "git" - url = "https://github.com/go-gl/glfw" - rev = "e6da0acd62b1b57ee2799d4d0a76a7d4514dc5bc" - sha256 = "0prvx5r7q8yrhqvnwibv4xz3dayjbq36yajzqvh0z4lqsh4hyhch" - -["github.com/go-gl/glfw/v3.3/glfw"] - sumVersion = "v0.0.0-20200222043503-6f7a984d4dc4" - relPath = "v3.3/glfw" - ["github.com/go-gl/glfw/v3.3/glfw".fetch] - type = "git" - url = "https://github.com/go-gl/glfw" - rev = "6f7a984d4dc470c3f197229ad1991ae9e211bba2" - sha256 = "1nyv7h08qf4dp8w9pmcnrc6vv9bkwj8fil6pz0mkbss5hf4i8xcq" - -["github.com/go-kit/kit"] - sumVersion = "v0.10.0" - ["github.com/go-kit/kit".fetch] - type = "git" - url = "https://github.com/go-kit/kit" - rev = "cc938d52e0cdf4c811ab203f428fcd06f9d9a148" - sha256 = "1cqlrjf90b5pg6sj4nh0qz5wplnsjmcdgrvs6wfdjy5p71f17msa" - -["github.com/go-kit/log"] - sumVersion = "v0.1.0" - ["github.com/go-kit/log".fetch] - type = "git" - url = "https://github.com/go-kit/log" - rev = "63376a29a92260f7b256eedf2fae39e28161114d" - sha256 = "1giv2pdswp02zk82rqfda2qpazqs4z5agnnfxxasghlsiry170r1" - -["github.com/go-logfmt/logfmt"] - sumVersion = "v0.5.0" - ["github.com/go-logfmt/logfmt".fetch] - type = "git" - url = "https://github.com/go-logfmt/logfmt" - rev = "3be5f6aae7db841d31dc5e1b3bb7b4cff19200b3" - sha256 = "0mcvgimnf6a15hhpmmv42kzbsn618f0zi2j3np49xkq1113d7yyj" - -["github.com/go-ole/go-ole"] - sumVersion = "v1.2.5" - ["github.com/go-ole/go-ole".fetch] - type = "git" - url = "https://github.com/go-ole/go-ole" - rev = "9f1c1d07a2d46919f666f69f6a324bacba498a6a" - sha256 = "1561h2srxgp4kx7l4q2dsvsh47h8k8ps3xnwjzg76yjvgfsqrlnw" - -["github.com/go-playground/assert/v2"] - sumVersion = "v2.0.1" - ["github.com/go-playground/assert/v2".fetch] - type = "git" - url = "https://github.com/go-playground/assert" - rev = "8eb943fbae8448cf47383208d8d0c396e26011a9" - sha256 = "1cl9c4s405zddzrj36hhs0a18g02zscdl46fyipp6k91mhvai8wz" - -["github.com/go-playground/locales"] - sumVersion = "v0.13.0" - ["github.com/go-playground/locales".fetch] - type = "git" - url = "https://github.com/go-playground/locales" - rev = "9f105231d3a5f6877a2bf8321dfa15ea6f844b1b" - sha256 = "0qydcpkvss3mf8mk3xzg6a34n8i69aydrigcl2apifrkx72jw7pf" - -["github.com/go-playground/universal-translator"] - sumVersion = "v0.17.0" - ["github.com/go-playground/universal-translator".fetch] - type = "git" - url = "https://github.com/go-playground/universal-translator" - rev = "f87b1403479a348651dbf5f07f5cc6e5fcf07008" - sha256 = "1zdiaisb32iv4x93cpbqrgx8ll7sxh4hcd2iibpswy4bwvjbjlz6" - -["github.com/go-playground/validator/v10"] - sumVersion = "v10.4.1" - ["github.com/go-playground/validator/v10".fetch] - type = "git" - url = "https://github.com/go-playground/validator" - rev = "456221b630452990f72c0f13179e5f2ae728a723" - sha256 = "0p4gs2wqa0wzdblhykk0pxrxmvl347hnjd5ws4nfh7bzn4kdnp11" - -["github.com/go-redis/redis"] - sumVersion = "v6.15.8+incompatible" - ["github.com/go-redis/redis".fetch] - type = "git" - url = "https://github.com/go-redis/redis" - rev = "2aca83490d09584301390a787777fbe5a0fc4a96" - sha256 = "1da7rs6jrr394d6kicwhncznaiwkm3dlipmbnf6a33qlv8ywnf5z" - -["github.com/go-sourcemap/sourcemap"] - sumVersion = "v2.1.2+incompatible" - ["github.com/go-sourcemap/sourcemap".fetch] - type = "git" - url = "https://github.com/go-sourcemap/sourcemap" - rev = "b019cc30c1eaa584753491b0d8f8c1534bf1eb44" - sha256 = "03k44fdrnknba05f7cd58lq4rzk7jdpiqksmc0wxrdzwschrbgw8" - -["github.com/go-sql-driver/mysql"] - sumVersion = "v1.5.0" - ["github.com/go-sql-driver/mysql".fetch] - type = "git" - url = "https://github.com/go-sql-driver/mysql" - rev = "17ef3dd9d98b69acec3e85878995ada9533a9370" - sha256 = "11x0m9yf3kdnf6981182r824psgxwfaqhn3x3in4yiidp0w0hk3v" - -["github.com/go-stack/stack"] - sumVersion = "v1.8.0" - ["github.com/go-stack/stack".fetch] - type = "git" - url = "https://github.com/go-stack/stack" - rev = "2fee6af1a9795aafbe0253a0cfbdf668e1fb8a9a" - sha256 = "0wk25751ryyvxclyp8jdk5c3ar0cmfr8lrjb66qbg4808x66b96v" - -["github.com/go-task/slim-sprig"] - sumVersion = "v0.0.0-20210107165309-348f09dbbbc0" - ["github.com/go-task/slim-sprig".fetch] - type = "git" - url = "https://github.com/go-task/slim-sprig" - rev = "348f09dbbbc0ff8b922a311da7a90cd014b69aa3" - sha256 = "16i1w4sm1h8wd132gdaq1z0asj9nc36zs8b3q9jy5kcbjzidl34f" - -["github.com/go-toolsmith/astcast"] - sumVersion = "v1.0.0" - ["github.com/go-toolsmith/astcast".fetch] - type = "git" - url = "https://github.com/go-toolsmith/astcast" - rev = "a6cb19f07b66b859a53f3f2be6e4c3bba892db7e" - sha256 = "1kwxrg0kvmp3900wx2vss8d07cfs31x3rw1gdyw230gmplp7aisx" - -["github.com/go-toolsmith/astcopy"] - sumVersion = "v1.0.0" - ["github.com/go-toolsmith/astcopy".fetch] - type = "git" - url = "https://github.com/go-toolsmith/astcopy" - rev = "245af3020944a15e09072c8ad3883c1451d1fdef" - sha256 = "0r9bx913gn5r8xnqyq0wvgxa9ffznpw6rc5mvbv99cq1slndp1y1" - -["github.com/go-toolsmith/astequal"] - sumVersion = "v1.0.0" - ["github.com/go-toolsmith/astequal".fetch] - type = "git" - url = "https://github.com/go-toolsmith/astequal" - rev = "dcb477bfacd6e00a13c6d63bfc73db28dd343160" - sha256 = "03rpz2pvg70yadlyj0745mbzg3hjzkfhxc9rzs6d07w489bp48q6" - -["github.com/go-toolsmith/astfmt"] - sumVersion = "v1.0.0" - ["github.com/go-toolsmith/astfmt".fetch] - type = "git" - url = "https://github.com/go-toolsmith/astfmt" - rev = "0d74c731079884bda287cf8df9ce7b92e688af8c" - sha256 = "0n4vbmy3fya8vi0s1qc7nbq928ff293idzps09pjfvbjn0184j4k" - -["github.com/go-toolsmith/astinfo"] - sumVersion = "v0.0.0-20180906194353-9809ff7efb21" - ["github.com/go-toolsmith/astinfo".fetch] - type = "git" - url = "https://github.com/go-toolsmith/astinfo" - rev = "9809ff7efb211e704a852623a50258071168e9bd" - sha256 = "14vkdn9q84ymfziabpk06729d7q9dc1b6ql3b9313bqwbyjf2pby" - -["github.com/go-toolsmith/astp"] - sumVersion = "v1.0.0" - ["github.com/go-toolsmith/astp".fetch] - type = "git" - url = "https://github.com/go-toolsmith/astp" - rev = "6373270dee65bfb0479f2acd16d4c8e9d5db13f8" - sha256 = "19ycnp2g0vr59wrg01dc29333gizdpdhb01dq5wp6rhihqcrh1ga" - -["github.com/go-toolsmith/pkgload"] - sumVersion = "v1.0.0" - ["github.com/go-toolsmith/pkgload".fetch] - type = "git" - url = "https://github.com/go-toolsmith/pkgload" - rev = "1759eb21c731bfa0dc81091556b35584f07d49e8" - sha256 = "0hgwaqn8mf1pqn1plchjqripa8xn5g7z61qpby59f74y9rj95dnh" - -["github.com/go-toolsmith/strparse"] - sumVersion = "v1.0.0" - ["github.com/go-toolsmith/strparse".fetch] - type = "git" - url = "https://github.com/go-toolsmith/strparse" - rev = "830b6daa1241714c12a9b9a4a56849fe2f93aedc" - sha256 = "1lxglj4gcw62gp83qm9n1qj2yyam4wb7phx6y8zfkh6wv4chwzw9" - -["github.com/go-toolsmith/typep"] - sumVersion = "v1.0.2" - ["github.com/go-toolsmith/typep".fetch] - type = "git" - url = "https://github.com/go-toolsmith/typep" - rev = "14dc03ca05da56f81516643e3ab22095f519aec4" - sha256 = "0gmrvxw9jlwj55kwv22qwbr6f4l54d1766hsmx1n8y03qz5wk7p1" - -["github.com/go-xmlfmt/xmlfmt"] - sumVersion = "v0.0.0-20191208150333-d5b6f63a941b" - ["github.com/go-xmlfmt/xmlfmt".fetch] - type = "git" - url = "https://github.com/go-xmlfmt/xmlfmt" - rev = "d5b6f63a941b0964ef2778c7ac69dfd6b3ae231d" - sha256 = "1gh2lqcfqx53ksa9rzzpbr142zcxg9zycf9ifjnlbqiddjcpy63a" - -["github.com/gobwas/glob"] - sumVersion = "v0.2.3" - ["github.com/gobwas/glob".fetch] - type = "git" - url = "https://github.com/gobwas/glob" - rev = "5ccd90ef52e1e632236f7326478d4faa74f99438" - sha256 = "0jxk1x806zn5x86342s72dq2qy64ksb3zrvrlgir2avjhwb18n6z" - -["github.com/gobwas/httphead"] - sumVersion = "v0.0.0-20180130184737-2c6c146eadee" - ["github.com/gobwas/httphead".fetch] - type = "git" - url = "https://github.com/gobwas/httphead" - rev = "2c6c146eadee0b69f856f87e3e9f1d0cd6aad2f5" - sha256 = "0j7nlrf79cafl8ap69ri2c7v3psr2y133cr2wn735z7yn3dz3kss" - -["github.com/gobwas/pool"] - sumVersion = "v0.2.0" - ["github.com/gobwas/pool".fetch] - type = "git" - url = "https://github.com/gobwas/pool" - rev = "fa3125c39d7eca32e1387bb69b1b38dcb31b1e0b" - sha256 = "1avpa8c75j1y4hs7awazrjjy7w0pjfw80l424ddn5zyizvh7s67i" - -["github.com/gobwas/ws"] - sumVersion = "v1.0.2" - ["github.com/gobwas/ws".fetch] - type = "git" - url = "https://github.com/gobwas/ws" - rev = "05baaea2bbcfe8963301c62d9931c882d59595cd" - sha256 = "070mfcjbfb40bglc9aw9zjvd4jb1hp3l1s12ww6mjlwbjcg0mm9s" - -["github.com/godbus/dbus"] - sumVersion = "v0.0.0-20190726142602-4481cbc300e2" - ["github.com/godbus/dbus".fetch] - type = "git" - url = "https://github.com/godbus/dbus" - rev = "4481cbc300e2df0c0b3cecc18b6c16c6c0bb885d" - sha256 = "0h0cl1r136g0kxbw3i7ggb9mhavpi1yr7d7312iwhkxm93dxkphg" - -["github.com/godbus/dbus/v5"] - sumVersion = "v5.0.4" - ["github.com/godbus/dbus/v5".fetch] - type = "git" - url = "https://github.com/godbus/dbus" - rev = "c88335c0b1d28a30e7fc76d526a06154b85e5d97" - sha256 = "0znax8kskb5gmp5fj75w56bc9p7b22wrdswzlh4d04sprlc471yi" - -["github.com/gofrs/flock"] - sumVersion = "v0.8.1" - ["github.com/gofrs/flock".fetch] - type = "git" - url = "https://github.com/gofrs/flock" - rev = "6f010d1acea74a32f2f2066bfe324c08bbee30e3" - sha256 = "1mni91ivw277ib3499b58nsyzyz0a239r7b9hvnkiy1i6qkcjvd6" - -["github.com/gogo/gateway"] - sumVersion = "v1.1.0" - ["github.com/gogo/gateway".fetch] - type = "git" - url = "https://github.com/gogo/gateway" - rev = "817b4cf527e834d7d563b7329355c45801d5e02d" - sha256 = "1jj7vr3sdk7yz8jl1kzv8473pkhd388f95byc8pdwrh6y7fh0xrq" - -["github.com/gogo/googleapis"] - sumVersion = "v1.1.0" - ["github.com/gogo/googleapis".fetch] - type = "git" - url = "https://github.com/gogo/googleapis" - rev = "8558fb44d2f1fc223118afc694129d2c2d2924d1" - sha256 = "0gkdk3k2wc0l8650s0k29kc01bi8nf14h741phmcsbi6li9y5sk1" - -["github.com/gogo/protobuf"] - sumVersion = "v1.3.2-alpha.regen.4" - vendorPath = "github.com/regen-network/protobuf" - ["github.com/gogo/protobuf".fetch] - type = "git" - url = "https://github.com/regen-network/protobuf" - rev = "28db94a3930aedfea44b6d508cf238065e21b497" - sha256 = "1y3bv0fhxwzb1axba0szvhhdz7rljfz8kgff6n9943v1m0bnpavl" - -["github.com/golang/glog"] - sumVersion = "v0.0.0-20160126235308-23def4e6c14b" - ["github.com/golang/glog".fetch] - type = "git" - url = "https://github.com/golang/glog" - rev = "23def4e6c14b4da8ac2ed8007337bc5eb5007998" - sha256 = "0jb2834rw5sykfr937fxi8hxi2zy80sj2bdn9b3jb4b26ksqng30" - -["github.com/golang/groupcache"] - sumVersion = "v0.0.0-20200121045136-8c9f03a8e57e" - ["github.com/golang/groupcache".fetch] - type = "git" - url = "https://github.com/golang/groupcache" - rev = "8c9f03a8e57eb486e42badaed3fb287da51807ba" - sha256 = "0vjjr79r32icjzlb05wn02k59av7jx0rn1jijml8r4whlg7dnkfh" - -["github.com/golang/mock"] - sumVersion = "v1.6.0" - ["github.com/golang/mock".fetch] - type = "git" - url = "https://github.com/golang/mock" - rev = "aba2ff9a6844d5e3289e8472d3217d5b3090f083" - sha256 = "1hara8j0x431njjhqxfrg1png7xa1gbrpwza6ya4mwlx76hppap4" - -["github.com/golang/protobuf"] - sumVersion = "v1.5.2" - ["github.com/golang/protobuf".fetch] - type = "git" - url = "https://github.com/golang/protobuf" - rev = "ae97035608a719c7a1c1c41bed0ae0744bdb0c6f" - sha256 = "1mh5fyim42dn821nsd3afnmgscrzzhn3h8rag635d2jnr23r1zhk" - -["github.com/golang/snappy"] - sumVersion = "v0.0.3-0.20201103224600-674baa8c7fc3" - ["github.com/golang/snappy".fetch] - type = "git" - url = "https://github.com/golang/snappy" - rev = "674baa8c7fc30da5df3074a459494a7e6b427dff" - sha256 = "1dc8sdca0nrqb8wri91mi2xcjm16wyawm4y0fwc5gp24ahjbrg7g" - -["github.com/golangci/check"] - sumVersion = "v0.0.0-20180506172741-cfe4005ccda2" - ["github.com/golangci/check".fetch] - type = "git" - url = "https://github.com/golangci/check" - rev = "cfe4005ccda277a820149d44d6ededc400cc99a2" - sha256 = "0l0kpg6hg1vby0blhfmvzs7giphiwssrbgjg7kzkn18ggmagxykh" - -["github.com/golangci/dupl"] - sumVersion = "v0.0.0-20180902072040-3e9179ac440a" - ["github.com/golangci/dupl".fetch] - type = "git" - url = "https://github.com/golangci/dupl" - rev = "3e9179ac440a0386ac7cc9a085fc44397c6b9bbc" - sha256 = "1p5cfj5iykn17q0qq9115szm7kr96zx13kj74mdycxgzjgysxr7l" - -["github.com/golangci/go-misc"] - sumVersion = "v0.0.0-20180628070357-927a3d87b613" - ["github.com/golangci/go-misc".fetch] - type = "git" - url = "https://github.com/golangci/go-misc" - rev = "927a3d87b613e9f6f0fb7ef8bb8de8b83c30a5a2" - sha256 = "0207nw3pkf2nfpz621vlyngslh3sybdk4s6vsl45zwycrml6vb6b" - -["github.com/golangci/gofmt"] - sumVersion = "v0.0.0-20190930125516-244bba706f1a" - ["github.com/golangci/gofmt".fetch] - type = "git" - url = "https://github.com/golangci/gofmt" - rev = "244bba706f1af52a02a156282f7473162611fba1" - sha256 = "09x9gh6vqkzn9asm2ds87x6lx2hqbcpn9669czfgp71m39y7qik8" - -["github.com/golangci/golangci-lint"] - sumVersion = "v1.42.1" - ["github.com/golangci/golangci-lint".fetch] - type = "git" - url = "https://github.com/golangci/golangci-lint" - rev = "54f4301ddfc884a7eac5b6ebf68868d6078279d3" - sha256 = "0yihxbqdh3hjl5anr1fdn93c3jbhgyfv5xr6z2ipyxi8ms66a6ln" - -["github.com/golangci/lint-1"] - sumVersion = "v0.0.0-20191013205115-297bf364a8e0" - ["github.com/golangci/lint-1".fetch] - type = "git" - url = "https://github.com/golangci/lint-1" - rev = "297bf364a8e08e6077dc53d696253160314cf7b8" - sha256 = "15paiv9mbgkl3s8g0ld12dh33q5d59x847bqkhl7mg85alz8vsxc" - -["github.com/golangci/maligned"] - sumVersion = "v0.0.0-20180506175553-b1d89398deca" - ["github.com/golangci/maligned".fetch] - type = "git" - url = "https://github.com/golangci/maligned" - rev = "b1d89398deca2fd3f8578e5a9551e819bd01ca5f" - sha256 = "05l2lim7p0as3js5v4yz46xjnh2k2zcgy69wl472gr9cg1bkxgvq" - -["github.com/golangci/misspell"] - sumVersion = "v0.3.5" - ["github.com/golangci/misspell".fetch] - type = "git" - url = "https://github.com/golangci/misspell" - rev = "950f5d19e77066a2353d9a22e89f8f889d1d7012" - sha256 = "0aw65fck7ras852ipcbc559g0xiay3rib6qm68hy821nkgs0yala" - -["github.com/golangci/revgrep"] - sumVersion = "v0.0.0-20210208091834-cd28932614b5" - ["github.com/golangci/revgrep".fetch] - type = "git" - url = "https://github.com/golangci/revgrep" - rev = "cd28932614b5632011a177e3b83853c02e29ca91" - sha256 = "0vh8vw4rg321l3bkgii17vdqdjjahqh8bfmf2qylpbxv4fry3i29" - -["github.com/golangci/unconvert"] - sumVersion = "v0.0.0-20180507085042-28b1c447d1f4" - ["github.com/golangci/unconvert".fetch] - type = "git" - url = "https://github.com/golangci/unconvert" - rev = "28b1c447d1f4a810737ee6ab40ea6c1d0ceae4ad" - sha256 = "1vdig163lkpkf38vngms2xkrc3rl1dnn227gdcdyfji1cxw4kcda" - -["github.com/google/btree"] - sumVersion = "v1.0.0" - ["github.com/google/btree".fetch] - type = "git" - url = "https://github.com/google/btree" - rev = "4030bb1f1f0c35b30ca7009e9ebd06849dd45306" - sha256 = "0ba430m9fbnagacp57krgidsyrgp3ycw5r7dj71brgp5r52g82p6" - -["github.com/google/certificate-transparency-go"] - sumVersion = "v1.1.1" - ["github.com/google/certificate-transparency-go".fetch] - type = "git" - url = "https://github.com/google/certificate-transparency-go" - rev = "aa25a91f9f9e4cf3f4950bd151a50e78701d5f0d" - sha256 = "0ajdhxrvlzwxbxvvc23cnha9f6gwc7xm7yg1lnpmzcg38d10g969" - -["github.com/google/go-cmp"] - sumVersion = "v0.5.5" - ["github.com/google/go-cmp".fetch] - type = "git" - url = "https://github.com/google/go-cmp" - rev = "8fa37b4dd109f12e42b131e485268768f18bcbf8" - sha256 = "12fmkdhyv5d4is8s57k78j097zb0phlgnrkqc03agiszxlid69x7" - -["github.com/google/gofuzz"] - sumVersion = "v1.1.1-0.20200604201612-c04b05f3adfa" - ["github.com/google/gofuzz".fetch] - type = "git" - url = "https://github.com/google/gofuzz" - rev = "c04b05f3adfa7f64e47bf054350f2336aea32e9d" - sha256 = "0i75fm6pg54zvrgbvjkg46cr03pypqm4w0wv0a349f4k7ff8qv9r" - -["github.com/google/martian"] - sumVersion = "v2.1.0+incompatible" - ["github.com/google/martian".fetch] - type = "git" - url = "https://github.com/google/martian" - rev = "195b986b4b6d4c513582cf4d2b8c4fd7e2494f7e" - sha256 = "197hil6vrjk50b9wvwyzf61csid83whsjj6ik8mc9r2lryxlyyrp" - -["github.com/google/martian/v3"] - sumVersion = "v3.1.0" - ["github.com/google/martian/v3".fetch] - type = "git" - url = "https://github.com/google/martian" - rev = "dacbe1a1813d1e1b8f44f17b03ffe0cd9fb5ba54" - sha256 = "1pr9akggfzj2vw11l7ry4sij0hqslpc3gwx4ynbzyvbjhvh64sbc" - -["github.com/google/orderedcode"] - sumVersion = "v0.0.1" - ["github.com/google/orderedcode".fetch] - type = "git" - url = "https://github.com/google/orderedcode" - rev = "9a3d15e0d5340bb1ba5db4071afd931e18b6e013" - sha256 = "0sdqfjji2skc1f7fbv9krbrb0cgfz43ksrld333hllgdidi33c9a" - -["github.com/google/pprof"] - sumVersion = "v0.0.0-20210226084205-cbba55b83ad5" - ["github.com/google/pprof".fetch] - type = "git" - url = "https://github.com/google/pprof" - rev = "cbba55b83ad56c9286566b96b0c82cead332b729" - sha256 = "0drr44nqq0s3jillcrl8qa7sklxybs083lvashdh2ad62hrs31l7" - -["github.com/google/renameio"] - sumVersion = "v0.1.0" - ["github.com/google/renameio".fetch] - type = "git" - url = "https://github.com/google/renameio" - rev = "f0e32980c006571efd537032e5f9cd8c1a92819e" - sha256 = "1ki2x5a9nrj17sn092d6n4zr29lfg5ydv4xz5cp58z6cw8ip43jx" - -["github.com/google/trillian"] - sumVersion = "v1.3.11" - ["github.com/google/trillian".fetch] - type = "git" - url = "https://github.com/google/trillian" - rev = "2053c7648b44d5de45863c3ad12550b511ad6a14" - sha256 = "1lh19wba90y91l5jj8ilzjqxgmqqqdvyn7pzrwvmzv7iiy18wcmh" - -["github.com/google/uuid"] - sumVersion = "v1.2.0" - ["github.com/google/uuid".fetch] - type = "git" - url = "https://github.com/google/uuid" - rev = "bfb86fa49a73e4194d93bea18d7acfe3694438ce" - sha256 = "08wqig98w23cg2ngjijhgm6s0mdayb95awa3cn3bs69lg20gryac" - -["github.com/googleapis/gax-go/v2"] - sumVersion = "v2.0.5" - relPath = "v2" - ["github.com/googleapis/gax-go/v2".fetch] - type = "git" - url = "https://github.com/googleapis/gax-go" - rev = "bd5b16380fd03dc758d11cef74ba2e3bc8b0e8c2" - sha256 = "1lxawwngv6miaqd25s3ba0didfzylbwisd2nz7r4gmbmin6jsjrx" - -["github.com/gookit/color"] - sumVersion = "v1.4.2" - ["github.com/gookit/color".fetch] - type = "git" - url = "https://github.com/gookit/color" - rev = "971acbd594ad519d6a65af5c03a124f533ef3a42" - sha256 = "0pid7yyjd5zbpkgxqhilbfcxyqwx6hzd9sgwk0l2jn3qf0cvzxfi" - -["github.com/gopherjs/gopherjs"] - sumVersion = "v0.0.0-20181017120253-0766667cb4d1" - ["github.com/gopherjs/gopherjs".fetch] - type = "git" - url = "https://github.com/gopherjs/gopherjs" - rev = "0766667cb4d1cfb8d5fde1fe210ae41ead3cf589" - sha256 = "13pfc9sxiwjky2lm1xb3i3lcisn8p6mgjk2d927l7r92ysph8dmw" - -["github.com/gordonklaus/ineffassign"] - sumVersion = "v0.0.0-20210225214923-2e10b2664254" - ["github.com/gordonklaus/ineffassign".fetch] - type = "git" - url = "https://github.com/gordonklaus/ineffassign" - rev = "2e10b26642541670df2672e035b2de19fcb04cab" - sha256 = "0a2ssajs0q78ck0ss63rvkj3x8r6wc8vl10pg760qpw9ykbld5kl" - -["github.com/gorhill/cronexpr"] - sumVersion = "v0.0.0-20180427100037-88b0669f7d75" - ["github.com/gorhill/cronexpr".fetch] - type = "git" - url = "https://github.com/gorhill/cronexpr" - rev = "88b0669f7d75f171bd612b874e52b95c190218df" - sha256 = "0hc7xdfclp2qgkr1581jb3ckjvl34nxmqrnraci5jzmqx5av9j1r" - -["github.com/gorilla/context"] - sumVersion = "v1.1.1" - ["github.com/gorilla/context".fetch] - type = "git" - url = "https://github.com/gorilla/context" - rev = "08b5f424b9271eedf6f9f0ce86cb9396ed337a42" - sha256 = "03p4hn87vcmfih0p9w663qbx9lpsf7i7j3lc7yl7n84la3yz63m4" - -["github.com/gorilla/handlers"] - sumVersion = "v1.5.1" - ["github.com/gorilla/handlers".fetch] - type = "git" - url = "https://github.com/gorilla/handlers" - rev = "d453effd20e6817a8acfd9d278dadd21371da0ba" - sha256 = "15gycdz9lkjnsvvichsbdf25vf6pi1sfn41khhz53iqf300l0w0s" - -["github.com/gorilla/mux"] - sumVersion = "v1.8.0" - ["github.com/gorilla/mux".fetch] - type = "git" - url = "https://github.com/gorilla/mux" - rev = "98cb6bf42e086f6af920b965c38cacc07402d51b" - sha256 = "18f0q9qxgq1yh4ji07mqhiydfcwvi56z9d775v7dc7yckj33kpdk" - -["github.com/gorilla/websocket"] - sumVersion = "v1.4.2" - ["github.com/gorilla/websocket".fetch] - type = "git" - url = "https://github.com/gorilla/websocket" - rev = "b65e62901fc1c0d968042419e74789f6af455eb9" - sha256 = "0mkm9w6kjkrlzab5wh8p4qxkc0icqawjbvr01d2nk6ykylrln40s" - -["github.com/gostaticanalysis/analysisutil"] - sumVersion = "v0.4.1" - ["github.com/gostaticanalysis/analysisutil".fetch] - type = "git" - url = "https://github.com/gostaticanalysis/analysisutil" - rev = "2f839a036bd8444fb6741f7a8297a130aa86e35a" - sha256 = "04fwjbzkjzaf0i95mzqinkmwazn900c7x246nin5ihd24qxgjw9g" - -["github.com/gostaticanalysis/comment"] - sumVersion = "v1.4.1" - ["github.com/gostaticanalysis/comment".fetch] - type = "git" - url = "https://github.com/gostaticanalysis/comment" - rev = "95f35d9526d5baa1cae08f5c028a441954c44992" - sha256 = "1zlxva7icsc0ldf0r290hb9qinmq5z0vkgjpmkr7cwrmnzamj589" - -["github.com/gostaticanalysis/forcetypeassert"] - sumVersion = "v0.0.0-20200621232751-01d4955beaa5" - ["github.com/gostaticanalysis/forcetypeassert".fetch] - type = "git" - url = "https://github.com/gostaticanalysis/forcetypeassert" - rev = "01d4955beaa5d7ef4d59ff7ea1df2eb49c7ea604" - sha256 = "00sigmsxp5mhlymxgxgny8hzlxni25pq4k9b9ics700hmyidksc9" - -["github.com/gostaticanalysis/nilerr"] - sumVersion = "v0.1.1" - ["github.com/gostaticanalysis/nilerr".fetch] - type = "git" - url = "https://github.com/gostaticanalysis/nilerr" - rev = "7a8ff9e3218a17de54619ed310fca8824b8274c0" - sha256 = "0dz1k7l6jcdamy3i0q976n13lydxx9dpc0sv3zl1j7sm6sysv76x" - -["github.com/gotestyourself/gotestyourself"] - sumVersion = "v2.2.0+incompatible" - ["github.com/gotestyourself/gotestyourself".fetch] - type = "git" - url = "https://github.com/gotestyourself/gotestyourself" - rev = "7c797b5133e5460410dbb22ba779bf35e6975dea" - sha256 = "0yif3gdyckmf8i54jq0xn00kflla5rhib9sarw66ngnbl7bn9kyl" - -["github.com/graph-gophers/graphql-go"] - sumVersion = "v0.0.0-20191115155744-f33e81362277" - ["github.com/graph-gophers/graphql-go".fetch] - type = "git" - url = "https://github.com/graph-gophers/graphql-go" - rev = "f33e813622776db7efec756a9e951bef40932197" - sha256 = "12vbls1kvn3lfgj86y4r258x6papgcj3h4pcg4xbdi5l2cy1idmy" - -["github.com/gregjones/httpcache"] - sumVersion = "v0.0.0-20190611155906-901d90724c79" - ["github.com/gregjones/httpcache".fetch] - type = "git" - url = "https://github.com/gregjones/httpcache" - rev = "901d90724c7919163f472a9812253fb26761123d" - sha256 = "05r0xq51vfb55di11m7iv19341d73f7in33vq1ihcqs1nffdwiq0" - -["github.com/grpc-ecosystem/go-grpc-middleware"] - sumVersion = "v1.3.0" - ["github.com/grpc-ecosystem/go-grpc-middleware".fetch] - type = "git" - url = "https://github.com/grpc-ecosystem/go-grpc-middleware" - rev = "df0f91b29bbbdfc3a686a7a8edbe2b9de2072fdd" - sha256 = "1c9chw2nwj46ayx6cbq1sq21gmfmm3fx1gg579hn7srwywq0xsw0" - -["github.com/grpc-ecosystem/go-grpc-prometheus"] - sumVersion = "v1.2.0" - ["github.com/grpc-ecosystem/go-grpc-prometheus".fetch] - type = "git" - url = "https://github.com/grpc-ecosystem/go-grpc-prometheus" - rev = "c225b8c3b01faf2899099b768856a9e916e5087b" - sha256 = "1lzk54h7np32b3acidg1ggbn8ppbnns0m71gcg9d1qkkdh8zrijl" - -["github.com/grpc-ecosystem/grpc-gateway"] - sumVersion = "v1.16.0" - ["github.com/grpc-ecosystem/grpc-gateway".fetch] - type = "git" - url = "https://github.com/grpc-ecosystem/grpc-gateway" - rev = "094a6fe78b3ca888297d090185cdf30f0e42e157" - sha256 = "0dzq1qbgzz2c6vnh8anx0j3py34sd72p35x6s2wrl001q68am5cc" - -["github.com/gsterjov/go-libsecret"] - sumVersion = "v0.0.0-20161001094733-a6f4afe4910c" - ["github.com/gsterjov/go-libsecret".fetch] - type = "git" - url = "https://github.com/gsterjov/go-libsecret" - rev = "a6f4afe4910cad8688db3e0e9b9ac92ad22d54e1" - sha256 = "09zaiadnll83vs22ib89agg7anj0blw5fywvmckxllsgif6ak6v7" - -["github.com/gtank/merlin"] - sumVersion = "v0.1.1" - ["github.com/gtank/merlin".fetch] - type = "git" - url = "https://github.com/gtank/merlin" - rev = "8318aed1a79f2b4c16cf2d7c2f09d991ec0731d1" - sha256 = "1gcj26hiyb87cjvqrdyr4q201c1rknpbahnsvcnz08agaw6gvwxm" - -["github.com/gtank/ristretto255"] - sumVersion = "v0.1.2" - ["github.com/gtank/ristretto255".fetch] - type = "git" - url = "https://github.com/gtank/ristretto255" - rev = "f33454717c935f5c93978e82b7bd1e848768bb91" - sha256 = "0kn4r28zbxf4vqr2if455wqzak38l27wqrwbzpxygrvczm61a2kw" - -["github.com/hashicorp/consul/api"] - sumVersion = "v1.3.0" - relPath = "api" - ["github.com/hashicorp/consul/api".fetch] - type = "git" - url = "https://github.com/hashicorp/consul" - rev = "e8757838a49feeb682c7e6ad6b78694a78b2096b" - sha256 = "1zv84snvrjm74w3v3rr27linsbxj00m73xd047sb78a4766xs2h0" - -["github.com/hashicorp/consul/sdk"] - sumVersion = "v0.3.0" - relPath = "sdk" - ["github.com/hashicorp/consul/sdk".fetch] - type = "git" - url = "https://github.com/hashicorp/consul" - rev = "441d613e1bd96254c78c46ee7c1b35c161fc7295" - sha256 = "1v06ygzsvc9c02yxpxnnm407kd30fc46b2146k5zrk1v8lq0f91j" - -["github.com/hashicorp/errwrap"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/errwrap".fetch] - type = "git" - url = "https://github.com/hashicorp/errwrap" - rev = "8a6fb523712970c966eefc6b39ed2c5e74880354" - sha256 = "0slfb6w3b61xz04r32bi0a1bygc82rjzhqkxj2si2074wynqnr1c" - -["github.com/hashicorp/go-cleanhttp"] - sumVersion = "v0.5.1" - ["github.com/hashicorp/go-cleanhttp".fetch] - type = "git" - url = "https://github.com/hashicorp/go-cleanhttp" - rev = "eda1e5db218aad1db63ca4642c8906b26bcf2744" - sha256 = "07kx3fhryqmaw3czacmm11qwx63js2q8cfq967vphk7xg9q377kk" - -["github.com/hashicorp/go-immutable-radix"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-immutable-radix".fetch] - type = "git" - url = "https://github.com/hashicorp/go-immutable-radix" - rev = "27df80928bb34bb1b0d6d0e01b9e679902e7a6b5" - sha256 = "1v3nmsnk1s8bzpclrhirz7iq0g5xxbw9q5gvrg9ss6w9crs72qr6" - -["github.com/hashicorp/go-msgpack"] - sumVersion = "v0.5.3" - ["github.com/hashicorp/go-msgpack".fetch] - type = "git" - url = "https://github.com/hashicorp/go-msgpack" - rev = "be3a5be7ee2202386d02936a19ae4fbde1c77800" - sha256 = "00jv0ajqd58pkb2yyhlrjp0rv1mvb1ijx3yqjyikcmzvk9jb4h5m" - -["github.com/hashicorp/go-multierror"] - sumVersion = "v1.1.1" - ["github.com/hashicorp/go-multierror".fetch] - type = "git" - url = "https://github.com/hashicorp/go-multierror" - rev = "9974e9ec57696378079ecc3accd3d6f29401b3a0" - sha256 = "0l4s41skdpifndn9s8y6s9vzgghdzg4z8z0lld9qjr28888wzp00" - -["github.com/hashicorp/go-retryablehttp"] - sumVersion = "v0.5.3" - ["github.com/hashicorp/go-retryablehttp".fetch] - type = "git" - url = "https://github.com/hashicorp/go-retryablehttp" - rev = "357460732517ec3b57c05c51443296bdd6df1874" - sha256 = "008mimxs8a970rdhvgmc5v1wk0gmpcl96mrkwz7wq6ik6fhg1sjl" - -["github.com/hashicorp/go-rootcerts"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-rootcerts".fetch] - type = "git" - url = "https://github.com/hashicorp/go-rootcerts" - rev = "63503fb4e1eca22f9ae0f90b49c5d5538a0e87eb" - sha256 = "0wply5zhj1rcybr932zbwm1i18q5wr7kgkhnz6bw6mk1n9yr8lfj" - -["github.com/hashicorp/go-sockaddr"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-sockaddr".fetch] - type = "git" - url = "https://github.com/hashicorp/go-sockaddr" - rev = "a6a0d2df398f7e0e9f6e43f589c8b51cec0eb6b0" - sha256 = "1yn1xq8ysn0lszmkygz3a9lgpswbz1p91jv7q8l20s4749a22xgi" - -["github.com/hashicorp/go-syslog"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-syslog".fetch] - type = "git" - url = "https://github.com/hashicorp/go-syslog" - rev = "8d1874e3e8d1862b74e0536851e218c4571066a5" - sha256 = "09vccqggz212cg0jir6vv708d6mx0f9w5bxrcdah3h6chgmal6v1" - -["github.com/hashicorp/go-uuid"] - sumVersion = "v1.0.1" - ["github.com/hashicorp/go-uuid".fetch] - type = "git" - url = "https://github.com/hashicorp/go-uuid" - rev = "4f571afc59f3043a65f8fe6bf46d887b10a01d43" - sha256 = "0jvb88m0rq41bwgirsadgw7mnayl27av3gd2vqa3xvxp3fy0hp5k" - -["github.com/hashicorp/go-version"] - sumVersion = "v1.2.0" - ["github.com/hashicorp/go-version".fetch] - type = "git" - url = "https://github.com/hashicorp/go-version" - rev = "ac23dc3fea5d1a983c43f6a0f6e2c13f0195d8bd" - sha256 = "1bwi6y6111xq8ww8kjq0w1cmz15l1h9hb2id6596l8l0ag1vjj1z" - -["github.com/hashicorp/go.net"] - sumVersion = "v0.0.1" - ["github.com/hashicorp/go.net".fetch] - type = "git" - url = "https://github.com/hashicorp/go.net" - rev = "afc3cb3a421746fc66dd55b09a270c750cf536ce" - sha256 = "06arwi95xp5rxyz7rndvhc3wlwg0jn9a5z6djf3yyg5h9zfab9i4" - -["github.com/hashicorp/golang-lru"] - sumVersion = "v0.5.4" - ["github.com/hashicorp/golang-lru".fetch] - type = "git" - url = "https://github.com/hashicorp/golang-lru" - rev = "14eae340515388ca95aa8e7b86f0de668e981f54" - sha256 = "1sdbymypp9vrnzp8ashw0idlxvaq0rb0alwxx3x8g27yjlqi9jfn" - -["github.com/hashicorp/hcl"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/hcl".fetch] - type = "git" - url = "https://github.com/hashicorp/hcl" - rev = "8cb6e5b959231cc1119e43259c4a608f9c51a241" - sha256 = "0q6ml0qqs0yil76mpn4mdx4lp94id8vbv575qm60jzl1ijcl5i66" - -["github.com/hashicorp/logutils"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/logutils".fetch] - type = "git" - url = "https://github.com/hashicorp/logutils" - rev = "a335183dfd075f638afcc820c90591ca3c97eba6" - sha256 = "076wf4sh5p3f953ndqk1cc0x7jhmlqrxak9953rz79rcdw77rjvv" - -["github.com/hashicorp/mdns"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/mdns".fetch] - type = "git" - url = "https://github.com/hashicorp/mdns" - rev = "c31d3f8e4a0a5b46b118c2fd26d9da36467002c9" - sha256 = "0qr4l91hhi97s8a1isnrw3s4q8pjzacqiks870vnwh15v7ig3axd" - -["github.com/hashicorp/memberlist"] - sumVersion = "v0.1.3" - ["github.com/hashicorp/memberlist".fetch] - type = "git" - url = "https://github.com/hashicorp/memberlist" - rev = "a9da52f0668fc4321ec18e9e28dd8141621a808f" - sha256 = "0k1spq7dagvqj3baqw2dhxx1zxrb02y6m3apzr3a7gyirii890g3" - -["github.com/hashicorp/serf"] - sumVersion = "v0.8.2" - ["github.com/hashicorp/serf".fetch] - type = "git" - url = "https://github.com/hashicorp/serf" - rev = "b89a09ebd4b1b570e0076d5097272e67c10ac4f6" - sha256 = "0nrslghvdjhaczr2xp9mn8xgcx1dxl4jgpbk0l61ssmxahpx4iyc" - -["github.com/hdevalence/ed25519consensus"] - sumVersion = "v0.0.0-20210204194344-59a8610d2b87" - ["github.com/hdevalence/ed25519consensus".fetch] - type = "git" - url = "https://github.com/hdevalence/ed25519consensus" - rev = "59a8610d2b877a977e021f711e382bc0e757bf48" - sha256 = "0nw0i884mbya2sdijrhlfnx3ymhdl3jcxk36g6mqk1d91p5b40s2" - -["github.com/holiman/uint256"] - sumVersion = "v1.1.1" - ["github.com/holiman/uint256".fetch] - type = "git" - url = "https://github.com/holiman/uint256" - rev = "99b79c80738390408ef1a47f0e26812ef5506c02" - sha256 = "13v6rnwv1mivqxfmnmj57jg6is81p04gspmykc8slcc1ryvs1qdh" - -["github.com/hpcloud/tail"] - sumVersion = "v1.0.0" - ["github.com/hpcloud/tail".fetch] - type = "git" - url = "https://github.com/hpcloud/tail" - rev = "a30252cb686a21eb2d0b98132633053ec2f7f1e5" - sha256 = "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0" - -["github.com/huandu/xstrings"] - sumVersion = "v1.2.0" - ["github.com/huandu/xstrings".fetch] - type = "git" - url = "https://github.com/huandu/xstrings" - rev = "f02667b379e2fb5916c3cda2cf31e0eb885d79f8" - sha256 = "0bn1kac5vcspxdpx4bygr4gngdbk67pnbqc04b0f7a4ny25n10iq" - -["github.com/hudl/fargo"] - sumVersion = "v1.3.0" - ["github.com/hudl/fargo".fetch] - type = "git" - url = "https://github.com/hudl/fargo" - rev = "fce5cf495554be9ef0766f6f5459e2874fb08c89" - sha256 = "1f7pwj793p51nq03jiz834g0qvg502h9asry6nx4pdc10wzx2948" - -["github.com/huin/goupnp"] - sumVersion = "v1.0.0" - ["github.com/huin/goupnp".fetch] - type = "git" - url = "https://github.com/huin/goupnp" - rev = "656e61dfadd241c7cbdd22a023fa81ecb6860ea8" - sha256 = "12f7rigf1f4xh1an1qis61xkj5s1r8ygk48zahf3n4gaqxmgm7i6" - -["github.com/huin/goutil"] - sumVersion = "v0.0.0-20170803182201-1ca381bf3150" - ["github.com/huin/goutil".fetch] - type = "git" - url = "https://github.com/huin/goutil" - rev = "1ca381bf315033e89af3286fdec0109ce8d86126" - sha256 = "0alhyacsfqic2wxyqn4gvk9wzjl4pkmy8rhvqjk84xsghgx5xf12" - -["github.com/ianlancetaylor/demangle"] - sumVersion = "v0.0.0-20200824232613-28f6c0f3b639" - ["github.com/ianlancetaylor/demangle".fetch] - type = "git" - url = "https://github.com/ianlancetaylor/demangle" - rev = "28f6c0f3b63983aaa99575ca3b693afff7996387" - sha256 = "0rsq3622gd40f1x1l7caidsxrmzg1993ich2higwd94fqbxs1r83" - -["github.com/imdario/mergo"] - sumVersion = "v0.3.12" - ["github.com/imdario/mergo".fetch] - type = "git" - url = "https://github.com/imdario/mergo" - rev = "29fb3d3bdc5512887f1dc9aedde6a0fed407fa8f" - sha256 = "15s6807vcm7xq4l6my7rnw1i7x57712jvdidjli5bip79jfaxw90" - -["github.com/improbable-eng/grpc-web"] - sumVersion = "v0.14.1" - ["github.com/improbable-eng/grpc-web".fetch] - type = "git" - url = "https://github.com/improbable-eng/grpc-web" - rev = "d1462f8004766ff7f0e99962976a853bc9310301" - sha256 = "153a2kn2hpiwyspy9clwsxkgfw1igww5n74vf55fvz0idzv3r10n" - -["github.com/inconshreveable/mousetrap"] - sumVersion = "v1.0.0" - ["github.com/inconshreveable/mousetrap".fetch] - type = "git" - url = "https://github.com/inconshreveable/mousetrap" - rev = "76626ae9c91c4f2a10f34cad8ce83ea42c93bb75" - sha256 = "1mn0kg48xkd74brf48qf5hzp0bc6g8cf5a77w895rl3qnlpfw152" - -["github.com/influxdata/influxdb"] - sumVersion = "v1.2.3-0.20180221223340-01288bdb0883" - ["github.com/influxdata/influxdb".fetch] - type = "git" - url = "https://github.com/influxdata/influxdb" - rev = "01288bdb0883a01cac999326bd34421b29acaec8" - sha256 = "0lk1c2w1ja2w7wc897xp5c04vyrx5yxq5pb187aqcrqbqvy2fp5p" - -["github.com/influxdata/influxdb1-client"] - sumVersion = "v0.0.0-20191209144304-8bf82d3c094d" - ["github.com/influxdata/influxdb1-client".fetch] - type = "git" - url = "https://github.com/influxdata/influxdb1-client" - rev = "8bf82d3c094dc06be9da8e5bf9d3589b6ea032ae" - sha256 = "0cjli7prxfxayx2grianbla5jr0dq28sazk8phbnh61ac5zaya4s" - -["github.com/jackpal/go-nat-pmp"] - sumVersion = "v1.0.2-0.20160603034137-1fa385a6f458" - ["github.com/jackpal/go-nat-pmp".fetch] - type = "git" - url = "https://github.com/jackpal/go-nat-pmp" - rev = "1fa385a6f45828c83361136b45b1a21a12139493" - sha256 = "1n5h3qrd613cfw95vyqpy9vh3xv0zgbk3j5q8zad25q10wvp6ymn" - -["github.com/jbenet/go-context"] - sumVersion = "v0.0.0-20150711004518-d14ea06fba99" - ["github.com/jbenet/go-context".fetch] - type = "git" - url = "https://github.com/jbenet/go-context" - rev = "d14ea06fba99483203c19d92cfcd13ebe73135f4" - sha256 = "0q91f5549n81w3z5927n4a1mdh220bdmgl42zi3h992dcc4ls0sl" - -["github.com/jedisct1/go-minisign"] - sumVersion = "v0.0.0-20190909160543-45766022959e" - ["github.com/jedisct1/go-minisign".fetch] - type = "git" - url = "https://github.com/jedisct1/go-minisign" - rev = "45766022959ee057eee31300cdc5f45a8c51ea7f" - sha256 = "02rc52v29wyzias9aw4a7kxsfspf27an3kf0pb9pn4kp0br5dn6v" - -["github.com/jessevdk/go-flags"] - sumVersion = "v1.5.0" - ["github.com/jessevdk/go-flags".fetch] - type = "git" - url = "https://github.com/jessevdk/go-flags" - rev = "1878de27329cba29066dc088d84b3ce743885f82" - sha256 = "13ixw1yx4bvcj66lkc8zgwf9j7gkvj686g991gycdsafvdvca0lj" - -["github.com/jgautheron/goconst"] - sumVersion = "v1.5.1" - ["github.com/jgautheron/goconst".fetch] - type = "git" - url = "https://github.com/jgautheron/goconst" - rev = "9ea1afc8489c618088835b70f6e9774ef1b08bc0" - sha256 = "10bam480rl1x73afhj928qh32x6218m7h6hkvr78lmxxxk25c43j" - -["github.com/jhump/protoreflect"] - sumVersion = "v1.9.0" - ["github.com/jhump/protoreflect".fetch] - type = "git" - url = "https://github.com/jhump/protoreflect" - rev = "d3608faa83b85e64a0e2880cba9be9c951460727" - sha256 = "0pbyvisfjmhx1g5l6m0dqv730hid1jr8h8746yx3d567ms2hgj8f" - -["github.com/jingyugao/rowserrcheck"] - sumVersion = "v1.1.0" - ["github.com/jingyugao/rowserrcheck".fetch] - type = "git" - url = "https://github.com/jingyugao/rowserrcheck" - rev = "d907ca737bb10a42b7e263244d25f950bb8f1427" - sha256 = "12j046359p7azql6my2qrn45p53pkc77hq9hmmd7fb8ypfk1xh6z" - -["github.com/jirfag/go-printf-func-name"] - sumVersion = "v0.0.0-20200119135958-7558a9eaa5af" - ["github.com/jirfag/go-printf-func-name".fetch] - type = "git" - url = "https://github.com/jirfag/go-printf-func-name" - rev = "7558a9eaa5af8ed9fe5051bbd2791b4665210a0a" - sha256 = "1mj8wq1lpxslmx678izfrf1sg3arw2lq87c26zzcbv5cckni8bgn" - -["github.com/jmespath/go-jmespath"] - sumVersion = "v0.4.0" - ["github.com/jmespath/go-jmespath".fetch] - type = "git" - url = "https://github.com/jmespath/go-jmespath" - rev = "3d4fd11601ddca248480565884e34e393313cd62" - sha256 = "18zyr9nlywmwp3wpzcjxrgq9s9d2mmc6zg6xhsna00m663nkyc3n" - -["github.com/jmespath/go-jmespath/internal/testify"] - sumVersion = "v1.5.1" - relPath = "internal/testify" - ["github.com/jmespath/go-jmespath/internal/testify".fetch] - type = "git" - url = "https://github.com/jmespath/go-jmespath" - rev = "ff168ca20786696708c0f3eb2cc29d7912467599" - sha256 = "0swpmim4gn023pkzxfg8adqilz7mfka8axlsjqsxk0d2r372z75m" - -["github.com/jmhodges/levigo"] - sumVersion = "v1.0.0" - ["github.com/jmhodges/levigo".fetch] - type = "git" - url = "https://github.com/jmhodges/levigo" - rev = "853d788c5c416eaaee5b044570784a96c7a26975" - sha256 = "1lhh413mmclnkwn2lk1crwzargam2cx5w7k6zj8pgasy62c78iy4" - -["github.com/jmoiron/sqlx"] - sumVersion = "v1.2.0" - ["github.com/jmoiron/sqlx".fetch] - type = "git" - url = "https://github.com/jmoiron/sqlx" - rev = "d161d7a76b5661016ad0b085869f77fd410f3e6a" - sha256 = "0pmi2asx157f5738g19fzyxb9g8yyfbpjyh2a2ykr9mafvp60rfd" - -["github.com/jonboulle/clockwork"] - sumVersion = "v0.2.0" - ["github.com/jonboulle/clockwork".fetch] - type = "git" - url = "https://github.com/jonboulle/clockwork" - rev = "56678c9ed265c35c6b7189fbdda2b8a257f6753a" - sha256 = "1pzkvnzanaakdpxhawbmmv6xyislx264fxqzvbf2yqg51sf9f4ll" - -["github.com/jpillora/backoff"] - sumVersion = "v1.0.0" - ["github.com/jpillora/backoff".fetch] - type = "git" - url = "https://github.com/jpillora/backoff" - rev = "d80867952dff4e2fbfb4280ded4ff94d67790457" - sha256 = "0x90fif28fjyl07lmj2cnxzlgdm632v7rkra7kq1mwjdqgmy04dv" - -["github.com/jrick/logrotate"] - sumVersion = "v1.0.0" - ["github.com/jrick/logrotate".fetch] - type = "git" - url = "https://github.com/jrick/logrotate" - rev = "a93b200c26cbae3bb09dd0dc2c7c7fe1468a034a" - sha256 = "0srl6figwjqpi3nbp7br8sxpmvh4v8lzbny1b4lar4ny0156p5nl" - -["github.com/json-iterator/go"] - sumVersion = "v1.1.11" - ["github.com/json-iterator/go".fetch] - type = "git" - url = "https://github.com/json-iterator/go" - rev = "e6b9536d3649bda3e8842bb7e4fab489d79a97ea" - sha256 = "086la0acyi7ryf0yzhsxm7vg9qqlg2333syf4kpr1cmac7v05vmb" - -["github.com/jstemmer/go-junit-report"] - sumVersion = "v0.9.1" - ["github.com/jstemmer/go-junit-report".fetch] - type = "git" - url = "https://github.com/jstemmer/go-junit-report" - rev = "cc1f095d5cc5eca2844f5c5ea7bb37f6b9bf6cac" - sha256 = "1knip80yir1cdsjlb3rzy0a4w3kl4ljpiciaz6hjzwqlfhnv7bkw" - -["github.com/jtolds/gls"] - sumVersion = "v4.20.0+incompatible" - ["github.com/jtolds/gls".fetch] - type = "git" - url = "https://github.com/jtolds/gls" - rev = "b4936e06046bbecbb94cae9c18127ebe510a2cb9" - sha256 = "1k7xd2q2ysv2xsh373qs801v6f359240kx0vrl0ydh7731lngvk6" - -["github.com/juju/ratelimit"] - sumVersion = "v1.0.1" - ["github.com/juju/ratelimit".fetch] - type = "git" - url = "https://github.com/juju/ratelimit" - rev = "59fac5042749a5afb9af70e813da1dd5474f0167" - sha256 = "0ppwvwbh9jdpdk4f9924vw373cpfz5g5ad10c707p22a984vanrz" - -["github.com/julienschmidt/httprouter"] - sumVersion = "v1.3.0" - ["github.com/julienschmidt/httprouter".fetch] - type = "git" - url = "https://github.com/julienschmidt/httprouter" - rev = "4eec211fa4e8df74ed978dc5681612131854144f" - sha256 = "1a6sy0ysqknsjssjh7qg1dqn21xmj9a36c57nrk7srfmab4ffmk1" - -["github.com/julz/importas"] - sumVersion = "v0.0.0-20210419104244-841f0c0fe66d" - ["github.com/julz/importas".fetch] - type = "git" - url = "https://github.com/julz/importas" - rev = "841f0c0fe66d8a78d66676e024272dfd69b57668" - sha256 = "11mccjj422ssxzpdfv6p28yh4wp88fwp5fcw7wbc826bsy1cylkv" - -["github.com/k0kubun/colorstring"] - sumVersion = "v0.0.0-20150214042306-9440f1994b88" - ["github.com/k0kubun/colorstring".fetch] - type = "git" - url = "https://github.com/k0kubun/colorstring" - rev = "9440f1994b88a579ce4e2884bfb4532b79bdca7a" - sha256 = "0isskya7ky4k9znrh85crfc2pxwyfz2s8j1a5cbjb8b8zf2v0qbj" - -["github.com/karalabe/usb"] - sumVersion = "v0.0.0-20190919080040-51dc0efba356" - ["github.com/karalabe/usb".fetch] - type = "git" - url = "https://github.com/karalabe/usb" - rev = "51dc0efba3568b598359930901dc6647e9b2c6a1" - sha256 = "0rshv04w5f60zv3l9f0zqyhimpwrbzm7dir8jbkdpnszicq1dx3m" - -["github.com/kevinburke/ssh_config"] - sumVersion = "v0.0.0-20201106050909-4977a11b4351" - ["github.com/kevinburke/ssh_config".fetch] - type = "git" - url = "https://github.com/kevinburke/ssh_config" - rev = "4977a11b4351f5439a591127be8ac5f0c1ae6d96" - sha256 = "1m736njjak15mwpcrkjb8aihlnxl6ks8ylcw3lqqc7cjg5pfr1vp" - -["github.com/keybase/go-keychain"] - sumVersion = "v0.0.0-20191008050251-8e49817e8af4" - vendorPath = "github.com/99designs/go-keychain" - ["github.com/keybase/go-keychain".fetch] - type = "git" - url = "https://github.com/99designs/go-keychain" - rev = "8e49817e8af49e26e4057e23c18ff6e5b4d1e795" - sha256 = "1w0xgbmn9q6b1iwnnwh5cr6ywzxpxijfqxj4kmg19rxmi6bazyk0" - -["github.com/kisielk/errcheck"] - sumVersion = "v1.6.0" - ["github.com/kisielk/errcheck".fetch] - type = "git" - url = "https://github.com/kisielk/errcheck" - rev = "4174a4ae53d4a46ffdaddaa9e09eaa4f7a180b08" - sha256 = "17b1khy6lwy39qqkw0xj4s4wf58azd03kj5fa9jdf553rpcxzg1y" - -["github.com/kisielk/gotool"] - sumVersion = "v1.0.0" - ["github.com/kisielk/gotool".fetch] - type = "git" - url = "https://github.com/kisielk/gotool" - rev = "80517062f582ea3340cd4baf70e86d539ae7d84d" - sha256 = "14af2pa0ssyp8bp2mvdw184s5wcysk6akil3wzxmr05wwy951iwn" - -["github.com/kkdai/bstream"] - sumVersion = "v1.0.0" - ["github.com/kkdai/bstream".fetch] - type = "git" - url = "https://github.com/kkdai/bstream" - rev = "a8d27c5aa8eedad6b6683069d64b96ece63696db" - sha256 = "02brc58hhkkfhgb4yxjv3wshq355w533q7d49qrlfkhk265qph7w" - -["github.com/klauspost/compress"] - sumVersion = "v1.11.7" - ["github.com/klauspost/compress".fetch] - type = "git" - url = "https://github.com/klauspost/compress" - rev = "85d8ebff245ce04f07ea619ca9c73be887313eae" - sha256 = "0wybxlkwp5j3lc60dgsc4cvhw80699vd2n7rsr4234vg1lh041nw" - -["github.com/konsorten/go-windows-terminal-sequences"] - sumVersion = "v1.0.3" - ["github.com/konsorten/go-windows-terminal-sequences".fetch] - type = "git" - url = "https://github.com/konsorten/go-windows-terminal-sequences" - rev = "edb144dfd453055e1e49a3d8b410a660b5a87613" - sha256 = "1yrsd4s8vhjnxhwbigirymz89dn6qfjnhn28i33vvvdgf96j6ypl" - -["github.com/kr/fs"] - sumVersion = "v0.1.0" - ["github.com/kr/fs".fetch] - type = "git" - url = "https://github.com/kr/fs" - rev = "1455def202f6e05b95cc7bfc7e8ae67ae5141eba" - sha256 = "11zg176x9hr9q7fsk95r6q0wf214gg4czy02slax4x56n79g6a7q" - -["github.com/kr/logfmt"] - sumVersion = "v0.0.0-20140226030751-b84e30acd515" - ["github.com/kr/logfmt".fetch] - type = "git" - url = "https://github.com/kr/logfmt" - rev = "b84e30acd515aadc4b783ad4ff83aff3299bdfe0" - sha256 = "02ldzxgznrfdzvghfraslhgp19la1fczcbzh7wm2zdc6lmpd1qq9" - -["github.com/kr/pretty"] - sumVersion = "v0.2.1" - ["github.com/kr/pretty".fetch] - type = "git" - url = "https://github.com/kr/pretty" - rev = "ead452280cd055b2ae8a7f0db5eb37a878d902f7" - sha256 = "0vzfz06y9q8gs2nxx0kys0591vzp78k0fvpb8digi5n15h3b25hy" - -["github.com/kr/pty"] - sumVersion = "v1.1.1" - ["github.com/kr/pty".fetch] - type = "git" - url = "https://github.com/kr/pty" - rev = "282ce0e5322c82529687d609ee670fac7c7d917c" - sha256 = "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6" - -["github.com/kr/text"] - sumVersion = "v0.2.0" - ["github.com/kr/text".fetch] - type = "git" - url = "https://github.com/kr/text" - rev = "702c74938df48b97370179f33ce2107bd7ff3b3e" - sha256 = "0hf58ypz6rxsw6nx3i856whir9lvy4sdx946wbw1nfaf2rdmr9vx" - -["github.com/kulti/thelper"] - sumVersion = "v0.4.0" - ["github.com/kulti/thelper".fetch] - type = "git" - url = "https://github.com/kulti/thelper" - rev = "6eac34022d483a318ef675f812d1d4d3f58df459" - sha256 = "15183z1hzk0vz341972phbzwgpxyn6ch488n3vvaw0iv1bwdan6a" - -["github.com/kunwardeep/paralleltest"] - sumVersion = "v1.0.2" - ["github.com/kunwardeep/paralleltest".fetch] - type = "git" - url = "https://github.com/kunwardeep/paralleltest" - rev = "34f993534440ee1f87656885e81c318831bd8376" - sha256 = "123r434lvbra6vn7j0kaicx4wqnp0frv6ycdfqsnr53n1vnxnk2v" - -["github.com/kylelemons/godebug"] - sumVersion = "v1.1.0" - ["github.com/kylelemons/godebug".fetch] - type = "git" - url = "https://github.com/kylelemons/godebug" - rev = "9ff306d4fbead574800b66369df5b6144732d58e" - sha256 = "0dkk3friykg8p6wgqryx6745ahhb9z1j740k7px9dac6v5xjp78c" - -["github.com/kyoh86/exportloopref"] - sumVersion = "v0.1.8" - ["github.com/kyoh86/exportloopref".fetch] - type = "git" - url = "https://github.com/kyoh86/exportloopref" - rev = "722a3a9d673aef9e42d83ecf99cb72ab7e9e6c67" - sha256 = "00zvdqiwdm8qvn8p6pjygl7vs920171j46qn0cs5fbmmrq42dk89" - -["github.com/ldez/gomoddirectives"] - sumVersion = "v0.2.2" - ["github.com/ldez/gomoddirectives".fetch] - type = "git" - url = "https://github.com/ldez/gomoddirectives" - rev = "bedb342ad1cd24348e76c9a2d10eaaf1c12bf31b" - sha256 = "1ja0mja83fb6ksmxabwrshgn1q0blv8ndywsx0bmhb9li1b0z37f" - -["github.com/ldez/tagliatelle"] - sumVersion = "v0.2.0" - ["github.com/ldez/tagliatelle".fetch] - type = "git" - url = "https://github.com/ldez/tagliatelle" - rev = "1d089379c111a49f55711b38665ed4bec819a521" - sha256 = "0snf2ckjzrhy3izrdr3y4g80ni5x3fb0ny6s012pz35w0cdq7kzz" - -["github.com/leodido/go-urn"] - sumVersion = "v1.2.0" - ["github.com/leodido/go-urn".fetch] - type = "git" - url = "https://github.com/leodido/go-urn" - rev = "a0f5013415294bb94553821ace21a1a74c0298cc" - sha256 = "1d4g1vkhc1180l1n7q48vl84b27c7cziywml78cyijbcdz2f8vim" - -["github.com/letsencrypt/pkcs11key/v4"] - sumVersion = "v4.0.0" - relPath = "v4" - ["github.com/letsencrypt/pkcs11key/v4".fetch] - type = "git" - url = "https://github.com/letsencrypt/pkcs11key" - rev = "c9e453037c675bb913cde3388b43a9828b2b6a1d" - sha256 = "1ynmw2zhsr1m880clc2hgmc53cx6b69wdcjddw9pz0sysddnpb81" - -["github.com/lib/pq"] - sumVersion = "v1.10.2" - ["github.com/lib/pq".fetch] - type = "git" - url = "https://github.com/lib/pq" - rev = "2da6713d67f03911a05b1b6559adc85927fe076e" - sha256 = "0drlr4dx3dzlafx5m9ys9q69hx518pdl279s736k0m3lr9iq9c7r" - -["github.com/libp2p/go-buffer-pool"] - sumVersion = "v0.0.2" - ["github.com/libp2p/go-buffer-pool".fetch] - type = "git" - url = "https://github.com/libp2p/go-buffer-pool" - rev = "c4a5988a1e475884367015e1a2d0bd5fa4c491f4" - sha256 = "01iwby4xq9znlfhcxxvqv03smllsv42j1w3vpqg9n307s3i0pj3m" - -["github.com/lightstep/lightstep-tracer-common/golang/gogo"] - sumVersion = "v0.0.0-20190605223551-bc2310a04743" - relPath = "golang/gogo" - ["github.com/lightstep/lightstep-tracer-common/golang/gogo".fetch] - type = "git" - url = "https://github.com/lightstep/lightstep-tracer-common" - rev = "bc2310a0474352fa2616bdc0a27457b146b136b4" - sha256 = "0j7qycrva0ngf38br0jy9blzjb98ksdfi87b0sb2gnpmsp6sz4l8" - -["github.com/lightstep/lightstep-tracer-go"] - sumVersion = "v0.18.1" - ["github.com/lightstep/lightstep-tracer-go".fetch] - type = "git" - url = "https://github.com/lightstep/lightstep-tracer-go" - rev = "95891af43e111d60f0ae6adaa39c2abe8caad401" - sha256 = "0jfnsv7y11d247xysc61wp8xmgn33fdl17v6g0lxxnklbw41k91y" - -["github.com/logrusorgru/aurora"] - sumVersion = "v0.0.0-20181002194514-a7b3b318ed4e" - ["github.com/logrusorgru/aurora".fetch] - type = "git" - url = "https://github.com/logrusorgru/aurora" - rev = "a7b3b318ed4e1ae5b80602b08627267303c68572" - sha256 = "1dldc270z42zm2d377ks7sa5059janjcjhv3inza3rjvapknsrcb" - -["github.com/lucasjones/reggen"] - sumVersion = "v0.0.0-20180717132126-cdb49ff09d77" - ["github.com/lucasjones/reggen".fetch] - type = "git" - url = "https://github.com/lucasjones/reggen" - rev = "cdb49ff09d77331d3fdd51e862b4023d2257954c" - sha256 = "1cby9n647v4gh11mpz1dfscks8n0cw0rj8d2hjh4q9mky4m7jzl1" - -["github.com/lyft/protoc-gen-validate"] - sumVersion = "v0.0.13" - ["github.com/lyft/protoc-gen-validate".fetch] - type = "git" - url = "https://github.com/lyft/protoc-gen-validate" - rev = "4349a359d42fdfee53b85dd5c89a2f169e1dc6b2" - sha256 = "06x2mb4qa766dgrcahjlp6fb7f8dinkfk1i8zy6ibfigcrlbqjr5" - -["github.com/magiconair/properties"] - sumVersion = "v1.8.5" - ["github.com/magiconair/properties".fetch] - type = "git" - url = "https://github.com/magiconair/properties" - rev = "291b8266af1000c77a12ae6d4dde1145a028012f" - sha256 = "0v4agnkhc30fblbmhs0gq2bikhdnnmqmpp4phrnza68m04j5hxbn" - -["github.com/maratori/testpackage"] - sumVersion = "v1.0.1" - ["github.com/maratori/testpackage".fetch] - type = "git" - url = "https://github.com/maratori/testpackage" - rev = "68d85e4e2681860b5e626e5ca29961b340778f1a" - sha256 = "0d40jskxr4s4nxj6qgwynirqxxi194zj63a73z3k528hh8g42zwk" - -["github.com/matoous/godox"] - sumVersion = "v0.0.0-20210227103229-6504466cf951" - ["github.com/matoous/godox".fetch] - type = "git" - url = "https://github.com/matoous/godox" - rev = "6504466cf951eb5e1ae25306e5a31fe3cad56539" - sha256 = "1nyzx5il6q7cw1d4dyw93xsqdwdwhbwvl82cgr0lwaxlxwwg7pfj" - -["github.com/matryer/is"] - sumVersion = "v1.2.0" - ["github.com/matryer/is".fetch] - type = "git" - url = "https://github.com/matryer/is" - rev = "7c2b2736b653cb467f577a637187a236e770455f" - sha256 = "1sblhla6lzj9j8hab6fmf070v19c7mxbgvqmpxq6wc79zgxdqnbx" - -["github.com/mattn/go-colorable"] - sumVersion = "v0.1.8" - ["github.com/mattn/go-colorable".fetch] - type = "git" - url = "https://github.com/mattn/go-colorable" - rev = "2e1b0c1546e0173c0907cf05c67b8ba29ed8b4d1" - sha256 = "0q34zqwbnls72md8q8mhj368s7p3i4xspvs3rk8fs76s0pn7dr2l" - -["github.com/mattn/go-ieproxy"] - sumVersion = "v0.0.0-20190702010315-6dee0af9227d" - ["github.com/mattn/go-ieproxy".fetch] - type = "git" - url = "https://github.com/mattn/go-ieproxy" - rev = "6dee0af9227d0863f1508ce7937af3396d6605c1" - sha256 = "0kxxxi68wch3rf3iqggiv72fbf0g7s6g8wy7r34ir040j8b7k0ri" - -["github.com/mattn/go-isatty"] - sumVersion = "v0.0.14" - ["github.com/mattn/go-isatty".fetch] - type = "git" - url = "https://github.com/mattn/go-isatty" - rev = "504425e14f742f1f517c4586048b49b37f829c8e" - sha256 = "015zc3j60vb85d7f2al15la24wn45piazxlagqhzrbgfdyqci60z" - -["github.com/mattn/go-runewidth"] - sumVersion = "v0.0.9" - ["github.com/mattn/go-runewidth".fetch] - type = "git" - url = "https://github.com/mattn/go-runewidth" - rev = "14e809f6d78fcf9f48ff9b70981472b64c05f754" - sha256 = "1mvlxcdwr0vwp8b2wqs6y7hk72y28sqh03dz5x0xkg48d4y9cplj" - -["github.com/mattn/go-sqlite3"] - sumVersion = "v1.9.0" - ["github.com/mattn/go-sqlite3".fetch] - type = "git" - url = "https://github.com/mattn/go-sqlite3" - rev = "25ecb14adfc7543176f7d85291ec7dba82c6f7e4" - sha256 = "14vw8bwyaz9lrd1rqhfri5cwpimiimhp75pkbqxxsjsr5jz89s7m" - -["github.com/mattn/goveralls"] - sumVersion = "v0.0.2" - ["github.com/mattn/goveralls".fetch] - type = "git" - url = "https://github.com/mattn/goveralls" - rev = "b71a1e4855f87991aff01c2c833a75a07059c61c" - sha256 = "13ffdikvc594g1mryhi94m87skr7irwkjnpxp8ad2kprn6syfslp" - -["github.com/matttproud/golang_protobuf_extensions"] - sumVersion = "v1.0.1" - ["github.com/matttproud/golang_protobuf_extensions".fetch] - type = "git" - url = "https://github.com/matttproud/golang_protobuf_extensions" - rev = "c12348ce28de40eed0136aa2b644d0ee0650e56c" - sha256 = "1d0c1isd2lk9pnfq2nk0aih356j30k3h1gi2w0ixsivi5csl7jya" - -["github.com/mbilski/exhaustivestruct"] - sumVersion = "v1.2.0" - ["github.com/mbilski/exhaustivestruct".fetch] - type = "git" - url = "https://github.com/mbilski/exhaustivestruct" - rev = "7b602e2b6ff7d66cfd3769edf24486d9d20a1549" - sha256 = "19vzskjmmr3ndm0zgcr00swzmq2dr8v9hb1xdlfhpkb0a7vavdgm" - -["github.com/mgechev/dots"] - sumVersion = "v0.0.0-20190921121421-c36f7dcfbb81" - ["github.com/mgechev/dots".fetch] - type = "git" - url = "https://github.com/mgechev/dots" - rev = "c36f7dcfbb81d2220bbddabf29c757c861c3e4d8" - sha256 = "1i22mz4fca4w9fvzay3p95hpz60gb96pns5rq359g037mvk0w1jx" - -["github.com/mgechev/revive"] - sumVersion = "v1.1.1" - ["github.com/mgechev/revive".fetch] - type = "git" - url = "https://github.com/mgechev/revive" - rev = "18cdb55850ae667e1136cf5c2749fab98a911c5b" - sha256 = "126wwcgbnpq7as72ywlzmkvdy5ylxzm1wv6r7nskllrj61h315mf" - -["github.com/miekg/dns"] - sumVersion = "v1.1.35" - ["github.com/miekg/dns".fetch] - type = "git" - url = "https://github.com/miekg/dns" - rev = "3b41a3134255be803026472cbb980adec17193c2" - sha256 = "111rkqjwgkpbnyas68hw8nxx3ik8afay1a0p1k0lz6spf9ijh3qm" - -["github.com/miekg/pkcs11"] - sumVersion = "v1.0.3" - ["github.com/miekg/pkcs11".fetch] - type = "git" - url = "https://github.com/miekg/pkcs11" - rev = "210dc1e16747c5ba98a03bcbcf728c38086ea357" - sha256 = "0rmmgssb6y28x54si5h63gwbdsjjxf5n9xvm3zqdfsf9l10gx2m6" - -["github.com/mimoo/StrobeGo"] - sumVersion = "v0.0.0-20181016162300-f8f6d4d2b643" - ["github.com/mimoo/StrobeGo".fetch] - type = "git" - url = "https://github.com/mimoo/StrobeGo" - rev = "f8f6d4d2b6435f46148e8a6dc2248939893f3ece" - sha256 = "1lgxh3p6aqfc049wn3kz1mj9prm4mqpa9m01p27ph8iw5ry5c7la" - -["github.com/minio/highwayhash"] - sumVersion = "v1.0.1" - ["github.com/minio/highwayhash".fetch] - type = "git" - url = "https://github.com/minio/highwayhash" - rev = "86a2a969d04373bf05ca722517d30fb1c9a3e4f9" - sha256 = "0kj2hs82sphag0h25xvprvf2fz3zlinmlif89sk9jp8h518aiahf" - -["github.com/mitchellh/cli"] - sumVersion = "v1.0.0" - ["github.com/mitchellh/cli".fetch] - type = "git" - url = "https://github.com/mitchellh/cli" - rev = "3d22a244be8aa6fb16ac24af0e195c08b7d973aa" - sha256 = "1i9kmr7rcf10d2hji8h4247hmc0nbairv7a0q51393aw2h1bnwg2" - -["github.com/mitchellh/copystructure"] - sumVersion = "v1.0.0" - ["github.com/mitchellh/copystructure".fetch] - type = "git" - url = "https://github.com/mitchellh/copystructure" - rev = "9a1b6f44e8da0e0e374624fb0a825a231b00c537" - sha256 = "05njg92w1088v4yl0js0zdrpfq6k37i9j14mxkr3p90p5yd9rrrr" - -["github.com/mitchellh/go-homedir"] - sumVersion = "v1.1.0" - ["github.com/mitchellh/go-homedir".fetch] - type = "git" - url = "https://github.com/mitchellh/go-homedir" - rev = "af06845cf3004701891bf4fdb884bfe4920b3727" - sha256 = "0ydzkipf28hwj2bfxqmwlww47khyk6d152xax4bnyh60f4lq3nx1" - -["github.com/mitchellh/go-ps"] - sumVersion = "v1.0.0" - ["github.com/mitchellh/go-ps".fetch] - type = "git" - url = "https://github.com/mitchellh/go-ps" - rev = "147ff83818ae939913b2e20b91ae3cd6c391771c" - sha256 = "0ipcbz66x7q8xczi7cyfq06y7n7v0syvkp730vn9jrn7s8f5ag0z" - -["github.com/mitchellh/go-testing-interface"] - sumVersion = "v1.0.0" - ["github.com/mitchellh/go-testing-interface".fetch] - type = "git" - url = "https://github.com/mitchellh/go-testing-interface" - rev = "6d0b8010fcc857872e42fc6c931227569016843c" - sha256 = "1dl2js8di858bawg7dadlf1qjpkl2g3apziihjyf5imri3znyfpw" - -["github.com/mitchellh/gox"] - sumVersion = "v0.4.0" - ["github.com/mitchellh/gox".fetch] - type = "git" - url = "https://github.com/mitchellh/gox" - rev = "c9740af9c6574448fd48eb30a71f964014c7a837" - sha256 = "1q4fdkw904mrmh1q5z8pfd3r0gcn5dm776kldqawddy93iiwnp8r" - -["github.com/mitchellh/iochan"] - sumVersion = "v1.0.0" - ["github.com/mitchellh/iochan".fetch] - type = "git" - url = "https://github.com/mitchellh/iochan" - rev = "b6e3aadd28864e14dae41ff5c7261455b1242d24" - sha256 = "058n9bbf536f2nw3pbs7pysrg9cqvgkb28z2zf5wjyrzrknyk53g" - -["github.com/mitchellh/mapstructure"] - sumVersion = "v1.4.1" - ["github.com/mitchellh/mapstructure".fetch] - type = "git" - url = "https://github.com/mitchellh/mapstructure" - rev = "8ebf2d61a8b4adcce25fc9fc9b76e8452a00672f" - sha256 = "1m98wiadb6kdnzv21m8p7nk1jb30zpjh47fkb1dg251r3m7bj47v" - -["github.com/mitchellh/reflectwalk"] - sumVersion = "v1.0.1" - ["github.com/mitchellh/reflectwalk".fetch] - type = "git" - url = "https://github.com/mitchellh/reflectwalk" - rev = "3e2c75dfad4fbf904b58782a80fd595c760ad185" - sha256 = "0pa6a3nhzwv5s5yqcmsmsfhdp5ggxsg2wa86f3akawxrhrkjarnx" - -["github.com/moby/sys/mountinfo"] - sumVersion = "v0.4.1" - relPath = "mountinfo" - ["github.com/moby/sys/mountinfo".fetch] - type = "git" - url = "https://github.com/moby/sys" - rev = "b0f1fd7235275d01bd35cc4421e884e522395f45" - sha256 = "1svicfa0gyq8fcbsl475gpr0y5rgv0389d9yq6hzwz2acrdxyxm2" - -["github.com/moby/term"] - sumVersion = "v0.0.0-20201101162038-25d840ce174a" - ["github.com/moby/term".fetch] - type = "git" - url = "https://github.com/moby/term" - rev = "25d840ce174ae927ca42f8ddc1bddd01d6004593" - sha256 = "12q9hpw38bgm37bxhg6187zy5dw12c01ah7qkw8xyydrlm3pf21a" - -["github.com/modern-go/concurrent"] - sumVersion = "v0.0.0-20180306012644-bacd9c7ef1dd" - ["github.com/modern-go/concurrent".fetch] - type = "git" - url = "https://github.com/modern-go/concurrent" - rev = "bacd9c7ef1dd9b15be4a9909b8ac7a4e313eec94" - sha256 = "0s0fxccsyb8icjmiym5k7prcqx36hvgdwl588y0491gi18k5i4zs" - -["github.com/modern-go/reflect2"] - sumVersion = "v1.0.1" - ["github.com/modern-go/reflect2".fetch] - type = "git" - url = "https://github.com/modern-go/reflect2" - rev = "94122c33edd36123c84d5368cfb2b69df93a0ec8" - sha256 = "06a3sablw53n1dqqbr2f53jyksbxdmmk8axaas4yvnhyfi55k4lf" - -["github.com/mohae/deepcopy"] - sumVersion = "v0.0.0-20170929034955-c48cc78d4826" - ["github.com/mohae/deepcopy".fetch] - type = "git" - url = "https://github.com/mohae/deepcopy" - rev = "c48cc78d482608239f6c4c92a4abd87eb8761c90" - sha256 = "0jdhsz0hsbn0k45rmvm39knbvs024j24ay2q65k5ih8ql8m2c0sd" - -["github.com/moricho/tparallel"] - sumVersion = "v0.2.1" - ["github.com/moricho/tparallel".fetch] - type = "git" - url = "https://github.com/moricho/tparallel" - rev = "88fabab33096f28b37d2734e30c9202ac923a59a" - sha256 = "15ab3vkby29dd004agzdg2rn2hkn13mi793yb0wbadcrn9ra5zbj" - -["github.com/mozilla/scribe"] - sumVersion = "v0.0.0-20180711195314-fb71baf557c1" - ["github.com/mozilla/scribe".fetch] - type = "git" - url = "https://github.com/mozilla/scribe" - rev = "fb71baf557c1eb06ddd77ee832c927e488dc34a2" - sha256 = "1fyl5x7zam2ffjnfl4bmmxfqm8kp0ymy1c2x27fc9sx02qdf5d1b" - -["github.com/mozilla/tls-observatory"] - sumVersion = "v0.0.0-20210609171429-7bc42856d2e5" - ["github.com/mozilla/tls-observatory".fetch] - type = "git" - url = "https://github.com/mozilla/tls-observatory" - rev = "7bc42856d2e5594614b56c2f55baf42bb9751b3d" - sha256 = "1dgyyakx9x9f8gllzavndn8vi2vnqzpfsx1hk3yxmhx1433lwb6x" - -["github.com/mrunalp/fileutils"] - sumVersion = "v0.5.0" - ["github.com/mrunalp/fileutils".fetch] - type = "git" - url = "https://github.com/mrunalp/fileutils" - rev = "d7fdd64cc1cabe10bc154ee7d2318b07b7f296ef" - sha256 = "1zrs959gf4zgi6ijwkdn4dcqk0svfblpaikkqy63q30rqz4swm0x" - -["github.com/mtibben/percent"] - sumVersion = "v0.2.1" - ["github.com/mtibben/percent".fetch] - type = "git" - url = "https://github.com/mtibben/percent" - rev = "07b18b68c1413ce9f8137a8cbd4509fac9e15f0c" - sha256 = "1iqivw8pigj259rj5yifibbvic70f9hb7k24a4sa967s4fj6agb6" - -["github.com/mwitkow/go-conntrack"] - sumVersion = "v0.0.0-20190716064945-2f068394615f" - ["github.com/mwitkow/go-conntrack".fetch] - type = "git" - url = "https://github.com/mwitkow/go-conntrack" - rev = "2f068394615f73e460c2f3d2c158b0ad9321cadb" - sha256 = "0ymjmy12ks7smgwmrwsa5kf07d9w5kpk1dn650azlzr61b561aw7" - -["github.com/mwitkow/go-proto-validators"] - sumVersion = "v0.2.0" - ["github.com/mwitkow/go-proto-validators".fetch] - type = "git" - url = "https://github.com/mwitkow/go-proto-validators" - rev = "d70d97bb65387105677cb21cee7318e4feb7b4b0" - sha256 = "159mf14bs9a07hmiz8j9198bi3za8k4mzc5qc9slj8dhs9a5nczg" - -["github.com/mwitkow/grpc-proxy"] - sumVersion = "v0.0.0-20181017164139-0f1106ef9c76" - ["github.com/mwitkow/grpc-proxy".fetch] - type = "git" - url = "https://github.com/mwitkow/grpc-proxy" - rev = "0f1106ef9c766333b9acb4b81e705da4bade7215" - sha256 = "087kid1xiaxnhdhljcm1587cgiiwr0iznk931znkrz3f4gdjyqa2" - -["github.com/nakabonne/nestif"] - sumVersion = "v0.3.0" - ["github.com/nakabonne/nestif".fetch] - type = "git" - url = "https://github.com/nakabonne/nestif" - rev = "88e8196e5faa6b1eeac0c2e39b4b1c615ba9330a" - sha256 = "01lf3bpif68m97sgr8a06apnf7vzbwi657cg4dcqa0dzh9v1yy6l" - -["github.com/naoina/go-stringutil"] - sumVersion = "v0.1.0" - ["github.com/naoina/go-stringutil".fetch] - type = "git" - url = "https://github.com/naoina/go-stringutil" - rev = "6b638e95a32d0c1131db0e7fe83775cbea4a0d0b" - sha256 = "00831p1wn3rimybk1z8l30787kn1akv5jax5wx743nn76qcmkmc6" - -["github.com/naoina/toml"] - sumVersion = "v0.1.2-0.20170918210437-9fafd6967416" - ["github.com/naoina/toml".fetch] - type = "git" - url = "https://github.com/naoina/toml" - rev = "9fafd69674167c06933b1787ae235618431ce87f" - sha256 = "0mpvdnidgab48k7dfq1vaiz1wny8n29y7zxpipnp1zm8ibxpism0" - -["github.com/nats-io/jwt"] - sumVersion = "v0.3.2" - ["github.com/nats-io/jwt".fetch] - type = "git" - url = "https://github.com/nats-io/jwt" - rev = "0c3fc7aed8bb2534e7bfdf0968a75890402d48cd" - sha256 = "0n44ghpz6hnbd2i074ikrj72rd2vnxpg1g3nhv1ly1kr0832khx6" - -["github.com/nats-io/nats-server/v2"] - sumVersion = "v2.1.2" - ["github.com/nats-io/nats-server/v2".fetch] - type = "git" - url = "https://github.com/nats-io/nats-server" - rev = "679bedafd96f85ddfa56a4d5736517c18842047a" - sha256 = "1jxi6d0zbhisxprlynvqw3dl1lz4wwxiy9gnpaqrwx1yi3kvvg62" - -["github.com/nats-io/nats.go"] - sumVersion = "v1.9.1" - ["github.com/nats-io/nats.go".fetch] - type = "git" - url = "https://github.com/nats-io/nats.go" - rev = "6063d679d23ae5b3edb4030d5e89a6e30ea53bc6" - sha256 = "0mmbwri2k2c8q1w0fr0g5s81709lfr6wyarvaf3gibc7cig10pij" - -["github.com/nats-io/nkeys"] - sumVersion = "v0.1.3" - ["github.com/nats-io/nkeys".fetch] - type = "git" - url = "https://github.com/nats-io/nkeys" - rev = "f1930e19b436412202ab130a733187cc6f40ba7e" - sha256 = "1fip0bja471mavvp67bninpd24jviwpnh7w99kchyiy27lbxy4hp" - -["github.com/nats-io/nuid"] - sumVersion = "v1.0.1" - ["github.com/nats-io/nuid".fetch] - type = "git" - url = "https://github.com/nats-io/nuid" - rev = "4b96681fa6d28dd0ab5fe79bac63b3a493d9ee94" - sha256 = "11zbhg4kds5idsya04bwz4plj0mmiigypzppzih731ppbk2ms1zg" - -["github.com/nbutton23/zxcvbn-go"] - sumVersion = "v0.0.0-20210217022336-fa2cb2858354" - ["github.com/nbutton23/zxcvbn-go".fetch] - type = "git" - url = "https://github.com/nbutton23/zxcvbn-go" - rev = "fa2cb2858354d539804173893953569804ed418e" - sha256 = "026f5y0lprk61f3k4ld7l0hdqa8wpmvg202kj1gbfw8vjmv2kmwa" - -["github.com/neilotoole/errgroup"] - sumVersion = "v0.1.5" - ["github.com/neilotoole/errgroup".fetch] - type = "git" - url = "https://github.com/neilotoole/errgroup" - rev = "1b5ee5ba6837fe62f5c9f2275033db8ec84de004" - sha256 = "0jk0ws9cxdiicfd4w7mpvfgsx4fabgpjhyl8jwbqnzpq2w0pgk6p" - -["github.com/niemeyer/pretty"] - sumVersion = "v0.0.0-20200227124842-a10e7caefd8e" - ["github.com/niemeyer/pretty".fetch] - type = "git" - url = "https://github.com/niemeyer/pretty" - rev = "a10e7caefd8e0d600cea437f5c3613aeb1553d56" - sha256 = "1jmazh4xzaa3v6g46hz60q2z7nmqs9l9cxdzmmscn3kbcs2znq4v" - -["github.com/nishanths/exhaustive"] - sumVersion = "v0.2.3" - ["github.com/nishanths/exhaustive".fetch] - type = "git" - url = "https://github.com/nishanths/exhaustive" - rev = "8e9e266c28907bb734455b4eba68a1322c19c11e" - sha256 = "0xqx37p8jkk19jqxarjyscwm27f263i0kjcjy8xv78i39rnz3jal" - -["github.com/nishanths/predeclared"] - sumVersion = "v0.2.1" - ["github.com/nishanths/predeclared".fetch] - type = "git" - url = "https://github.com/nishanths/predeclared" - rev = "9533edc13e0840594ced336563bc73ff1a0bdf50" - sha256 = "0rr8h4wnz3g6hlkrwkaz3c4q744j0snf3b2aa6gjm57gkka2zhnc" - -["github.com/nxadm/tail"] - sumVersion = "v1.4.8" - ["github.com/nxadm/tail".fetch] - type = "git" - url = "https://github.com/nxadm/tail" - rev = "abad231d8d07ef91e09cd4c4c457cac35ed3bbb9" - sha256 = "1j2gi485fhwdpmyzn42wk62103fclwbfywg42p275z1qv2bsz1rc" - -["github.com/oklog/oklog"] - sumVersion = "v0.3.2" - ["github.com/oklog/oklog".fetch] - type = "git" - url = "https://github.com/oklog/oklog" - rev = "e3ad1c411c27b4bc18c5facb9331820d141a5a54" - sha256 = "1xnjxhgi0zm51skl533la50h133a245i57wqa3h7fr2lv2jqpzny" - -["github.com/oklog/run"] - sumVersion = "v1.0.0" - ["github.com/oklog/run".fetch] - type = "git" - url = "https://github.com/oklog/run" - rev = "4dadeb3030eda0273a12382bb2348ffc7c9d1a39" - sha256 = "1pbjza4claaj95fpqvvfrysvs10y7dm0pl6qr5lzh6qy1vnhmcgw" - -["github.com/oklog/ulid"] - sumVersion = "v1.3.1" - ["github.com/oklog/ulid".fetch] - type = "git" - url = "https://github.com/oklog/ulid" - rev = "02a8604050d8466dd915307496174adb9be4593a" - sha256 = "0hybwyid820n80axrk863k2py93hbqlq6hxhf84ppmz0qd0ys0gq" - -["github.com/olekukonko/tablewriter"] - sumVersion = "v0.0.5" - ["github.com/olekukonko/tablewriter".fetch] - type = "git" - url = "https://github.com/olekukonko/tablewriter" - rev = "c7d2a8a09b076b70918308a3cd95464b2ae3b5d8" - sha256 = "0zhnrih2px6jm8nxzkz8s7va3lj03bzwxim8wjba9zh7i78bp67z" - -["github.com/onsi/ginkgo"] - sumVersion = "v1.16.4" - ["github.com/onsi/ginkgo".fetch] - type = "git" - url = "https://github.com/onsi/ginkgo" - rev = "d125cd027fee341b3b3d65858a4121cf4931fead" - sha256 = "0rpzh0vg2k33szcq17rdwjvj3q6djp7vqfvasck40gsibadimnd7" - -["github.com/onsi/gomega"] - sumVersion = "v1.13.0" - ["github.com/onsi/gomega".fetch] - type = "git" - url = "https://github.com/onsi/gomega" - rev = "dbc6ecdcc526d81592dab902de6cbaf7be9a8a13" - sha256 = "1x49qblj010z4xvfj7c4jh9q9awrkvbwnfrglvbh30gglmmsss8g" - -["github.com/op/go-logging"] - sumVersion = "v0.0.0-20160315200505-970db520ece7" - ["github.com/op/go-logging".fetch] - type = "git" - url = "https://github.com/op/go-logging" - rev = "970db520ece77730c7e4724c61121037378659d9" - sha256 = "1cpna2x5l071z1vrnk7zipdkka8dzwsjyx7m79xk0lr08rip0kcj" - -["github.com/opencontainers/go-digest"] - sumVersion = "v1.0.0" - ["github.com/opencontainers/go-digest".fetch] - type = "git" - url = "https://github.com/opencontainers/go-digest" - rev = "ea51bea511f75cfa3ef6098cc253c5c3609b037a" - sha256 = "0i5acjajvr6hi9zb7gxwifd8w28y884cv7cx36adj8lngj647xbi" - -["github.com/opencontainers/image-spec"] - sumVersion = "v1.0.1" - ["github.com/opencontainers/image-spec".fetch] - type = "git" - url = "https://github.com/opencontainers/image-spec" - rev = "d60099175f88c47cd379c4738d158884749ed235" - sha256 = "03dvbj3dln8c55v9gp79mgmz2yi2ws3r08iyz2fk41y3i22iaw1q" - -["github.com/opencontainers/runc"] - sumVersion = "v1.0.2" - ["github.com/opencontainers/runc".fetch] - type = "git" - url = "https://github.com/opencontainers/runc" - rev = "52b36a2dd837e8462de8e01458bf02cf9eea47dd" - sha256 = "1bpckghjah0rczciw1a1ab8z718lb2d3k4mjm4zb45lpm3njmrcp" - -["github.com/opencontainers/runtime-spec"] - sumVersion = "v1.0.3-0.20210326190908-1c3f411f0417" - ["github.com/opencontainers/runtime-spec".fetch] - type = "git" - url = "https://github.com/opencontainers/runtime-spec" - rev = "1c3f411f041711bbeecf35ff7e93461ea6789220" - sha256 = "1azk8z41ga8af35c966f06vrq9y9hwz6mkm59r3py5qaamzim3qq" - -["github.com/opencontainers/selinux"] - sumVersion = "v1.8.2" - ["github.com/opencontainers/selinux".fetch] - type = "git" - url = "https://github.com/opencontainers/selinux" - rev = "76bc82e11d854d3e40c08889d13c98abcea72ea2" - sha256 = "1dl1h8nzpyhsfki1dcjphm5h4n52qwilahyl6qlnwgzcc76pwizq" - -["github.com/opentracing-contrib/go-observer"] - sumVersion = "v0.0.0-20170622124052-a52f23424492" - ["github.com/opentracing-contrib/go-observer".fetch] - type = "git" - url = "https://github.com/opentracing-contrib/go-observer" - rev = "a52f2342449246d5bcc273e65cbdcfa5f7d6c63c" - sha256 = "1q7z458m2vh3bzml4x9vm2paffqn1jcgiydbisl0zg2asfniq7k3" - -["github.com/opentracing/basictracer-go"] - sumVersion = "v1.0.0" - ["github.com/opentracing/basictracer-go".fetch] - type = "git" - url = "https://github.com/opentracing/basictracer-go" - rev = "1b32af207119a14b1b231d451df3ed04a72efebf" - sha256 = "0hs969asib4yqj5k755zr0byz2iqvjbs6z1szcnr50q6fihigca0" - -["github.com/opentracing/opentracing-go"] - sumVersion = "v1.1.0" - ["github.com/opentracing/opentracing-go".fetch] - type = "git" - url = "https://github.com/opentracing/opentracing-go" - rev = "659c90643e714681897ec2521c60567dd21da733" - sha256 = "0aj9cbm21zsg1i5l25hz8gn0yf99yxyxcp1gqh3yd5g4knj2cgzf" - -["github.com/openzipkin-contrib/zipkin-go-opentracing"] - sumVersion = "v0.4.5" - ["github.com/openzipkin-contrib/zipkin-go-opentracing".fetch] - type = "git" - url = "https://github.com/openzipkin-contrib/zipkin-go-opentracing" - rev = "223664cff43dfd9f54659ff15dc4bd6e023d0c14" - sha256 = "0mdvx50mw17c926rhhkjg8z54v8h0jvnqahdlpij2kbxi3ncgr7q" - -["github.com/openzipkin/zipkin-go"] - sumVersion = "v0.2.2" - ["github.com/openzipkin/zipkin-go".fetch] - type = "git" - url = "https://github.com/openzipkin/zipkin-go" - rev = "c29478e51bfb2e9c93e0e9f5e015e5993a490399" - sha256 = "18c884anq0pkahmjwyhrdg247wyq33ccxp5k7fcq5gzh8g6dj92s" - -["github.com/ory/dockertest"] - sumVersion = "v3.3.5+incompatible" - ["github.com/ory/dockertest".fetch] - type = "git" - url = "https://github.com/ory/dockertest" - rev = "2b0896a948c60f3207381d9fc259d0fc13227c30" - sha256 = "0fgj60l82sl6chd7i4s7lxqjr9hxkzmkaxnc8h6qbvn42246sy68" - -["github.com/ory/dockertest/v3"] - sumVersion = "v3.6.2" - ["github.com/ory/dockertest/v3".fetch] - type = "git" - url = "https://github.com/ory/dockertest" - rev = "36806f72591f1ca547f5206db7a8565458487ea5" - sha256 = "0anrdf1m61g35sc7d6j5hrbnz81i5z1jzg21wbp25ls95bajw0bs" - -["github.com/otiai10/copy"] - sumVersion = "v1.6.0" - ["github.com/otiai10/copy".fetch] - type = "git" - url = "https://github.com/otiai10/copy" - rev = "edeb9f37d4d0c28725014fcab6635120197932a1" - sha256 = "1l84qx9n464nh1izgr1kx5xb1ab878b2x803fck0w9gy1bwch25h" - -["github.com/otiai10/curr"] - sumVersion = "v1.0.0" - ["github.com/otiai10/curr".fetch] - type = "git" - url = "https://github.com/otiai10/curr" - rev = "88e2f2cffa0b5f13e90ee963a321bd1b2f715561" - sha256 = "0fpw20adq2wff7l4c87zaavj9jra4d64a8bbjixiiv3bbarim987" - -["github.com/otiai10/mint"] - sumVersion = "v1.3.2" - ["github.com/otiai10/mint".fetch] - type = "git" - url = "https://github.com/otiai10/mint" - rev = "3588d691480a831b1e78b776d3bccd9d5ce6461c" - sha256 = "0448nkhmp1ny64g2d7m5x8inz118zj03j6q0b97q3dszzs7hhan4" - -["github.com/pact-foundation/pact-go"] - sumVersion = "v1.0.4" - ["github.com/pact-foundation/pact-go".fetch] - type = "git" - url = "https://github.com/pact-foundation/pact-go" - rev = "3ce08c8af46b7bc33a06efc9b8807c08806c8af2" - sha256 = "08mnyf1yb6zjqfzs1pdh44drv390lfilhh4vi4asnjk52gknqfn0" - -["github.com/pascaldekloe/goe"] - sumVersion = "v0.1.0" - ["github.com/pascaldekloe/goe".fetch] - type = "git" - url = "https://github.com/pascaldekloe/goe" - rev = "57f6aae5913c64c9bcae5dbdffd33365b5a7f138" - sha256 = "1dqd3mfb4z2vmv6pg6fhgvfc53vhndk24wcl9lj1rz02n6m279fq" - -["github.com/pborman/uuid"] - sumVersion = "v1.2.0" - ["github.com/pborman/uuid".fetch] - type = "git" - url = "https://github.com/pborman/uuid" - rev = "8b1b92947f46224e3b97bb1a3a5b0382be00d31e" - sha256 = "0f146yjqwx2mr110kl8scjhqd08hys7vr5z0d0a3lskb6yy22gfg" - -["github.com/pelletier/go-toml"] - sumVersion = "v1.9.3" - ["github.com/pelletier/go-toml".fetch] - type = "git" - url = "https://github.com/pelletier/go-toml" - rev = "8e44986c28d58aefff6125e52814ed1eb7eb0a6a" - sha256 = "0cqwnvlgs1wgdgjxlwv8j52f7d6syniadr51sjh2fya99m5wzvsn" - -["github.com/performancecopilot/speed"] - sumVersion = "v3.0.0+incompatible" - ["github.com/performancecopilot/speed".fetch] - type = "git" - url = "https://github.com/performancecopilot/speed" - rev = "839069a3ed70162d3bcefb9891c8ca852d877c1c" - sha256 = "1r0l6i80xkx9dcysa7ajvs5ypqkw2k0422k0hbz28fizaq9d8y0m" - -["github.com/peterbourgon/diskv"] - sumVersion = "v2.0.1+incompatible" - ["github.com/peterbourgon/diskv".fetch] - type = "git" - url = "https://github.com/peterbourgon/diskv" - rev = "5f041e8faa004a95c88a202771f4cc3e991971e6" - sha256 = "1mxpa5aad08x30qcbffzk80g9540wvbca4blc1r2qyzl65b8929b" - -["github.com/peterh/liner"] - sumVersion = "v1.1.1-0.20190123174540-a2c9a5303de7" - ["github.com/peterh/liner".fetch] - type = "git" - url = "https://github.com/peterh/liner" - rev = "a2c9a5303de792c7581a3b80a8f10258319bb20e" - sha256 = "1cxpr92adcyv4bimswkfg3cmpmk71zq9gpyckhc64j2p4r4mb8zr" - -["github.com/petermattis/goid"] - sumVersion = "v0.0.0-20180202154549-b0b1615b78e5" - ["github.com/petermattis/goid".fetch] - type = "git" - url = "https://github.com/petermattis/goid" - rev = "b0b1615b78e5ee59739545bb38426383b2cda4c9" - sha256 = "0ghfxn045r0bbn2vszw897lxzmhnm4k59aypjvpxl0pbzsw9ab2c" - -["github.com/phayes/checkstyle"] - sumVersion = "v0.0.0-20170904204023-bfd46e6a821d" - ["github.com/phayes/checkstyle".fetch] - type = "git" - url = "https://github.com/phayes/checkstyle" - rev = "bfd46e6a821d07762e664fb4fdde8bb90bb3668c" - sha256 = "0bdfvgvm8gnrxdndnbvwcfjijxyn4c9xcmd11w5bbaz05c40dshx" - -["github.com/pierrec/lz4"] - sumVersion = "v2.0.5+incompatible" - ["github.com/pierrec/lz4".fetch] - type = "git" - url = "https://github.com/pierrec/lz4" - rev = "ea731401f5c95a8ba30f15787e5e0fb77c60c66b" - sha256 = "0y5rh7z01zycd59nnjpkqq0ydyjmcg9j1xw15q1i600l9j9g617p" - -["github.com/pkg/errors"] - sumVersion = "v0.9.1" - ["github.com/pkg/errors".fetch] - type = "git" - url = "https://github.com/pkg/errors" - rev = "614d223910a179a466c1767a985424175c39b465" - sha256 = "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq" - -["github.com/pkg/profile"] - sumVersion = "v1.2.1" - ["github.com/pkg/profile".fetch] - type = "git" - url = "https://github.com/pkg/profile" - rev = "5b67d428864e92711fcbd2f8629456121a56d91f" - sha256 = "0blqmvgqvdbqmh3fp9pfdxc9w1qfshrr0zy9whj0sn372bw64qnr" - -["github.com/pkg/sftp"] - sumVersion = "v1.10.1" - ["github.com/pkg/sftp".fetch] - type = "git" - url = "https://github.com/pkg/sftp" - rev = "3edd153f213d8d4191a0ee4577c61cca19436632" - sha256 = "0iw6lijdljwh5xw5hsy0b578cr52h6vvm7hbnzlrvciwhh4sfhhp" - -["github.com/pmezard/go-difflib"] - sumVersion = "v1.0.0" - ["github.com/pmezard/go-difflib".fetch] - type = "git" - url = "https://github.com/pmezard/go-difflib" - rev = "792786c7400a136282c1664665ae0a8db921c6c2" - sha256 = "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw" - -["github.com/polyfloyd/go-errorlint"] - sumVersion = "v0.0.0-20210722154253-910bb7978349" - ["github.com/polyfloyd/go-errorlint".fetch] - type = "git" - url = "https://github.com/polyfloyd/go-errorlint" - rev = "910bb7978349f0c57ba0b49eee6426a312eb9dfd" - sha256 = "18w78ah0fz9vy136ks42ys2pmibjmanw98sx7s6hhhrx1sdij983" - -["github.com/posener/complete"] - sumVersion = "v1.1.1" - ["github.com/posener/complete".fetch] - type = "git" - url = "https://github.com/posener/complete" - rev = "98eb9847f27ba2008d380a32c98be474dea55bdf" - sha256 = "1nbdiybjizbaxbf5q0xwbq0cjqw4bl6jggvsjzrpif0w86fcjda2" - -["github.com/prometheus/client_golang"] - sumVersion = "v1.11.0" - ["github.com/prometheus/client_golang".fetch] - type = "git" - url = "https://github.com/prometheus/client_golang" - rev = "8184d76b3b0bd3b01ed903690431ccb6826bf3e0" - sha256 = "1xdspykw6wgp0bv7s1r7gklvhr5jfmi59n8bg8zhy3vi0yi902y3" - -["github.com/prometheus/client_model"] - sumVersion = "v0.2.0" - ["github.com/prometheus/client_model".fetch] - type = "git" - url = "https://github.com/prometheus/client_model" - rev = "7bc5445566f0fe75b15de23e6b93886e982d7bf9" - sha256 = "0jffnz94d6ff39fr96b5w8i8yk26pwnrfggzz8jhi8k0yihg2c9d" - -["github.com/prometheus/common"] - sumVersion = "v0.29.0" - ["github.com/prometheus/common".fetch] - type = "git" - url = "https://github.com/prometheus/common" - rev = "8281fb2779ab057c7d90fec6b24ce8eb29edcc13" - sha256 = "09zavm3005skf5mgkr2xndpcga2m3zpm4iq2r7kwyqc5q0cpq02m" - -["github.com/prometheus/procfs"] - sumVersion = "v0.6.0" - ["github.com/prometheus/procfs".fetch] - type = "git" - url = "https://github.com/prometheus/procfs" - rev = "e971af51d579a49db14657a96eebec39cefb4755" - sha256 = "0czzw37dq0sfq7rivxmxxw5hy287grqnng6q6hfz6mkqmhqgm1m6" - -["github.com/prometheus/tsdb"] - sumVersion = "v0.7.1" - ["github.com/prometheus/tsdb".fetch] - type = "git" - url = "https://github.com/prometheus/tsdb" - rev = "c20450564cc42983bf923c13f3fda42de709ac13" - sha256 = "1c1da8i5byvhh4fp3vqjfb65aaksjskn3ggb8wg9hcfzjrhgpz04" - -["github.com/pseudomuto/protoc-gen-doc"] - sumVersion = "v1.3.2" - ["github.com/pseudomuto/protoc-gen-doc".fetch] - type = "git" - url = "https://github.com/pseudomuto/protoc-gen-doc" - rev = "56ed70214364d41f78e82050ac2a4e620aa5cbd1" - sha256 = "0hwl0fh9c3g0z784cr4d22v03nlkxvwg36cisgvjzpif4i8kwf4b" - -["github.com/pseudomuto/protokit"] - sumVersion = "v0.2.0" - ["github.com/pseudomuto/protokit".fetch] - type = "git" - url = "https://github.com/pseudomuto/protokit" - rev = "c63c13958542d70af1d1ef7826d30b25cd5bf6e9" - sha256 = "14l1y989136xmbp5vigr41r594hh9h1nfx8bl5gkjrk585akrmmr" - -["github.com/quasilyte/go-consistent"] - sumVersion = "v0.0.0-20190521200055-c6f3937de18c" - ["github.com/quasilyte/go-consistent".fetch] - type = "git" - url = "https://github.com/quasilyte/go-consistent" - rev = "c6f3937de18cf505dce778903e72b1a57948edcc" - sha256 = "1x0bg7nvqdcgl30z59sil2ildj2kng44v19y2c98kqgiy804q4f0" - -["github.com/quasilyte/go-ruleguard"] - sumVersion = "v0.3.4" - ["github.com/quasilyte/go-ruleguard".fetch] - type = "git" - url = "https://github.com/quasilyte/go-ruleguard" - rev = "211cfa6c95567fa7944a0dcd9c2db87c30fb6eba" - sha256 = "0fd5w7l2wmspgi6x8wcdhc6fg5j5y87pg5lxwgbv8b4k0gid6min" - -["github.com/quasilyte/go-ruleguard/dsl"] - sumVersion = "v0.3.2" - relPath = "dsl" - ["github.com/quasilyte/go-ruleguard/dsl".fetch] - type = "git" - url = "https://github.com/quasilyte/go-ruleguard" - rev = "bce90d218dc80709015c147aa60a9f8f8987725e" - sha256 = "1m5b2x82z1z3jxgxcvx233nwg44vq7fsjz0v0arx08hch9b98qkc" - -["github.com/quasilyte/go-ruleguard/rules"] - sumVersion = "v0.0.0-20210203162857-b223e0831f88" - relPath = "rules" - ["github.com/quasilyte/go-ruleguard/rules".fetch] - type = "git" - url = "https://github.com/quasilyte/go-ruleguard" - rev = "b223e0831f880a3f9dd9fc284d811c0d642895e2" - sha256 = "0im4ci6kwfa3smdy3dwm3w86jv3rlz6ck0yv02v4882a0gxigjm5" - -["github.com/quasilyte/regex/syntax"] - sumVersion = "v0.0.0-20200407221936-30656e2c4a95" - relPath = "syntax" - ["github.com/quasilyte/regex/syntax".fetch] - type = "git" - url = "https://github.com/quasilyte/regex" - rev = "30656e2c4a955b410d658e04b5b9cd44d03d735b" - sha256 = "02kqr5zqxmqys6ncrz9zk5hcmxqxabnfy8kf0nhd306z55bv02b1" - -["github.com/rakyll/statik"] - sumVersion = "v0.1.7" - ["github.com/rakyll/statik".fetch] - type = "git" - url = "https://github.com/rakyll/statik" - rev = "46bd79c4540341fe472fe71dd2ce0ccd4e635450" - sha256 = "0y0kbzma55vmyqhyrw9ssgvxn6nw7d0zg72a7nz8vp1zly4hs6va" - -["github.com/rcrowley/go-metrics"] - sumVersion = "v0.0.0-20200313005456-10cdbea86bc0" - ["github.com/rcrowley/go-metrics".fetch] - type = "git" - url = "https://github.com/rcrowley/go-metrics" - rev = "10cdbea86bc0b922507ce91d43f4f78a5bea2e8f" - sha256 = "157rfn5kf1mdn65gay38zpv6zam3sfa5a3zkx9wxk77y7w3kam19" - -["github.com/regen-network/cosmos-proto"] - sumVersion = "v0.3.1" - ["github.com/regen-network/cosmos-proto".fetch] - type = "git" - url = "https://github.com/regen-network/cosmos-proto" - rev = "f793b6157c2cfb8c1c797100e1918b2d1eb40615" - sha256 = "05sk9jhk4qz5m4vkj0wr0swhvq9niz7v7bvpxh063vz0y6mmpj05" - -["github.com/rjeczalik/notify"] - sumVersion = "v0.9.1" - ["github.com/rjeczalik/notify".fetch] - type = "git" - url = "https://github.com/rjeczalik/notify" - rev = "0f065fa99b48b842c3fd3e2c8b194c6f2b69f6b8" - sha256 = "15zzgyry10hvg0z2d3fm1yncbscln9mmvgsm29w67yncf6n8vcb0" - -["github.com/rogpeppe/fastuuid"] - sumVersion = "v1.2.0" - ["github.com/rogpeppe/fastuuid".fetch] - type = "git" - url = "https://github.com/rogpeppe/fastuuid" - rev = "10c3923834d38e951ae8f627bfec2dc632c5b6cb" - sha256 = "028acdg63zkxpjz3l639nlhki2l0canr2v5jglrmwa1wpjqcfff8" - -["github.com/rogpeppe/go-internal"] - sumVersion = "v1.6.2" - ["github.com/rogpeppe/go-internal".fetch] - type = "git" - url = "https://github.com/rogpeppe/go-internal" - rev = "1115b6af0369aff6bd0766818c61a9a75678c6cc" - sha256 = "14snr12d3dpcsdfbcz8iz55if4mc2ia5x9rqzfbj32f90c9lw4bp" - -["github.com/rs/cors"] - sumVersion = "v1.7.0" - ["github.com/rs/cors".fetch] - type = "git" - url = "https://github.com/rs/cors" - rev = "db0fe48135e83b5812a5a31be0eea66984b1b521" - sha256 = "1abz6jxp7bhcwwsgcz9ajkijspkc46s0chrhqspy4czskmmazygi" - -["github.com/rs/xhandler"] - sumVersion = "v0.0.0-20160618193221-ed27b6fd6521" - ["github.com/rs/xhandler".fetch] - type = "git" - url = "https://github.com/rs/xhandler" - rev = "ed27b6fd65218132ee50cd95f38474a3d8a2cd12" - sha256 = "1fpp4rh812nvr5m0s0d5dsa1ypr4333mcijng0dp5bcgg2bqkwdz" - -["github.com/rs/xid"] - sumVersion = "v1.2.1" - ["github.com/rs/xid".fetch] - type = "git" - url = "https://github.com/rs/xid" - rev = "15d26544def341f036c5f8dca987a4cbe575032c" - sha256 = "1vgw1dikqw273awcci6pzifs7shkl5ah4l88j1zjbnpgbiwzlx9j" - -["github.com/rs/zerolog"] - sumVersion = "v1.23.0" - ["github.com/rs/zerolog".fetch] - type = "git" - url = "https://github.com/rs/zerolog" - rev = "117cb53bc66413d9a810ebed32383e53416347e3" - sha256 = "1cz9g25b47hxhz2nd15pcxarzwnwknm4f2nm4dspr1l99jxll733" - -["github.com/russross/blackfriday"] - sumVersion = "v1.5.2" - ["github.com/russross/blackfriday".fetch] - type = "git" - url = "https://github.com/russross/blackfriday" - rev = "05f3235734ad95d0016f6a23902f06461fcf567a" - sha256 = "0jzbfzcywqcrnym4gxlz6nphmm1grg6wsl4f0r9x384rn83wkj7c" - -["github.com/russross/blackfriday/v2"] - sumVersion = "v2.0.1" - ["github.com/russross/blackfriday/v2".fetch] - type = "git" - url = "https://github.com/russross/blackfriday" - rev = "d3b5b032dc8e8927d31a5071b56e14c89f045135" - sha256 = "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j" - -["github.com/ryancurrah/gomodguard"] - sumVersion = "v1.2.3" - ["github.com/ryancurrah/gomodguard".fetch] - type = "git" - url = "https://github.com/ryancurrah/gomodguard" - rev = "0decae5e66a21da9ca569652a9cf3d211f52017e" - sha256 = "0ppiliiki059gn47qgcj31mkya41pl5cxz6527s2iyy3gfan13an" - -["github.com/ryanrolds/sqlclosecheck"] - sumVersion = "v0.3.0" - ["github.com/ryanrolds/sqlclosecheck".fetch] - type = "git" - url = "https://github.com/ryanrolds/sqlclosecheck" - rev = "ca0d595701689bbb6decd11453747fb3455f89ad" - sha256 = "0s0zvsdkqlsv2j0hq40kd41qvbqk3y2s2r3smzhy63a9qx4qppvx" - -["github.com/ryanuber/columnize"] - sumVersion = "v0.0.0-20160712163229-9b3edd62028f" - ["github.com/ryanuber/columnize".fetch] - type = "git" - url = "https://github.com/ryanuber/columnize" - rev = "9b3edd62028f107d7cabb19353292afd29311a4e" - sha256 = "1ya1idkbb0a9fjlhkcnh5a9yvpwzwfmbyg7d56lpplwr9rqi1da4" - -["github.com/samuel/go-zookeeper"] - sumVersion = "v0.0.0-20190923202752-2cc03de413da" - ["github.com/samuel/go-zookeeper".fetch] - type = "git" - url = "https://github.com/samuel/go-zookeeper" - rev = "2cc03de413da42869e2db7ce7965d3e978d917eb" - sha256 = "11z2r73q6qk9xy3mzkhdxd7cbfqsdr0105d5m03q4r47fki46hgx" - -["github.com/sanposhiho/wastedassign/v2"] - sumVersion = "v2.0.6" - ["github.com/sanposhiho/wastedassign/v2".fetch] - type = "git" - url = "https://github.com/sanposhiho/wastedassign" - rev = "7f7461e8f4b79a495a2fb3bbdb5f5bcbaf8a8e67" - sha256 = "0c514b6xr67lgmsxbps83y63559167gh405sj62h8y723hchf2d1" - -["github.com/sasha-s/go-deadlock"] - sumVersion = "v0.2.1-0.20190427202633-1595213edefa" - ["github.com/sasha-s/go-deadlock".fetch] - type = "git" - url = "https://github.com/sasha-s/go-deadlock" - rev = "1595213edefa28ca5047b00340c63557f9c051d0" - sha256 = "06h5g16zlfnw9wvgaqp7jfav3n3pvli6asfcx1hv44sl601wnwk0" - -["github.com/sean-/seed"] - sumVersion = "v0.0.0-20170313163322-e2103e2c3529" - ["github.com/sean-/seed".fetch] - type = "git" - url = "https://github.com/sean-/seed" - rev = "e2103e2c35297fb7e17febb81e49b312087a2372" - sha256 = "0glir8jxi1w7aga2jwdb63pp1h8q4whknili7xixsqzwyy716125" - -["github.com/seccomp/libseccomp-golang"] - sumVersion = "v0.9.1" - ["github.com/seccomp/libseccomp-golang".fetch] - type = "git" - url = "https://github.com/seccomp/libseccomp-golang" - rev = "689e3c1541a84461afc49c1c87352a6cedf72e9c" - sha256 = "022c8prvxz0shrifams7lq4xidvkcqg9xi87wjjcpmbikqi72cna" - -["github.com/securego/gosec/v2"] - sumVersion = "v2.8.1" - ["github.com/securego/gosec/v2".fetch] - type = "git" - url = "https://github.com/securego/gosec" - rev = "3f800cc8cabf715660987c263e7b8be3e532532c" - sha256 = "0l2161apsyhqyqgcmkmmqxh8hf04cjlq1811lkzl2wd48x406l02" - -["github.com/segmentio/fasthash"] - sumVersion = "v1.0.3" - ["github.com/segmentio/fasthash".fetch] - type = "git" - url = "https://github.com/segmentio/fasthash" - rev = "9dc1b83dc0d8bf7d26ea69d6c6d7a11ebf6fbb89" - sha256 = "0wrlviycj5hz4w576f156h2cpnnmkflfx5jfj298qzn5lymnqv86" - -["github.com/sergi/go-diff"] - sumVersion = "v1.1.0" - ["github.com/sergi/go-diff".fetch] - type = "git" - url = "https://github.com/sergi/go-diff" - rev = "58c5cb1602ee9676b5d3590d782bedde80706fcc" - sha256 = "0ir8ali2vx0j7pipmlfd6k8c973akyy2nmbjrf008fm800zcp7z2" - -["github.com/shazow/go-diff"] - sumVersion = "v0.0.0-20160112020656-b6b7b6733b8c" - ["github.com/shazow/go-diff".fetch] - type = "git" - url = "https://github.com/shazow/go-diff" - rev = "b6b7b6733b8c9589e2452df9345ddaf75badd0db" - sha256 = "095q9cc94j8p7c2z1007gjac35xnhixlfdi46c4kacvspz833bgr" - -["github.com/shirou/gopsutil"] - sumVersion = "v2.20.5+incompatible" - ["github.com/shirou/gopsutil".fetch] - type = "git" - url = "https://github.com/shirou/gopsutil" - rev = "663af789c0858f2ede24f71a8dfba3643100dec9" - sha256 = "1q115pn37ymfqis43sm82iivbab4zk4gmjng21yb54vjk8pzsjvr" - -["github.com/shirou/gopsutil/v3"] - sumVersion = "v3.21.7" - relPath = "v3" - ["github.com/shirou/gopsutil/v3".fetch] - type = "git" - url = "https://github.com/shirou/gopsutil" - rev = "ae17bb5860aced0c9e072fcaf0b903d8f540262a" - sha256 = "1r93wwxl9c2qsal6yjg8qh9k192iz9sw1pxvklcffmvws2nnhrnj" - -["github.com/shurcooL/go"] - sumVersion = "v0.0.0-20180423040247-9e1955d9fb6e" - ["github.com/shurcooL/go".fetch] - type = "git" - url = "https://github.com/shurcooL/go" - rev = "9e1955d9fb6e1ee2345ba1f5e71669263e719e27" - sha256 = "1lad9bvs75jsn61cfza19739c2c057k0bqxg2b4xz3z3l4w1mkqj" - -["github.com/shurcooL/go-goon"] - sumVersion = "v0.0.0-20170922171312-37c2f522c041" - ["github.com/shurcooL/go-goon".fetch] - type = "git" - url = "https://github.com/shurcooL/go-goon" - rev = "37c2f522c041b74919a9e5e3a6c5c47eb34730a5" - sha256 = "17ac6j6msdcxbmfhq6pxhw5z339b87bd6ciln9909drjv2szyxqv" - -["github.com/shurcooL/sanitized_anchor_name"] - sumVersion = "v1.0.0" - ["github.com/shurcooL/sanitized_anchor_name".fetch] - type = "git" - url = "https://github.com/shurcooL/sanitized_anchor_name" - rev = "7bfe4c7ecddb3666a94b053b422cdd8f5aaa3615" - sha256 = "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f" - -["github.com/sirupsen/logrus"] - sumVersion = "v1.8.1" - ["github.com/sirupsen/logrus".fetch] - type = "git" - url = "https://github.com/sirupsen/logrus" - rev = "bdc0db8ead3853c56b7cd1ac2ba4e11b47d7da6b" - sha256 = "0rvqzic2zz7fpxyizmqxwmhv1m52ii9bgxnqa6km8wsa0l08wh42" - -["github.com/smartystreets/assertions"] - sumVersion = "v0.0.0-20180927180507-b2de0cb4f26d" - ["github.com/smartystreets/assertions".fetch] - type = "git" - url = "https://github.com/smartystreets/assertions" - rev = "b2de0cb4f26d0705483a2f495d89896d0b808573" - sha256 = "1i7ldgavgl35c7gk25p7bvdr282ckng090zr4ch9mk1705akx09y" - -["github.com/smartystreets/goconvey"] - sumVersion = "v1.6.4" - ["github.com/smartystreets/goconvey".fetch] - type = "git" - url = "https://github.com/smartystreets/goconvey" - rev = "505e419363375c0dc132d3ac02632a4ee32199ca" - sha256 = "07zjxwszayal88z1j2bwnqrsa32vg8l4nivks5yfr9j8xfsw7n6m" - -["github.com/snikch/goodman"] - sumVersion = "v0.0.0-20171125024755-10e37e294daa" - ["github.com/snikch/goodman".fetch] - type = "git" - url = "https://github.com/snikch/goodman" - rev = "10e37e294daa3c9a90abded60ff9924bafab3888" - sha256 = "0n6m17lmlfsynd7ja3s3w7pgpi7zdyakqbg4ahzdq9918fwddqmp" - -["github.com/soheilhy/cmux"] - sumVersion = "v0.1.4" - ["github.com/soheilhy/cmux".fetch] - type = "git" - url = "https://github.com/soheilhy/cmux" - rev = "e09e9389d85d8492d313d73d1469c029e710623f" - sha256 = "1f736g68d9vwlyfb6g0fxkr0r875369xafk30cz8kaq5niaqwv0h" - -["github.com/sonatard/noctx"] - sumVersion = "v0.0.1" - ["github.com/sonatard/noctx".fetch] - type = "git" - url = "https://github.com/sonatard/noctx" - rev = "45f5b560ec1a4f160e71e1cc204eba81cef8fa86" - sha256 = "0wpi120594ranybjlk9wndgv0yqqq5bbhnvwi10dnal8crvb54bs" - -["github.com/sony/gobreaker"] - sumVersion = "v0.4.1" - ["github.com/sony/gobreaker".fetch] - type = "git" - url = "https://github.com/sony/gobreaker" - rev = "21dbfda1fc5e89b91bd0c835a91c31fe4d461e88" - sha256 = "0iarblm3w2d0p997jsw9bkznfj0wa8d586nh37ii5gnqy41va700" - -["github.com/sourcegraph/go-diff"] - sumVersion = "v0.6.1" - ["github.com/sourcegraph/go-diff".fetch] - type = "git" - url = "https://github.com/sourcegraph/go-diff" - rev = "842d2c12cc52ab06942669cffeb4e2b43d8c0c71" - sha256 = "0ic58wi4cac61kh5sasn9iylcbzbqawlzva964rk0y0nifsyjcmc" - -["github.com/spaolacci/murmur3"] - sumVersion = "v1.1.0" - ["github.com/spaolacci/murmur3".fetch] - type = "git" - url = "https://github.com/spaolacci/murmur3" - rev = "f09979ecbc725b9e6d41a297405f65e7e8804acc" - sha256 = "1lv3zyz3jy2d76bhvvs8svygx66606iygdvwy5cwc0p5z8yghq25" - -["github.com/spf13/afero"] - sumVersion = "v1.6.0" - ["github.com/spf13/afero".fetch] - type = "git" - url = "https://github.com/spf13/afero" - rev = "bc94f58beda5dbff6f74599fcb1f1717c5b1c111" - sha256 = "0yi8p0yxiidpcg4cagxg2iyqcaapsng89rak4qyxmgails2fqg37" - -["github.com/spf13/cast"] - sumVersion = "v1.4.1" - ["github.com/spf13/cast".fetch] - type = "git" - url = "https://github.com/spf13/cast" - rev = "88075729b052bca4b8b6c31bf198db2fe6c9da93" - sha256 = "06qsfpvcbgkf2pvcvf9l46fj55kmbhp2yz382fkj5gll2bykx9ld" - -["github.com/spf13/cobra"] - sumVersion = "v1.2.1" - ["github.com/spf13/cobra".fetch] - type = "git" - url = "https://github.com/spf13/cobra" - rev = "de187e874d1ca382320088f8f6d76333408e5c2e" - sha256 = "091kz3xnlsgpqb90fc5nhjr4yfr8b8sjnyl0zd4wm1fgzkpw09jh" - -["github.com/spf13/jwalterweatherman"] - sumVersion = "v1.1.0" - ["github.com/spf13/jwalterweatherman".fetch] - type = "git" - url = "https://github.com/spf13/jwalterweatherman" - rev = "94f6ae3ed3bceceafa716478c5fbf8d29ca601a1" - sha256 = "1ywmkwci5zyd88ijym6f30fj5c0k2yayxarkmnazf5ybljv50q7b" - -["github.com/spf13/pflag"] - sumVersion = "v1.0.5" - ["github.com/spf13/pflag".fetch] - type = "git" - url = "https://github.com/spf13/pflag" - rev = "2e9d26c8c37aae03e3f9d4e90b7116f5accb7cab" - sha256 = "0gpmacngd0gpslnbkzi263f5ishigzgh6pbdv9hp092rnjl4nd31" - -["github.com/spf13/viper"] - sumVersion = "v1.8.1" - ["github.com/spf13/viper".fetch] - type = "git" - url = "https://github.com/spf13/viper" - rev = "bd038658992ae06c6ccf069a5b4bebe432602d0f" - sha256 = "0jcsvd9l05pv10rma6zicp44q2mlvxj0qlhnf4zcg2pymb5i0hq6" - -["github.com/ssgreg/nlreturn/v2"] - sumVersion = "v2.1.0" - ["github.com/ssgreg/nlreturn/v2".fetch] - type = "git" - url = "https://github.com/ssgreg/nlreturn" - rev = "5ded3fbf2a4dc9b3694ffd3a765e47c4f2a28de6" - sha256 = "117jz3s49lpcq59gg1nsd7p1mqil9a8c9wranxc920qkcb3dlf3l" - -["github.com/status-im/keycard-go"] - sumVersion = "v0.0.0-20190316090335-8537d3370df4" - ["github.com/status-im/keycard-go".fetch] - type = "git" - url = "https://github.com/status-im/keycard-go" - rev = "8537d3370df43a30a3d450c023783d2e43432b89" - sha256 = "15kbh04282vyb59fy9rjr533aa6vlxxh0cpa66x2qw6wb0896za1" - -["github.com/steakknife/bloomfilter"] - sumVersion = "v0.0.0-20180922174646-6819c0d2a570" - ["github.com/steakknife/bloomfilter".fetch] - type = "git" - url = "https://github.com/steakknife/bloomfilter" - rev = "6819c0d2a57025e1700378ee59b7382d71987f14" - sha256 = "1dr4pb172rwi9cxvxl23j4j8q6ybqjfzll5dd14cd398f231nk81" - -["github.com/steakknife/hamming"] - sumVersion = "v0.0.0-20180906055917-c99c65617cd3" - ["github.com/steakknife/hamming".fetch] - type = "git" - url = "https://github.com/steakknife/hamming" - rev = "c99c65617cd3d686aea8365fe563d6542f01d940" - sha256 = "03scc8fkkwpbc7p9ymlrm6wg57mzr0d6s2k2dz2gp339pllxyxjr" - -["github.com/streadway/amqp"] - sumVersion = "v0.0.0-20190827072141-edfb9018d271" - ["github.com/streadway/amqp".fetch] - type = "git" - url = "https://github.com/streadway/amqp" - rev = "edfb9018d2714e4ec54dbaba37dbfef2bdadf0e4" - sha256 = "07icg7x7saawzqb9lm9avw6bizs387xdi27zry03m6z5i1a22zq2" - -["github.com/streadway/handy"] - sumVersion = "v0.0.0-20190108123426-d5acb3125c2a" - ["github.com/streadway/handy".fetch] - type = "git" - url = "https://github.com/streadway/handy" - rev = "d5acb3125c2a6654d2d691e6851674a645333da1" - sha256 = "02jwalahfj2lh1snklh6i5hysjl9npx59q31ihdfrva10dssg30r" - -["github.com/stretchr/objx"] - sumVersion = "v0.3.0" - ["github.com/stretchr/objx".fetch] - type = "git" - url = "https://github.com/stretchr/objx" - rev = "35313a95ee26395aa17d366c71a2ccf788fa69b6" - sha256 = "1b21kmg69wa1jjbnvd39jfz0an5kgqbid2bxx1j2mr4393y7ggjg" - -["github.com/stretchr/testify"] - sumVersion = "v1.7.0" - ["github.com/stretchr/testify".fetch] - type = "git" - url = "https://github.com/stretchr/testify" - rev = "acba37e5db06f0093b465a7d47822bf13644b66c" - sha256 = "0ixgjsvafr3513pz3r6pmgk074s2dxkll0dadvl25gkf30rkmh10" - -["github.com/subosito/gotenv"] - sumVersion = "v1.2.0" - ["github.com/subosito/gotenv".fetch] - type = "git" - url = "https://github.com/subosito/gotenv" - rev = "2ef7124db659d49edac6aa459693a15ae36c671a" - sha256 = "0mav91j7r4arjkpq5zcf9j74f6pww8ic53x43wy7kg3ibw31yjs5" - -["github.com/syndtr/gocapability"] - sumVersion = "v0.0.0-20200815063812-42c35b437635" - ["github.com/syndtr/gocapability".fetch] - type = "git" - url = "https://github.com/syndtr/gocapability" - rev = "42c35b4376354fd554efc7ad35e0b7f94e3a0ffb" - sha256 = "00zi0k190ydlm9drnafvj9p4cf6axm858wr71pbmq1p3r94iqws4" - -["github.com/syndtr/goleveldb"] - sumVersion = "v1.0.1-0.20200815110645-5c35d600f0ca" - ["github.com/syndtr/goleveldb".fetch] - type = "git" - url = "https://github.com/syndtr/goleveldb" - rev = "5c35d600f0caac04c20d52438103f1a7aa612598" - sha256 = "0wsqybzip0khzgk4cl23ilm30jnf4yd674dkbq4c26ivak9qkmz7" - -["github.com/tdakkota/asciicheck"] - sumVersion = "v0.0.0-20200416200610-e657995f937b" - ["github.com/tdakkota/asciicheck".fetch] - type = "git" - url = "https://github.com/tdakkota/asciicheck" - rev = "e657995f937b8362b9e1425aa31bb96798b592f2" - sha256 = "0kyj9zizkbbdzhbr0hak306zwx4ia87cflbasfl743kvx43af1g0" - -["github.com/tecbot/gorocksdb"] - sumVersion = "v0.0.0-20191217155057-f0fad39f321c" - ["github.com/tecbot/gorocksdb".fetch] - type = "git" - url = "https://github.com/tecbot/gorocksdb" - rev = "f0fad39f321c61bf05fcb4a01fe259606235e712" - sha256 = "0brf99da00jf91hf7w0qqk6yj61zcya9ci7pm8d60q6zl40i87c5" - -["github.com/tendermint/btcd"] - sumVersion = "v0.1.1" - ["github.com/tendermint/btcd".fetch] - type = "git" - url = "https://github.com/tendermint/btcd" - rev = "80daadac05d1cd29571fccf27002d79667a88b58" - sha256 = "16s909z5awvqi060rdj577wzbgziyk88s53x24kv9rzc71rm99x1" - -["github.com/tendermint/crypto"] - sumVersion = "v0.0.0-20191022145703-50d29ede1e15" - ["github.com/tendermint/crypto".fetch] - type = "git" - url = "https://github.com/tendermint/crypto" - rev = "50d29ede1e15ab205c8558ad67b85596ee19d3a0" - sha256 = "0vhyxsypb2q1zpcl464hlsdpap7kc3nj6gdff53xwrln2bg1jjin" - -["github.com/tendermint/go-amino"] - sumVersion = "v0.16.0" - ["github.com/tendermint/go-amino".fetch] - type = "git" - url = "https://github.com/tendermint/go-amino" - rev = "ccb15b138dfd74282be78f5e9059387768b12918" - sha256 = "1zcms3l5fihzg8nf4vhdk18qpn1jkbm3rpkjfpskfcrgzlxk6vi5" - -["github.com/tendermint/tendermint"] - sumVersion = "v0.34.14" - ["github.com/tendermint/tendermint".fetch] - type = "git" - url = "https://github.com/tendermint/tendermint" - rev = "85870def7b628effad73af942e638bbddf2ba8fd" - sha256 = "15rrh25qdc4dvq0f125a039n08wv82ijjd0zzrr3n9d6fv028mpw" - -["github.com/tendermint/tm-db"] - sumVersion = "v0.6.4" - ["github.com/tendermint/tm-db".fetch] - type = "git" - url = "https://github.com/tendermint/tm-db" - rev = "6f9a08cd4522fb13d8df69b1694587d5015114fc" - sha256 = "1sgjf2vaq554ybc0cwkzn17cz2ibzph2rq0dgaw21c2hym09437x" - -["github.com/tetafro/godot"] - sumVersion = "v1.4.9" - ["github.com/tetafro/godot".fetch] - type = "git" - url = "https://github.com/tetafro/godot" - rev = "2d9c8a617dcf8bb2927b4562c37d1077c43d2d49" - sha256 = "1kmdk3v2a6ygcg2i8jfgz61yzxi4183xgzlaviq9jwsqwc2hj60w" - -["github.com/tidwall/gjson"] - sumVersion = "v1.6.7" - ["github.com/tidwall/gjson".fetch] - type = "git" - url = "https://github.com/tidwall/gjson" - rev = "97ec619cbe9546828dc45cb856a5938dcf3d74e1" - sha256 = "1gq689xp5bqxn17hcg8kwciakr05rz84dgd8qpiy7aqdv8iqrghq" - -["github.com/tidwall/match"] - sumVersion = "v1.0.3" - ["github.com/tidwall/match".fetch] - type = "git" - url = "https://github.com/tidwall/match" - rev = "c2f534168b739a7ec1821a33839fb2f029f26bbc" - sha256 = "1haa5p7hsjqx0ijxbypgc9c31v128mykm1g0lyymvkk3qdajvcyr" - -["github.com/tidwall/pretty"] - sumVersion = "v1.0.2" - ["github.com/tidwall/pretty".fetch] - type = "git" - url = "https://github.com/tidwall/pretty" - rev = "ef453c788d6a371829f4f9967b014b2b81856df5" - sha256 = "0bfp2nqwd7w3709lsyw2iw71hgbrnhcs1nr9n4vbari408qk2rv0" - -["github.com/tidwall/sjson"] - sumVersion = "v1.1.4" - ["github.com/tidwall/sjson".fetch] - type = "git" - url = "https://github.com/tidwall/sjson" - rev = "b547b7aea4b0c9a8ed8885f0790aea039483f337" - sha256 = "0nin7n4bfjxznkkrjb4g7clprnmkdx79hgx1rjakxqp821l6s85s" - -["github.com/timakin/bodyclose"] - sumVersion = "v0.0.0-20200424151742-cb6215831a94" - ["github.com/timakin/bodyclose".fetch] - type = "git" - url = "https://github.com/timakin/bodyclose" - rev = "cb6215831a94c8f045805eae1d9782ebf907ced9" - sha256 = "0r5xi11qkxkhypq7y0q5p93z2q00sbn9yf32340cxzbim67niw0q" - -["github.com/tklauser/go-sysconf"] - sumVersion = "v0.3.7" - ["github.com/tklauser/go-sysconf".fetch] - type = "git" - url = "https://github.com/tklauser/go-sysconf" - rev = "ee6b65a65cffa83a2b81381420632959d977e790" - sha256 = "0gwf4s2bvvmk5fm0521kaz93hwjrzg6nwcjlm0fc8zan7l94f1g9" - -["github.com/tklauser/numcpus"] - sumVersion = "v0.2.3" - ["github.com/tklauser/numcpus".fetch] - type = "git" - url = "https://github.com/tklauser/numcpus" - rev = "8d45637165b3f9e97e45a2827870f0ae292b033b" - sha256 = "1b4ag1f3narkq3bw17b2zfr27ws3bcadq6z3n8zz4f0i4afsp0jh" - -["github.com/tmc/grpc-websocket-proxy"] - sumVersion = "v0.0.0-20200427203606-3cfed13b9966" - ["github.com/tmc/grpc-websocket-proxy".fetch] - type = "git" - url = "https://github.com/tmc/grpc-websocket-proxy" - rev = "3cfed13b99662c5c5740aa3bed7a81170f3ef94f" - sha256 = "1flhz7ksk1r9mwj6h7snbs0a39b8mjijcqf8q1xbxyyqg8j8x0bs" - -["github.com/tomarrell/wrapcheck/v2"] - sumVersion = "v2.3.0" - ["github.com/tomarrell/wrapcheck/v2".fetch] - type = "git" - url = "https://github.com/tomarrell/wrapcheck" - rev = "d409df3395169cccdb7f39aea3092e20c5e69a9c" - sha256 = "040fwm1bzspwk8djliqawylblsbljhd0p6r99jzbk3p8grym4ypn" - -["github.com/tomasen/realip"] - sumVersion = "v0.0.0-20180522021738-f0c99a92ddce" - ["github.com/tomasen/realip".fetch] - type = "git" - url = "https://github.com/tomasen/realip" - rev = "f0c99a92ddcedd3964a269d23c8e89d9a9229be6" - sha256 = "1iz2cwks2ywwvvnbfmw3pfyz4ql7z0f8s9sdj6pzirpp75zar9nn" - -["github.com/tommy-muehle/go-mnd/v2"] - sumVersion = "v2.4.0" - ["github.com/tommy-muehle/go-mnd/v2".fetch] - type = "git" - url = "https://github.com/tommy-muehle/go-mnd" - rev = "c588e97417345a8d6cde3d418988f18e8c94207b" - sha256 = "1znw6kamd3zlc34myc6j606psnv94p1vvnjf5aamb2pp2b6d1plx" - -["github.com/tv42/httpunix"] - sumVersion = "v0.0.0-20150427012821-b75d8614f926" - ["github.com/tv42/httpunix".fetch] - type = "git" - url = "https://github.com/tv42/httpunix" - rev = "b75d8614f926c077e48d85f1f8f7885b758c6225" - sha256 = "1sd9nnyyjm7n96fa18l0shlnapld4m0yj5ij2ba0l9yaaa2byqm9" - -["github.com/tyler-smith/go-bip39"] - sumVersion = "v1.0.2" - ["github.com/tyler-smith/go-bip39".fetch] - type = "git" - url = "https://github.com/tyler-smith/go-bip39" - rev = "5e3853c3f4e1a44df487c7efeb064ee8b43755de" - sha256 = "1nbjm9h0hbchp3rgxlnzix5hzwa474kr311yqb1dqxmvyrngaq9w" - -["github.com/ugorji/go"] - sumVersion = "v1.1.7" - ["github.com/ugorji/go".fetch] - type = "git" - url = "https://github.com/ugorji/go" - rev = "23ab95ef5dc3b70286760af84ce2327a2b64ed62" - sha256 = "068gja55kbh2iivp03x4n9dcml0rxv0k64ivkmq06si2ar1835rm" - -["github.com/ugorji/go/codec"] - sumVersion = "v1.1.7" - relPath = "codec" - ["github.com/ugorji/go/codec".fetch] - type = "git" - url = "https://github.com/ugorji/go" - rev = "23ab95ef5dc3b70286760af84ce2327a2b64ed62" - sha256 = "068gja55kbh2iivp03x4n9dcml0rxv0k64ivkmq06si2ar1835rm" - -["github.com/ultraware/funlen"] - sumVersion = "v0.0.3" - ["github.com/ultraware/funlen".fetch] - type = "git" - url = "https://github.com/ultraware/funlen" - rev = "262c7008279852412f50c8ece2f1a22c759bd84b" - sha256 = "1b1yjiwr4p2il9kgyc20hk83gvcm5mfv5xlfvs9hp01pydhx5pll" - -["github.com/ultraware/whitespace"] - sumVersion = "v0.0.4" - ["github.com/ultraware/whitespace".fetch] - type = "git" - url = "https://github.com/ultraware/whitespace" - rev = "83a46e7e913269e68dc64d4d2db3f2c9fb0e1714" - sha256 = "0hxa3w806zhi051wk15aj718isp2vc89cvfsqvw3ysbgwllaa60b" - -["github.com/urfave/cli"] - sumVersion = "v1.22.1" - ["github.com/urfave/cli".fetch] - type = "git" - url = "https://github.com/urfave/cli" - rev = "c71fbcefd21552b70cd625b2c54466006e258ad7" - sha256 = "04ymak18flqlfcn8lycmg8r3931al8dvr8f1cg9n4yjaskmg72v8" - -["github.com/uudashr/gocognit"] - sumVersion = "v1.0.5" - ["github.com/uudashr/gocognit".fetch] - type = "git" - url = "https://github.com/uudashr/gocognit" - rev = "16f84d241bedf9d2f731a71bf0e55ad654717bd9" - sha256 = "1yx8fydwpgnazwpr0f9cfmfz28di91q2qsmim4wmvxaqxp2mhi5a" - -["github.com/valyala/bytebufferpool"] - sumVersion = "v1.0.0" - ["github.com/valyala/bytebufferpool".fetch] - type = "git" - url = "https://github.com/valyala/bytebufferpool" - rev = "e746df99fe4a3986f4d4f79e13c1e0117ce9c2f7" - sha256 = "01lqzjddq6kz9v41nkky7wbgk7f1cw036sa7ldz10d82g5klzl93" - -["github.com/valyala/fasthttp"] - sumVersion = "v1.16.0" - ["github.com/valyala/fasthttp".fetch] - type = "git" - url = "https://github.com/valyala/fasthttp" - rev = "434c48ba7e3a0dafb32964b8971fb1448a39ceee" - sha256 = "120vyy6q75v70vkhbckh287700bma6wqzvg7i8wf8qy2vvq551ag" - -["github.com/valyala/quicktemplate"] - sumVersion = "v1.6.3" - ["github.com/valyala/quicktemplate".fetch] - type = "git" - url = "https://github.com/valyala/quicktemplate" - rev = "f15a233858c23fd598b71cf2f11fd9db3989dbdf" - sha256 = "0zvn92mpa1qfdh5rc9w8y6h9y1aki0027idfhlbxf3liq90nn24r" - -["github.com/valyala/tcplisten"] - sumVersion = "v0.0.0-20161114210144-ceec8f93295a" - ["github.com/valyala/tcplisten".fetch] - type = "git" - url = "https://github.com/valyala/tcplisten" - rev = "ceec8f93295a060cdb565ec25e4ccf17941dbd55" - sha256 = "0ksbj1gsdqanbnhly5w1wcc107bib4w0zpnyl00prr89zch3imnf" - -["github.com/viki-org/dnscache"] - sumVersion = "v0.0.0-20130720023526-c70c1f23c5d8" - ["github.com/viki-org/dnscache".fetch] - type = "git" - url = "https://github.com/viki-org/dnscache" - rev = "c70c1f23c5d84ab39054ec6b418a5ed0fa51cade" - sha256 = "0k9p3v3df1y1l85xhh5k8wsnidhxx7qyqpyfka1pcs1562q35l97" - -["github.com/vishvananda/netlink"] - sumVersion = "v1.1.0" - ["github.com/vishvananda/netlink".fetch] - type = "git" - url = "https://github.com/vishvananda/netlink" - rev = "f049be6f391489d3f374498fe0c8df8449258372" - sha256 = "1vhl30p1gx636a088ls4h6a0l8jjyfvz79fr5w0qzdrg4qg9h08h" - -["github.com/vishvananda/netns"] - sumVersion = "v0.0.0-20191106174202-0a2b9b5464df" - ["github.com/vishvananda/netns".fetch] - type = "git" - url = "https://github.com/vishvananda/netns" - rev = "0a2b9b5464df8343199164a0321edf3313202f7e" - sha256 = "1k1zb7pzc4r4wicq7ncspf6zsvq298lvpsq963ibj813shg657xw" - -["github.com/vmihailenco/msgpack/v5"] - sumVersion = "v5.1.4" - ["github.com/vmihailenco/msgpack/v5".fetch] - type = "git" - url = "https://github.com/vmihailenco/msgpack" - rev = "77a6f797778061f2c9c30b13418c3a2f5cb98070" - sha256 = "109nansr75fidx3r00nb4jkc14davfzb88kdf75h6jyk06b50iaa" - -["github.com/vmihailenco/tagparser"] - sumVersion = "v0.1.2" - ["github.com/vmihailenco/tagparser".fetch] - type = "git" - url = "https://github.com/vmihailenco/tagparser" - rev = "be04d19a03d0f4739671a500012335e98ebfeb9f" - sha256 = "0418gkcds57c6g6slf8kl3ya7xp14p5y42w1gqkiqp6p98nhblqh" - -["github.com/wsddn/go-ecdh"] - sumVersion = "v0.0.0-20161211032359-48726bab9208" - ["github.com/wsddn/go-ecdh".fetch] - type = "git" - url = "https://github.com/wsddn/go-ecdh" - rev = "48726bab92085232373de4ec5c51ce7b441c63a0" - sha256 = "1rszp777snp9qvnh2giim7d42cvca5l180gq4j7clbmshnzg6c6m" - -["github.com/xanzy/ssh-agent"] - sumVersion = "v0.3.0" - ["github.com/xanzy/ssh-agent".fetch] - type = "git" - url = "https://github.com/xanzy/ssh-agent" - rev = "90509ebba173a493f770e6019d8481c9bb351382" - sha256 = "0pm3j2xwl554pgqj585w7g1l2hx901qmbr4da0n2gj3bzzqh365y" - -["github.com/xiang90/probing"] - sumVersion = "v0.0.0-20190116061207-43a291ad63a2" - ["github.com/xiang90/probing".fetch] - type = "git" - url = "https://github.com/xiang90/probing" - rev = "43a291ad63a214a207fefbf03c7d9d78b703162b" - sha256 = "1z22ms16j5j42775mf31isanwx2pwr1d8wqw8006dczjv36qnz5i" - -["github.com/xo/terminfo"] - sumVersion = "v0.0.0-20210125001918-ca9a967f8778" - ["github.com/xo/terminfo".fetch] - type = "git" - url = "https://github.com/xo/terminfo" - rev = "ca9a967f877831dd8742c136f5c19f82d03673f4" - sha256 = "05gdcvcbwcrcwxznhvs1q1xh4irz2d10v2mz179pydjh30kjc0j5" - -["github.com/xordataexchange/crypt"] - sumVersion = "v0.0.3-0.20170626215501-b2862e3d0a77" - ["github.com/xordataexchange/crypt".fetch] - type = "git" - url = "https://github.com/xordataexchange/crypt" - rev = "b2862e3d0a775f18c7cfe02273500ae307b61218" - sha256 = "04q3856anpzl4gdfgmg7pbp9cx231nkz3ymq2xp27rnmmwhfxr8y" - -["github.com/ybbus/jsonrpc"] - sumVersion = "v2.1.2+incompatible" - ["github.com/ybbus/jsonrpc".fetch] - type = "git" - url = "https://github.com/ybbus/jsonrpc" - rev = "dd866631e904a5df2067d934985c5def68f391ac" - sha256 = "1k2i4q4bliqfkam4gd00729plgi6f7wa60npqpgagrlfnd4w9k4m" - -["github.com/yeya24/promlinter"] - sumVersion = "v0.1.0" - ["github.com/yeya24/promlinter".fetch] - type = "git" - url = "https://github.com/yeya24/promlinter" - rev = "000c7d74ddb3f60264547f8096a03855ea9ecfbb" - sha256 = "010m0i8kiwarn5b4p9m8j7frzlm5gnb5ahfh3ph1rz6a6qyiiq7b" - -["github.com/yudai/gojsondiff"] - sumVersion = "v1.0.0" - ["github.com/yudai/gojsondiff".fetch] - type = "git" - url = "https://github.com/yudai/gojsondiff" - rev = "d53dddaf16b9f5b19737f4722943e7e1f289af13" - sha256 = "0qnymi0027mb8kxm24mmd22bvjrdkc56c7f4q3lbdf93x1vxbbc2" - -["github.com/yudai/golcs"] - sumVersion = "v0.0.0-20170316035057-ecda9a501e82" - ["github.com/yudai/golcs".fetch] - type = "git" - url = "https://github.com/yudai/golcs" - rev = "ecda9a501e8220fae3b4b600c3db4b0ba22cfc68" - sha256 = "0mx6wc5fz05yhvg03vvps93bc5mw4vnng98fhmixd47385qb29pq" - -["github.com/yudai/pp"] - sumVersion = "v2.0.1+incompatible" - ["github.com/yudai/pp".fetch] - type = "git" - url = "https://github.com/yudai/pp" - rev = "7b2049560316f10b8b3923c5a959691ce2132318" - sha256 = "18vbc7jagnjw1wpvhqjffl0np7bzzqdd9jpdcisvj5h85lbyn5gk" - -["github.com/yuin/goldmark"] - sumVersion = "v1.3.5" - ["github.com/yuin/goldmark".fetch] - type = "git" - url = "https://github.com/yuin/goldmark" - rev = "9f5125e104c38283b8ca0a581793abe4260dd786" - sha256 = "08rrhfji92hixiv3v0wvamwcy56f90wsw84w7lyvad7g90kbsknx" - -["github.com/zondax/hid"] - sumVersion = "v0.9.0" - ["github.com/zondax/hid".fetch] - type = "git" - url = "https://github.com/zondax/hid" - rev = "302fd402163c34626286195dfa9adac758334acc" - sha256 = "1wnpfn4bd86nz2v9dgb40xpz1ya66vahdkrhb1gj4jyyxdnnhqkh" - -["go.etcd.io/bbolt"] - sumVersion = "v1.3.5" - ["go.etcd.io/bbolt".fetch] - type = "git" - url = "https://github.com/etcd-io/bbolt" - rev = "232d8fc87f50244f9c808f4745759e08a304c029" - sha256 = "1h64gipvcg7060byv5wjlf524kqwj12p3v08kfh4ygv46vpm8p2r" - -["go.etcd.io/etcd"] - sumVersion = "v0.0.0-20200513171258-e048e166ab9c" - ["go.etcd.io/etcd".fetch] - type = "git" - url = "https://github.com/etcd-io/etcd" - rev = "e048e166ab9c87f11e5f48c3dcf9774fb7c17fa8" - sha256 = "1xlngzwyrk04715rhi262jqsyci4aniw526sxa2cap9lnbyq2v0m" - -["go.etcd.io/etcd/api/v3"] - sumVersion = "v3.5.0" - relPath = "api" - ["go.etcd.io/etcd/api/v3".fetch] - type = "git" - url = "https://github.com/etcd-io/etcd" - rev = "946a5a6f25c3b6b89408ab447852731bde6e6289" - sha256 = "1dinf1668bkpq5lff8sr4fjd7dkxw9smm1f9zcadpdz3ci3knpzg" - -["go.etcd.io/etcd/client/pkg/v3"] - sumVersion = "v3.5.0" - relPath = "client/pkg" - ["go.etcd.io/etcd/client/pkg/v3".fetch] - type = "git" - url = "https://github.com/etcd-io/etcd" - rev = "946a5a6f25c3b6b89408ab447852731bde6e6289" - sha256 = "1dinf1668bkpq5lff8sr4fjd7dkxw9smm1f9zcadpdz3ci3knpzg" - -["go.etcd.io/etcd/client/v2"] - sumVersion = "v2.305.0" - relPath = "client" - ["go.etcd.io/etcd/client/v2".fetch] - type = "git" - url = "https://github.com/etcd-io/etcd" - rev = "946a5a6f25c3b6b89408ab447852731bde6e6289" - sha256 = "1dinf1668bkpq5lff8sr4fjd7dkxw9smm1f9zcadpdz3ci3knpzg" - -["go.mozilla.org/mozlog"] - sumVersion = "v0.0.0-20170222151521-4bb13139d403" - ["go.mozilla.org/mozlog".fetch] - type = "git" - url = "https://github.com/mozilla-services/go-mozlog" - rev = "4bb13139d40339f59bf140d0f5f28be83b07cc58" - sha256 = "197754z5z3ixdasymw6ks51b7vmfv3q3skiz5yn2mzgw9hlgphkq" - -["go.opencensus.io"] - sumVersion = "v0.23.0" - ["go.opencensus.io".fetch] - type = "git" - url = "https://github.com/census-instrumentation/opencensus-go" - rev = "49838f207d61097fc0ebb8aeef306913388376ca" - sha256 = "0gw4f7inf8y2ik00yfb36xganiq9rl4w2d1a41bsjqsh83ajz2km" - -["go.opentelemetry.io/proto/otlp"] - sumVersion = "v0.7.0" - relPath = "otlp" - ["go.opentelemetry.io/proto/otlp".fetch] - type = "git" - url = "https://github.com/open-telemetry/opentelemetry-proto-go" - rev = "4fc4e99f9e4387bc9890e74f757d3994ffa384ce" - sha256 = "003p1yjh48sfgq7b2k1hxn8jdpdps17zfhn427lbfpd1z7gd2cdq" - -["go.uber.org/atomic"] - sumVersion = "v1.7.0" - ["go.uber.org/atomic".fetch] - type = "git" - url = "https://github.com/uber-go/atomic" - rev = "12f27ba2637fa0e13772a4f05fa46a5d18d53182" - sha256 = "0yxvb5sixh76cl9j8dpa97gznj0p8pmg2cdw0ypfwhd3ipx9wph1" - -["go.uber.org/multierr"] - sumVersion = "v1.6.0" - ["go.uber.org/multierr".fetch] - type = "git" - url = "https://github.com/uber-go/multierr" - rev = "3114a8b704d2d28dbacda34a872690aaef66aeed" - sha256 = "162941s8f6a9x2w04qm4qa3zz0zylwag9149hywrj9ibp2nzcsqz" - -["go.uber.org/tools"] - sumVersion = "v0.0.0-20190618225709-2cfd321de3ee" - ["go.uber.org/tools".fetch] - type = "git" - url = "https://github.com/uber-go/tools" - rev = "2cfd321de3ee5d5f8a5fda2521d1703478334d98" - sha256 = "0kcsg9pd3vyp5v9dz8xzd9lkpbqrlhr1rv6hg38afq6ifziw319i" - -["go.uber.org/zap"] - sumVersion = "v1.17.0" - ["go.uber.org/zap".fetch] - type = "git" - url = "https://github.com/uber-go/zap" - rev = "ebebbf3828cd267f08b11cc3f6f4a155c952b2ba" - sha256 = "14mr66h7vxirpvb12106372apw1w3ppymbf89lprxkkg03srkfy8" - -["golang.org/x/crypto"] - sumVersion = "v0.0.0-20210513164829-c07d793c2f9a" - ["golang.org/x/crypto".fetch] - type = "git" - url = "https://go.googlesource.com/crypto" - rev = "c07d793c2f9aacf728fe68cbd7acd73adbd04159" - sha256 = "06aw3whifx4jrzvpaip6hsvgd6wjykhcamaqjm8h25wpl9zsbsb5" - -["golang.org/x/exp"] - sumVersion = "v0.0.0-20200331195152-e8c3332aa8e5" - ["golang.org/x/exp".fetch] - type = "git" - url = "https://go.googlesource.com/exp" - rev = "e8c3332aa8e5b8e6acb4707c3a7e5979052b20aa" - sha256 = "085mbasmshl64f2d0awrf5k0iyh1aij888cp9aa12ldzp36404rw" - -["golang.org/x/image"] - sumVersion = "v0.0.0-20190802002840-cff245a6509b" - ["golang.org/x/image".fetch] - type = "git" - url = "https://go.googlesource.com/image" - rev = "cff245a6509b8c4de022d0d5b9037c503c5989d6" - sha256 = "0hiznlkiaay30acwvvyq8g6bm32r7bc6gv47pygrcxqpapasbz84" - -["golang.org/x/lint"] - sumVersion = "v0.0.0-20210508222113-6edffad5e616" - ["golang.org/x/lint".fetch] - type = "git" - url = "https://go.googlesource.com/lint" - rev = "6edffad5e6160f5949cdefc81710b2706fbcd4f6" - sha256 = "1n7lrr3282q3li4f06afms444qy13rfd316za0drqihakwyki2jk" - -["golang.org/x/mobile"] - sumVersion = "v0.0.0-20200801112145-973feb4309de" - ["golang.org/x/mobile".fetch] - type = "git" - url = "https://go.googlesource.com/mobile" - rev = "973feb4309de5c3aad0553fc987d76abf1fa58f7" - sha256 = "0jwz7jq1cqp9x6b9kpfrmw84sg7dg5v4xaa8zdbgq14gskmjx72d" - -["golang.org/x/mod"] - sumVersion = "v0.4.2" - ["golang.org/x/mod".fetch] - type = "git" - url = "https://go.googlesource.com/mod" - rev = "d6ab96f2441f9631f81862375ef66782fc4a9c12" - sha256 = "0z1p17i291z2k6va08i80ljyzyij2b6qsz78lnz0wi8zsnkfdz43" - -["golang.org/x/net"] - sumVersion = "v0.0.0-20210903162142-ad29c8ab022f" - ["golang.org/x/net".fetch] - type = "git" - url = "https://go.googlesource.com/net" - rev = "ad29c8ab022f0f2c6a18c8279b1db2230acfa59b" - sha256 = "14qfyn4n6x7c339771i1s7chb8qx12y9xbrkgszyn0a3vgggzh6x" - -["golang.org/x/oauth2"] - sumVersion = "v0.0.0-20210514164344-f6687ab2804c" - ["golang.org/x/oauth2".fetch] - type = "git" - url = "https://go.googlesource.com/oauth2" - rev = "f6687ab2804cbebdfdeef385bee94918b1ce83de" - sha256 = "0n0hwhan765nl2znk94jwnawkss1lmcmslqyxnym57p3sdi77zsp" - -["golang.org/x/sync"] - sumVersion = "v0.0.0-20210220032951-036812b2e83c" - ["golang.org/x/sync".fetch] - type = "git" - url = "https://go.googlesource.com/sync" - rev = "036812b2e83c0ddf193dd5a34e034151da389d09" - sha256 = "1gl202py3s4gl6arkaxlf8qa6f0jyyg2f95m6f89qnfmr416h85b" - -["golang.org/x/sys"] - sumVersion = "v0.0.0-20210903071746-97244b99971b" - ["golang.org/x/sys".fetch] - type = "git" - url = "https://go.googlesource.com/sys" - rev = "97244b99971b253e564db131f988a3fde9c556ca" - sha256 = "08b7iaj5ahr6g09wxagh2l9ndpgmnmsmlghkp33rwhwjkn5scxig" - -["golang.org/x/term"] - sumVersion = "v0.0.0-20201126162022-7de9c90e9dd1" - ["golang.org/x/term".fetch] - type = "git" - url = "https://go.googlesource.com/term" - rev = "7de9c90e9dd184706b838f536a1cbf40a296ddb7" - sha256 = "1ba252xmv6qsvf1w1gcy98mngrj0vd4inbjw0lsklqvva65nljna" - -["golang.org/x/text"] - sumVersion = "v0.3.6" - ["golang.org/x/text".fetch] - type = "git" - url = "https://go.googlesource.com/text" - rev = "e328d63cff14134669501e0e154e4f141c784322" - sha256 = "0wzhvdb059vrp2cczqw422ajrb9sbs4l3qd020hlngj33qfhxah0" - -["golang.org/x/time"] - sumVersion = "v0.0.0-20200416051211-89c76fbcd5d1" - ["golang.org/x/time".fetch] - type = "git" - url = "https://go.googlesource.com/time" - rev = "89c76fbcd5d1cd4969e5d2fe19d48b19d5ad94a0" - sha256 = "1zj3vzvsssz3qm856zgifca74zm54qfglw483wn6z56gl3qill1k" - -["golang.org/x/tools"] - sumVersion = "v0.1.5" - ["golang.org/x/tools".fetch] - type = "git" - url = "https://go.googlesource.com/tools" - rev = "ef97713d99aa4e69742aa68fd45a63247b5d3ea0" - sha256 = "1wzbbcja1q0gn8ahxvzvpl4nzj2icwmc0pppgipmx5rdnngqw80l" - -["golang.org/x/xerrors"] - sumVersion = "v0.0.0-20200804184101-5ec99f83aff1" - ["golang.org/x/xerrors".fetch] - type = "git" - url = "https://go.googlesource.com/xerrors" - rev = "5ec99f83aff198f5fbd629d6c8d8eb38a04218ca" - sha256 = "1dbzc3gmf2haazpv7cgmv97rq40g2xzwbglc17vas8dwhgwgwrzb" - -["google.golang.org/api"] - sumVersion = "v0.44.0" - ["google.golang.org/api".fetch] - type = "git" - url = "https://github.com/googleapis/google-api-go-client" - rev = "e8cf7f70a1e0160405dd0f789a006e6b6074fbdb" - sha256 = "0sh6qzc3pnyliy10afrmzpfbbbm2mwcyc6mp5422xhgp3p2x370x" - -["google.golang.org/appengine"] - sumVersion = "v1.6.7" - ["google.golang.org/appengine".fetch] - type = "git" - url = "https://github.com/golang/appengine" - rev = "5d1c1d03f8703c2e81478d9a30e9afa2d3e4bd8a" - sha256 = "1wkipg7xxc0ha5p6c3bj0vpgq38l18441n5l6zxdhx0gzvz5z1hs" - -["google.golang.org/genproto"] - sumVersion = "v0.0.0-20210602131652-f16073e35f0c" - ["google.golang.org/genproto".fetch] - type = "git" - url = "https://github.com/googleapis/go-genproto" - rev = "f16073e35f0c042fd986c71ee4c2cce346e097d9" - sha256 = "06n5npgcjk8is2ajf0786nma5wjwpbwca273gv3yqq7dr3bkzv48" - -["google.golang.org/grpc"] - sumVersion = "v1.40.0" - ["google.golang.org/grpc".fetch] - type = "git" - url = "https://github.com/grpc/grpc-go" - rev = "41e044e1c82fcf6a5801d6cbd7ecf952505eecb1" - sha256 = "0n63k9j3grwc8di3k2fkxqbdyzw0pwrcs9vpmwrnga6hdwg9d5hv" - -["google.golang.org/protobuf"] - sumVersion = "v1.27.1" - ["google.golang.org/protobuf".fetch] - type = "git" - url = "https://go.googlesource.com/protobuf" - rev = "b92717ecb630d4a4824b372bf98c729d87311a4d" - sha256 = "0aszb7cv8fq1m8akgd4kjyg5q7g5z9fdqnry6057ygq9r8r2yif2" - -["gopkg.in/alecthomas/kingpin.v2"] - sumVersion = "v2.2.6" - ["gopkg.in/alecthomas/kingpin.v2".fetch] - type = "git" - url = "https://gopkg.in/alecthomas/kingpin.v2" - rev = "947dcec5ba9c011838740e680966fd7087a71d0d" - sha256 = "0mndnv3hdngr3bxp7yxfd47cas4prv98sqw534mx7vp38gd88n5r" - -["gopkg.in/check.v1"] - sumVersion = "v1.0.0-20201130134442-10cb98267c6c" - ["gopkg.in/check.v1".fetch] - type = "git" - url = "https://gopkg.in/check.v1" - rev = "10cb98267c6cb43ea9cd6793f29ff4089c306974" - sha256 = "1jwxndf8rsyx0fgrp47d99rp55yzssmryb92jfj3yf7zd8rjjljn" - -["gopkg.in/cheggaaa/pb.v1"] - sumVersion = "v1.0.28" - ["gopkg.in/cheggaaa/pb.v1".fetch] - type = "git" - url = "https://gopkg.in/cheggaaa/pb.v1" - rev = "f907f6f5dd81f77c2bbc1cde92e4c5a04720cb11" - sha256 = "13a66cqbpdif804qj12z9ad8r24va9q41gfk71qbc4zg1wsxs3rh" - -["gopkg.in/errgo.v2"] - sumVersion = "v2.1.0" - ["gopkg.in/errgo.v2".fetch] - type = "git" - url = "https://gopkg.in/errgo.v2" - rev = "f768c5ab0476c50e978b039312180859c10fe8c0" - sha256 = "065mbihiy7q67wnql0bzl9y1kkvck5ivra68254zbih52jxwrgr2" - -["gopkg.in/fsnotify.v1"] - sumVersion = "v1.4.7" - ["gopkg.in/fsnotify.v1".fetch] - type = "git" - url = "https://gopkg.in/fsnotify.v1" - rev = "c2828203cd70a50dcccfb2761f8b1f8ceef9a8e9" - sha256 = "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g" - -["gopkg.in/gcfg.v1"] - sumVersion = "v1.2.3" - ["gopkg.in/gcfg.v1".fetch] - type = "git" - url = "https://gopkg.in/gcfg.v1" - rev = "61b2c08bc8f6068f7c5ca684372f9a6cb1c45ebe" - sha256 = "165f9wincwnkblp8x6m1f4ch4m8k4gvy5v4x4gqdpmf59kqv5y7s" - -["gopkg.in/ini.v1"] - sumVersion = "v1.62.0" - ["gopkg.in/ini.v1".fetch] - type = "git" - url = "https://gopkg.in/ini.v1" - rev = "5e97220809ffaa826f787728501264e9114cb834" - sha256 = "1dm9ydqyflasp5li22kb0w73s6kp2swii8naqfhnz64v171gmm5v" - -["gopkg.in/natefinch/npipe.v2"] - sumVersion = "v2.0.0-20160621034901-c1b8fa8bdcce" - ["gopkg.in/natefinch/npipe.v2".fetch] - type = "git" - url = "https://gopkg.in/natefinch/npipe.v2" - rev = "c1b8fa8bdccecb0b8db834ee0b92fdbcfa606dd6" - sha256 = "1qplrvhks05pay169d9lph3hl7apdam4vj1kx3yzik7cphx6b24f" - -["gopkg.in/olebedev/go-duktape.v3"] - sumVersion = "v3.0.0-20200619000410-60c24ae608a6" - ["gopkg.in/olebedev/go-duktape.v3".fetch] - type = "git" - url = "https://gopkg.in/olebedev/go-duktape.v3" - rev = "60c24ae608a642bf894bed9eb53627d2384bedca" - sha256 = "13qirm5nqk6isv9n0wdi18k9wc8h1d7n6zwflhziwix7ghnr7a1q" - -["gopkg.in/resty.v1"] - sumVersion = "v1.12.0" - ["gopkg.in/resty.v1".fetch] - type = "git" - url = "https://gopkg.in/resty.v1" - rev = "fa5875c0caa5c260ab78acec5a244215a730247f" - sha256 = "062mn735rqzhha5ag07z4gz08hxzrfm2yx067jfmaaxmb6797lmp" - -["gopkg.in/tomb.v1"] - sumVersion = "v1.0.0-20141024135613-dd632973f1e7" - ["gopkg.in/tomb.v1".fetch] - type = "git" - url = "https://gopkg.in/tomb.v1" - rev = "dd632973f1e7218eb1089048e0798ec9ae7dceb8" - sha256 = "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv" - -["gopkg.in/urfave/cli.v1"] - sumVersion = "v1.20.0" - ["gopkg.in/urfave/cli.v1".fetch] - type = "git" - url = "https://gopkg.in/urfave/cli.v1" - rev = "cfb38830724cc34fedffe9a2a29fb54fa9169cd1" - sha256 = "0y6f4sbzkiiwrxbl15biivj8c7qwxnvm3zl2dd3mw4wzg4x10ygj" - -["gopkg.in/warnings.v0"] - sumVersion = "v0.1.2" - ["gopkg.in/warnings.v0".fetch] - type = "git" - url = "https://gopkg.in/warnings.v0" - rev = "ec4a0fea49c7b46c2aeb0b51aac55779c607e52b" - sha256 = "1kzj50jn708cingn7a13c2wdlzs6qv89dr2h4zj8d09647vlnd81" - -["gopkg.in/yaml.v2"] - sumVersion = "v2.4.0" - ["gopkg.in/yaml.v2".fetch] - type = "git" - url = "https://gopkg.in/yaml.v2" - rev = "7649d4548cb53a614db133b2a8ac1f31859dda8c" - sha256 = "1pbmrpj7gcws34g8vwna4i2nhm9p6235piww36436xhyaa10cldr" - -["gopkg.in/yaml.v3"] - sumVersion = "v3.0.0-20210107192922-496545a6307b" - ["gopkg.in/yaml.v3".fetch] - type = "git" - url = "https://gopkg.in/yaml.v3" - rev = "496545a6307b2a7d7a710fd516e5e16e8ab62dbc" - sha256 = "06f4lnrp494wqaygv09dggr2dwf3z2bawqhnlnnwiamg5y787k4g" - -["gotest.tools"] - sumVersion = "v2.2.0+incompatible" - ["gotest.tools".fetch] - type = "git" - url = "https://github.com/gotestyourself/gotest.tools" - rev = "7c797b5133e5460410dbb22ba779bf35e6975dea" - sha256 = "0yif3gdyckmf8i54jq0xn00kflla5rhib9sarw66ngnbl7bn9kyl" - -["gotest.tools/v3"] - sumVersion = "v3.0.2" - ["gotest.tools/v3".fetch] - type = "git" - url = "https://github.com/gotestyourself/gotest.tools" - rev = "bb0d8a963040ea5048dcef1a14d8f8b58a33d4b3" - sha256 = "0cap2aq2wphnbkkzkck5zdjxb64q3jqxfwpkgqys7279rbr8cvjm" - -["honnef.co/go/tools"] - sumVersion = "v0.2.1" - ["honnef.co/go/tools".fetch] - type = "git" - url = "https://github.com/dominikh/go-tools" - rev = "df71e5d0e0ed317ebf43e6e59cf919430fa4b8f2" - sha256 = "11zzzxk0v3lprgkgvwjgbnmwc7wdnx9jhf55sy1l8r9kybw44gjn" - -["mvdan.cc/gofumpt"] - sumVersion = "v0.1.1" - ["mvdan.cc/gofumpt".fetch] - type = "git" - url = "https://github.com/mvdan/gofumpt" - rev = "667a24092cf8f76a50e7206ae566339e59508f3a" - sha256 = "0q97nywfs7i2zm9hdhm0df3kdaj6lrrps151j75nl1fgs0kp2wrh" - -["mvdan.cc/interfacer"] - sumVersion = "v0.0.0-20180901003855-c20040233aed" - ["mvdan.cc/interfacer".fetch] - type = "git" - url = "https://github.com/mvdan/interfacer" - rev = "c20040233aedb03da82d460eca6130fcd91c629a" - sha256 = "0cx4m74mvn200360pmsqxx4z0apk9fcknwwqh8r94zd3jfv4akq2" - -["mvdan.cc/lint"] - sumVersion = "v0.0.0-20170908181259-adc824a0674b" - ["mvdan.cc/lint".fetch] - type = "git" - url = "https://github.com/mvdan/lint" - rev = "adc824a0674b99099789b6188a058d485eaf61c0" - sha256 = "17mi2rvkg9kzv1shxcyawzcj4jj3v738d1j82fp4yygx859yvr8r" - -["mvdan.cc/unparam"] - sumVersion = "v0.0.0-20210104141923-aac4ce9116a7" - ["mvdan.cc/unparam".fetch] - type = "git" - url = "https://github.com/mvdan/unparam" - rev = "aac4ce9116a7d389fb9d16019cfbfa13a34be227" - sha256 = "0ibfx9z4vb945rzmazvk3v47sqfhkzy1bnikx7kv173d5gjqc8i6" - -["nhooyr.io/websocket"] - sumVersion = "v1.8.6" - ["nhooyr.io/websocket".fetch] - type = "git" - url = "https://github.com/nhooyr/websocket" - rev = "02861b474d9c29660eff53a3c424d589aaf46d1e" - sha256 = "1xw7rhy9bvk0kzqvpcvj92l9zwwnakvqwycfxm724dw7m0d84n52" - -["rsc.io/binaryregexp"] - sumVersion = "v0.2.0" - ["rsc.io/binaryregexp".fetch] - type = "git" - url = "https://github.com/rsc/binaryregexp" - rev = "857b9542aaa89cfa42a1477b43fa1f24192fe921" - sha256 = "1kar0myy85waw418zslviwx8846zj0m9cmqkxjx0fvgjdi70nc4b" - -["rsc.io/quote/v3"] - sumVersion = "v3.1.0" - relPath = "v3" - ["rsc.io/quote/v3".fetch] - type = "git" - url = "https://github.com/rsc/quote" - rev = "0406d7298882187f4c75f75fa85cc808a64bcef1" - sha256 = "0nvv97hwwrl1mx5gzsbdm1ndnwpg3m7i2jb10ig9wily7zmvki0i" - -["rsc.io/sampler"] - sumVersion = "v1.3.0" - ["rsc.io/sampler".fetch] - type = "git" - url = "https://github.com/rsc/sampler" - rev = "0cc034b51e57ed7832d4c67d526f75a900996e5c" - sha256 = "0byxk2ynba50py805kcvbvjzh59l1r308i1xgyzpw6lff4xx9xjh" - -["sigs.k8s.io/yaml"] - sumVersion = "v1.1.0" - ["sigs.k8s.io/yaml".fetch] - type = "git" - url = "https://github.com/kubernetes-sigs/yaml" - rev = "fd68e9863619f6ec2fdd8625fe1f02e7c877e480" - sha256 = "1p7hvjdr5jsyk7nys1g1pmgnf3ys6n320i6hds85afppk81k01kb" - -["sourcegraph.com/sourcegraph/appdash"] - sumVersion = "v0.0.0-20190731080439-ebfcffb1b5c0" - ["sourcegraph.com/sourcegraph/appdash".fetch] - type = "git" - url = "https://github.com/sourcegraph/appdash" - rev = "ebfcffb1b5c00031ce797183546746715a3cfe87" - sha256 = "1xlff68pa7jchg1xr2nkrkk94mrd0ba2z38968j7swlfyf8rkk3d" diff --git a/resources/relayer/last-synced.narHash b/resources/relayer/last-synced.narHash deleted file mode 100644 index 952c7836..00000000 --- a/resources/relayer/last-synced.narHash +++ /dev/null @@ -1 +0,0 @@ -sha256-xD+xZG4Gb6557y/jkXTGdbt8qJ6izMgC4H3uo2/j5vU= diff --git a/resources/sconfig/default.nix b/resources/sconfig/default.nix deleted file mode 100644 index 8e599738..00000000 --- a/resources/sconfig/default.nix +++ /dev/null @@ -1,6 +0,0 @@ -{ pkgs, sconfig-src }: -pkgs.buildGoApplication { - name = "sconfig"; - src = "${sconfig-src}"; - modules = ./go-modules.toml; -} diff --git a/resources/sconfig/go-modules.toml b/resources/sconfig/go-modules.toml deleted file mode 100644 index 0c1145c8..00000000 --- a/resources/sconfig/go-modules.toml +++ /dev/null @@ -1,1327 +0,0 @@ -["cloud.google.com/go"] - sumVersion = "v0.46.3" - ["cloud.google.com/go".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "264def2dd949cdb8a803bb9f50fa29a67b798a6a" - sha256 = "102r2hhr93lcjn97svi382zmng8kp9vkl5kpw3xhd7zv17n42625" - -["cloud.google.com/go/bigquery"] - sumVersion = "v1.0.1" - relPath = "bigquery" - ["cloud.google.com/go/bigquery".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "63c28c0124777c34a3bca5876d3c0965ac730d3b" - sha256 = "1gnvs0q96l37z0ypw426b590jsihn459scdzb0g8vr2c8lwkcrmh" - -["cloud.google.com/go/datastore"] - sumVersion = "v1.0.0" - relPath = "datastore" - ["cloud.google.com/go/datastore".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "c5d562bdb35850f11d6a275d85ab8535265e9821" - sha256 = "0d7ikvbyasifhbxgc2gw97zqc27ihi9a22wdywh5gw2cwjwpw5gi" - -["cloud.google.com/go/firestore"] - sumVersion = "v1.1.0" - relPath = "firestore" - ["cloud.google.com/go/firestore".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "20091f47d3c522ea545f358dd9ac1cdb326bba6f" - sha256 = "0slvm0vx5f8l2vs4k9k8jv8qnz6z9dzq25xmrhza82cj9j51ghvb" - -["cloud.google.com/go/pubsub"] - sumVersion = "v1.0.1" - relPath = "pubsub" - ["cloud.google.com/go/pubsub".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "5e5fbac2c404f4b86d847ebbd8ba7ce457acbaaa" - sha256 = "0vgnys9rl0yicq4mjb1rg199zqfb3sax1ay6jbbyhnm7l36il3nv" - -["cloud.google.com/go/storage"] - sumVersion = "v1.0.0" - relPath = "storage" - ["cloud.google.com/go/storage".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "264def2dd949cdb8a803bb9f50fa29a67b798a6a" - sha256 = "102r2hhr93lcjn97svi382zmng8kp9vkl5kpw3xhd7zv17n42625" - -["dmitri.shuralyov.com/gpu/mtl"] - sumVersion = "v0.0.0-20190408044501-666a987793e9" - ["dmitri.shuralyov.com/gpu/mtl".fetch] - type = "git" - url = "https://dmitri.shuralyov.com/gpu/mtl" - rev = "666a987793e9432fbb48592aa2f3bf3463685dfa" - sha256 = "1isd03hgiwcf2ld1rlp0plrnfz7r4i7c5q4kb6hkcd22axnmrv0z" - -["github.com/BurntSushi/toml"] - sumVersion = "v0.3.1" - ["github.com/BurntSushi/toml".fetch] - type = "git" - url = "https://github.com/BurntSushi/toml" - rev = "3012a1dbe2e4bd1391d42b32f0577cb7bbc7f005" - sha256 = "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6" - -["github.com/BurntSushi/xgb"] - sumVersion = "v0.0.0-20160522181843-27f122750802" - ["github.com/BurntSushi/xgb".fetch] - type = "git" - url = "https://github.com/BurntSushi/xgb" - rev = "27f122750802c950b2c869a5b63dafcf590ced95" - sha256 = "18lp2x8f5bljvlz0r7xn744f0c9rywjsb9ifiszqqdcpwhsa0kvj" - -["github.com/OneOfOne/xxhash"] - sumVersion = "v1.2.2" - ["github.com/OneOfOne/xxhash".fetch] - type = "git" - url = "https://github.com/OneOfOne/xxhash" - rev = "6def279d2ce6c81a79dd1c1be580f03bb216fb8a" - sha256 = "1mjfhrwhvxa48rycjnqpqzm521i38h1hdyz6pdwmhd7xb8j6gwi6" - -["github.com/alecthomas/template"] - sumVersion = "v0.0.0-20160405071501-a0175ee3bccc" - ["github.com/alecthomas/template".fetch] - type = "git" - url = "https://github.com/alecthomas/template" - rev = "a0175ee3bccc567396460bf5acd36800cb10c49c" - sha256 = "0qjgvvh26vk1cyfq9fadyhfgdj36f1iapbmr5xp6zqipldz8ffxj" - -["github.com/alecthomas/units"] - sumVersion = "v0.0.0-20151022065526-2efee857e7cf" - ["github.com/alecthomas/units".fetch] - type = "git" - url = "https://github.com/alecthomas/units" - rev = "2efee857e7cfd4f3d0138cc3cbb1b4966962b93a" - sha256 = "1j65b91qb9sbrml9cpabfrcf07wmgzzghrl7809hjjhrmbzri5bl" - -["github.com/armon/circbuf"] - sumVersion = "v0.0.0-20150827004946-bbbad097214e" - ["github.com/armon/circbuf".fetch] - type = "git" - url = "https://github.com/armon/circbuf" - rev = "bbbad097214e2918d8543d5201d12bfd7bca254d" - sha256 = "1idpr0lzb2px2p3wgfq2276yl7jpaz43df6n91kf790404s4zmk3" - -["github.com/armon/consul-api"] - sumVersion = "v0.0.0-20180202201655-eb2c6b5be1b6" - ["github.com/armon/consul-api".fetch] - type = "git" - url = "https://github.com/armon/consul-api" - rev = "eb2c6b5be1b66bab83016e0b05f01b8d5496ffbd" - sha256 = "1j6fdr1sg36qy4n4xjl7brq739fpm5npq98cmvklzjc9qrx98nk9" - -["github.com/armon/go-metrics"] - sumVersion = "v0.0.0-20180917152333-f0300d1749da" - ["github.com/armon/go-metrics".fetch] - type = "git" - url = "https://github.com/armon/go-metrics" - rev = "f0300d1749da6fa982027e449ec0c7a145510c3c" - sha256 = "13l7c35ps0r27vxfil2w0xhhc7w5rh00awvlmn4cz0a937b9ffpv" - -["github.com/armon/go-radix"] - sumVersion = "v0.0.0-20180808171621-7fddfc383310" - ["github.com/armon/go-radix".fetch] - type = "git" - url = "https://github.com/armon/go-radix" - rev = "7fddfc383310abc091d79a27f116d30cf0424032" - sha256 = "0y8chspn14n9xpsfb9gxnnf819rfpriaz64v81p7873a42kkhxb4" - -["github.com/beorn7/perks"] - sumVersion = "v1.0.0" - ["github.com/beorn7/perks".fetch] - type = "git" - url = "https://github.com/beorn7/perks" - rev = "4b2b341e8d7715fae06375aa633dbb6e91b3fb46" - sha256 = "1i1nz1f6g55xi2y3aiaz5kqfgvknarbfl4f0sx4nyyb4s7xb1z9x" - -["github.com/bgentry/speakeasy"] - sumVersion = "v0.1.0" - ["github.com/bgentry/speakeasy".fetch] - type = "git" - url = "https://github.com/bgentry/speakeasy" - rev = "4aabc24848ce5fd31929f7d1e4ea74d3709c14cd" - sha256 = "02dfrj0wyphd3db9zn2mixqxwiz1ivnyc5xc7gkz58l5l27nzp8s" - -["github.com/bketelsen/crypt"] - sumVersion = "v0.0.3-0.20200106085610-5cbc8cc4026c" - ["github.com/bketelsen/crypt".fetch] - type = "git" - url = "https://github.com/bketelsen/crypt" - rev = "5cbc8cc4026c0c1d3bf9c5d4e5a30398f99c99a9" - sha256 = "006772d50c73llgz8chvynndk28qxcyr1fd18sm0b5w1g1rdw2wp" - -["github.com/cespare/xxhash"] - sumVersion = "v1.1.0" - ["github.com/cespare/xxhash".fetch] - type = "git" - url = "https://github.com/cespare/xxhash" - rev = "569f7c8abf1f58d9043ab804d364483cb1c853b6" - sha256 = "1qyzlcdcayavfazvi03izx83fvip8h36kis44zr2sg7xf6sx6l4x" - -["github.com/client9/misspell"] - sumVersion = "v0.3.4" - ["github.com/client9/misspell".fetch] - type = "git" - url = "https://github.com/client9/misspell" - rev = "b90dc15cfd220ecf8bbc9043ecb928cef381f011" - sha256 = "1vwf33wsc4la25zk9nylpbp9px3svlmldkm0bha4hp56jws4q9cs" - -["github.com/coreos/bbolt"] - sumVersion = "v1.3.2" - ["github.com/coreos/bbolt".fetch] - type = "git" - url = "https://github.com/coreos/bbolt" - rev = "63597a96ec0ad9e6d43c3fc81e809909e0237461" - sha256 = "13d5l6p6c5wvkr6vn9hkhz9c593qifn7fgx0hg4d6jcvg1y0bnm2" - -["github.com/coreos/etcd"] - sumVersion = "v3.3.13+incompatible" - ["github.com/coreos/etcd".fetch] - type = "git" - url = "https://github.com/coreos/etcd" - rev = "98d308426819d892e149fe45f6fd542464cb1f9d" - sha256 = "1kac4qfr83f2hdz35403f1ald05wc85vvhw79vxb431n61jvyaqy" - -["github.com/coreos/go-semver"] - sumVersion = "v0.3.0" - ["github.com/coreos/go-semver".fetch] - type = "git" - url = "https://github.com/coreos/go-semver" - rev = "e214231b295a8ea9479f11b70b35d5acf3556d9b" - sha256 = "0770h1mpig2j5sbiha3abnwaw8p6dg9i87r8pc7cf6m4kwml3sc9" - -["github.com/coreos/go-systemd"] - sumVersion = "v0.0.0-20190321100706-95778dfbb74e" - ["github.com/coreos/go-systemd".fetch] - type = "git" - url = "https://github.com/coreos/go-systemd" - rev = "95778dfbb74eb7e4dbaf43bf7d71809650ef8076" - sha256 = "1s3bg9p78wkixn2bqb2p23wbsqfg949ml6crw2b498s71mwh8rcf" - -["github.com/coreos/pkg"] - sumVersion = "v0.0.0-20180928190104-399ea9e2e55f" - ["github.com/coreos/pkg".fetch] - type = "git" - url = "https://github.com/coreos/pkg" - rev = "399ea9e2e55f791b6e3d920860dbecb99c3692f0" - sha256 = "0nxbn0m7lr4dg0yrwnvlkfiyg3ndv8vdpssjx7b714nivpc6ar0y" - -["github.com/cpuguy83/go-md2man/v2"] - sumVersion = "v2.0.0" - ["github.com/cpuguy83/go-md2man/v2".fetch] - type = "git" - url = "https://github.com/cpuguy83/go-md2man" - rev = "f79a8a8ca69da163eee19ab442bedad7a35bba5a" - sha256 = "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv" - -["github.com/davecgh/go-spew"] - sumVersion = "v1.1.1" - ["github.com/davecgh/go-spew".fetch] - type = "git" - url = "https://github.com/davecgh/go-spew" - rev = "8991bc29aa16c548c550c7ff78260e27b9ab7c73" - sha256 = "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y" - -["github.com/dgrijalva/jwt-go"] - sumVersion = "v3.2.0+incompatible" - ["github.com/dgrijalva/jwt-go".fetch] - type = "git" - url = "https://github.com/dgrijalva/jwt-go" - rev = "06ea1031745cb8b3dab3f6a236daf2b0aa468b7e" - sha256 = "08m27vlms74pfy5z79w67f9lk9zkx6a9jd68k3c4msxy75ry36mp" - -["github.com/dgryski/go-sip13"] - sumVersion = "v0.0.0-20181026042036-e10d5fee7954" - ["github.com/dgryski/go-sip13".fetch] - type = "git" - url = "https://github.com/dgryski/go-sip13" - rev = "e10d5fee79544bd84105c9329adcc7b745fd588c" - sha256 = "15fyibfas209ljz3f7g07kdmfbl3hhyd9n5n7aq5n5p9m5mn41d6" - -["github.com/fatih/color"] - sumVersion = "v1.7.0" - ["github.com/fatih/color".fetch] - type = "git" - url = "https://github.com/fatih/color" - rev = "5b77d2a35fb0ede96d138fc9a99f5c9b6aef11b4" - sha256 = "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv" - -["github.com/fsnotify/fsnotify"] - sumVersion = "v1.4.7" - ["github.com/fsnotify/fsnotify".fetch] - type = "git" - url = "https://github.com/fsnotify/fsnotify" - rev = "c2828203cd70a50dcccfb2761f8b1f8ceef9a8e9" - sha256 = "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g" - -["github.com/ghodss/yaml"] - sumVersion = "v1.0.0" - ["github.com/ghodss/yaml".fetch] - type = "git" - url = "https://github.com/ghodss/yaml" - rev = "0ca9ea5df5451ffdf184b4428c902747c2c11cd7" - sha256 = "0skwmimpy7hlh7pva2slpcplnm912rp3igs98xnqmn859kwa5v8g" - -["github.com/go-gl/glfw"] - sumVersion = "v0.0.0-20190409004039-e6da0acd62b1" - ["github.com/go-gl/glfw".fetch] - type = "git" - url = "https://github.com/go-gl/glfw" - rev = "e6da0acd62b1b57ee2799d4d0a76a7d4514dc5bc" - sha256 = "0prvx5r7q8yrhqvnwibv4xz3dayjbq36yajzqvh0z4lqsh4hyhch" - -["github.com/go-kit/kit"] - sumVersion = "v0.8.0" - ["github.com/go-kit/kit".fetch] - type = "git" - url = "https://github.com/go-kit/kit" - rev = "12210fb6ace19e0496167bb3e667dcd91fa9f69b" - sha256 = "1rcywbc2pvab06qyf8pc2rdfjv7r6kxdv2v4wnpqnjhz225wqvc0" - -["github.com/go-logfmt/logfmt"] - sumVersion = "v0.4.0" - ["github.com/go-logfmt/logfmt".fetch] - type = "git" - url = "https://github.com/go-logfmt/logfmt" - rev = "07c9b44f60d7ffdfb7d8efe1ad539965737836dc" - sha256 = "06smxc112xmixz78nyvk3b2hmc7wasf2sl5vxj1xz62kqcq9lzm9" - -["github.com/go-stack/stack"] - sumVersion = "v1.8.0" - ["github.com/go-stack/stack".fetch] - type = "git" - url = "https://github.com/go-stack/stack" - rev = "2fee6af1a9795aafbe0253a0cfbdf668e1fb8a9a" - sha256 = "0wk25751ryyvxclyp8jdk5c3ar0cmfr8lrjb66qbg4808x66b96v" - -["github.com/gogo/protobuf"] - sumVersion = "v1.2.1" - ["github.com/gogo/protobuf".fetch] - type = "git" - url = "https://github.com/gogo/protobuf" - rev = "ba06b47c162d49f2af050fb4c75bcbc86a159d5c" - sha256 = "06yqa6h0kw3gr5pc3qmas7f7435a96zf7iw7p0l00r2hqf6fqq6m" - -["github.com/golang/glog"] - sumVersion = "v0.0.0-20160126235308-23def4e6c14b" - ["github.com/golang/glog".fetch] - type = "git" - url = "https://github.com/golang/glog" - rev = "23def4e6c14b4da8ac2ed8007337bc5eb5007998" - sha256 = "0jb2834rw5sykfr937fxi8hxi2zy80sj2bdn9b3jb4b26ksqng30" - -["github.com/golang/groupcache"] - sumVersion = "v0.0.0-20190129154638-5b532d6fd5ef" - ["github.com/golang/groupcache".fetch] - type = "git" - url = "https://github.com/golang/groupcache" - rev = "5b532d6fd5efaf7fa130d4e859a2fde0fc3a9e1b" - sha256 = "0ls2i4ixyd4r2556j7c5jmlligjb35gfvxknrdn2abjmcahgqd6h" - -["github.com/golang/mock"] - sumVersion = "v1.3.1" - ["github.com/golang/mock".fetch] - type = "git" - url = "https://github.com/golang/mock" - rev = "d74b93584564161b2de771089ee697f07d8bd5b5" - sha256 = "1wnfa8njxdym1qb664dmfnkpm4pmqy22hqjlqpwaaiqhglb5g9d1" - -["github.com/golang/protobuf"] - sumVersion = "v1.3.2" - ["github.com/golang/protobuf".fetch] - type = "git" - url = "https://github.com/golang/protobuf" - rev = "6c65a5562fc06764971b7c5d05c76c75e84bdbf7" - sha256 = "1k1wb4zr0qbwgpvz9q5ws9zhlal8hq7dmq62pwxxriksayl6hzym" - -["github.com/google/btree"] - sumVersion = "v1.0.0" - ["github.com/google/btree".fetch] - type = "git" - url = "https://github.com/google/btree" - rev = "4030bb1f1f0c35b30ca7009e9ebd06849dd45306" - sha256 = "0ba430m9fbnagacp57krgidsyrgp3ycw5r7dj71brgp5r52g82p6" - -["github.com/google/go-cmp"] - sumVersion = "v0.3.0" - ["github.com/google/go-cmp".fetch] - type = "git" - url = "https://github.com/google/go-cmp" - rev = "6f77996f0c42f7b84e5a2b252227263f93432e9b" - sha256 = "1hyxx3434zshl2m9ja78gwlkg1rx9yl6diqa7dnjb31xz5x4gbjj" - -["github.com/google/martian"] - sumVersion = "v2.1.0+incompatible" - ["github.com/google/martian".fetch] - type = "git" - url = "https://github.com/google/martian" - rev = "195b986b4b6d4c513582cf4d2b8c4fd7e2494f7e" - sha256 = "197hil6vrjk50b9wvwyzf61csid83whsjj6ik8mc9r2lryxlyyrp" - -["github.com/google/pprof"] - sumVersion = "v0.0.0-20190515194954-54271f7e092f" - ["github.com/google/pprof".fetch] - type = "git" - url = "https://github.com/google/pprof" - rev = "54271f7e092ff31b10b7626fee166cbc6304e350" - sha256 = "14x4ydifz23rzaylggvwbm3dwlv1bc6s0bclmkxck9nbjbqw89vy" - -["github.com/google/renameio"] - sumVersion = "v0.1.0" - ["github.com/google/renameio".fetch] - type = "git" - url = "https://github.com/google/renameio" - rev = "f0e32980c006571efd537032e5f9cd8c1a92819e" - sha256 = "1ki2x5a9nrj17sn092d6n4zr29lfg5ydv4xz5cp58z6cw8ip43jx" - -["github.com/googleapis/gax-go/v2"] - sumVersion = "v2.0.5" - relPath = "v2" - ["github.com/googleapis/gax-go/v2".fetch] - type = "git" - url = "https://github.com/googleapis/gax-go" - rev = "bd5b16380fd03dc758d11cef74ba2e3bc8b0e8c2" - sha256 = "1lxawwngv6miaqd25s3ba0didfzylbwisd2nz7r4gmbmin6jsjrx" - -["github.com/gopherjs/gopherjs"] - sumVersion = "v0.0.0-20181017120253-0766667cb4d1" - ["github.com/gopherjs/gopherjs".fetch] - type = "git" - url = "https://github.com/gopherjs/gopherjs" - rev = "0766667cb4d1cfb8d5fde1fe210ae41ead3cf589" - sha256 = "13pfc9sxiwjky2lm1xb3i3lcisn8p6mgjk2d927l7r92ysph8dmw" - -["github.com/gorilla/websocket"] - sumVersion = "v1.4.2" - ["github.com/gorilla/websocket".fetch] - type = "git" - url = "https://github.com/gorilla/websocket" - rev = "b65e62901fc1c0d968042419e74789f6af455eb9" - sha256 = "0mkm9w6kjkrlzab5wh8p4qxkc0icqawjbvr01d2nk6ykylrln40s" - -["github.com/grpc-ecosystem/go-grpc-middleware"] - sumVersion = "v1.0.0" - ["github.com/grpc-ecosystem/go-grpc-middleware".fetch] - type = "git" - url = "https://github.com/grpc-ecosystem/go-grpc-middleware" - rev = "c250d6563d4d4c20252cd865923440e829844f4e" - sha256 = "0lwgxih021xfhfb1xb9la5f98bpgpaiz63sbllx77qwwl2rmhrsp" - -["github.com/grpc-ecosystem/go-grpc-prometheus"] - sumVersion = "v1.2.0" - ["github.com/grpc-ecosystem/go-grpc-prometheus".fetch] - type = "git" - url = "https://github.com/grpc-ecosystem/go-grpc-prometheus" - rev = "c225b8c3b01faf2899099b768856a9e916e5087b" - sha256 = "1lzk54h7np32b3acidg1ggbn8ppbnns0m71gcg9d1qkkdh8zrijl" - -["github.com/grpc-ecosystem/grpc-gateway"] - sumVersion = "v1.9.0" - ["github.com/grpc-ecosystem/grpc-gateway".fetch] - type = "git" - url = "https://github.com/grpc-ecosystem/grpc-gateway" - rev = "8fd5fd9d19ce68183a6b0934519dfe7fe6269612" - sha256 = "1r4y48c76yxc2hpqszfjirvh7zxjb6z72qmk95li12ar79dhv3dy" - -["github.com/hashicorp/consul/api"] - sumVersion = "v1.1.0" - relPath = "api" - ["github.com/hashicorp/consul/api".fetch] - type = "git" - url = "https://github.com/hashicorp/consul" - rev = "5174058f0d2bda63fa5198ab96c33d9a909c58ed" - sha256 = "0xm3gl8i7pgsbsc2397bwh9hp2dwnk4cmw5y05acqn3zpyp84sbv" - -["github.com/hashicorp/consul/sdk"] - sumVersion = "v0.1.1" - relPath = "sdk" - ["github.com/hashicorp/consul/sdk".fetch] - type = "git" - url = "https://github.com/hashicorp/consul" - rev = "6abe00cb2c8a3298794a7a9a67815937bd56ed63" - sha256 = "14cw0ijifma212qqwqs6slp0wl4mpj9f3mckzsc0l26i0n2pm2mc" - -["github.com/hashicorp/errwrap"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/errwrap".fetch] - type = "git" - url = "https://github.com/hashicorp/errwrap" - rev = "8a6fb523712970c966eefc6b39ed2c5e74880354" - sha256 = "0slfb6w3b61xz04r32bi0a1bygc82rjzhqkxj2si2074wynqnr1c" - -["github.com/hashicorp/go-cleanhttp"] - sumVersion = "v0.5.1" - ["github.com/hashicorp/go-cleanhttp".fetch] - type = "git" - url = "https://github.com/hashicorp/go-cleanhttp" - rev = "eda1e5db218aad1db63ca4642c8906b26bcf2744" - sha256 = "07kx3fhryqmaw3czacmm11qwx63js2q8cfq967vphk7xg9q377kk" - -["github.com/hashicorp/go-immutable-radix"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-immutable-radix".fetch] - type = "git" - url = "https://github.com/hashicorp/go-immutable-radix" - rev = "27df80928bb34bb1b0d6d0e01b9e679902e7a6b5" - sha256 = "1v3nmsnk1s8bzpclrhirz7iq0g5xxbw9q5gvrg9ss6w9crs72qr6" - -["github.com/hashicorp/go-msgpack"] - sumVersion = "v0.5.3" - ["github.com/hashicorp/go-msgpack".fetch] - type = "git" - url = "https://github.com/hashicorp/go-msgpack" - rev = "be3a5be7ee2202386d02936a19ae4fbde1c77800" - sha256 = "00jv0ajqd58pkb2yyhlrjp0rv1mvb1ijx3yqjyikcmzvk9jb4h5m" - -["github.com/hashicorp/go-multierror"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-multierror".fetch] - type = "git" - url = "https://github.com/hashicorp/go-multierror" - rev = "886a7fbe3eb1c874d46f623bfa70af45f425b3d1" - sha256 = "00nyn8llqzbfm8aflr9kwsvpzi4kv8v45c141v88xskxp5xf6z49" - -["github.com/hashicorp/go-rootcerts"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-rootcerts".fetch] - type = "git" - url = "https://github.com/hashicorp/go-rootcerts" - rev = "63503fb4e1eca22f9ae0f90b49c5d5538a0e87eb" - sha256 = "0wply5zhj1rcybr932zbwm1i18q5wr7kgkhnz6bw6mk1n9yr8lfj" - -["github.com/hashicorp/go-sockaddr"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-sockaddr".fetch] - type = "git" - url = "https://github.com/hashicorp/go-sockaddr" - rev = "a6a0d2df398f7e0e9f6e43f589c8b51cec0eb6b0" - sha256 = "1yn1xq8ysn0lszmkygz3a9lgpswbz1p91jv7q8l20s4749a22xgi" - -["github.com/hashicorp/go-syslog"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-syslog".fetch] - type = "git" - url = "https://github.com/hashicorp/go-syslog" - rev = "8d1874e3e8d1862b74e0536851e218c4571066a5" - sha256 = "09vccqggz212cg0jir6vv708d6mx0f9w5bxrcdah3h6chgmal6v1" - -["github.com/hashicorp/go-uuid"] - sumVersion = "v1.0.1" - ["github.com/hashicorp/go-uuid".fetch] - type = "git" - url = "https://github.com/hashicorp/go-uuid" - rev = "4f571afc59f3043a65f8fe6bf46d887b10a01d43" - sha256 = "0jvb88m0rq41bwgirsadgw7mnayl27av3gd2vqa3xvxp3fy0hp5k" - -["github.com/hashicorp/go.net"] - sumVersion = "v0.0.1" - ["github.com/hashicorp/go.net".fetch] - type = "git" - url = "https://github.com/hashicorp/go.net" - rev = "afc3cb3a421746fc66dd55b09a270c750cf536ce" - sha256 = "06arwi95xp5rxyz7rndvhc3wlwg0jn9a5z6djf3yyg5h9zfab9i4" - -["github.com/hashicorp/golang-lru"] - sumVersion = "v0.5.1" - ["github.com/hashicorp/golang-lru".fetch] - type = "git" - url = "https://github.com/hashicorp/golang-lru" - rev = "7087cb70de9f7a8bc0a10c375cb0d2280a8edf9c" - sha256 = "13f870cvk161bzjj6x41l45r5x9i1z9r2ymwmvm7768kg08zznpy" - -["github.com/hashicorp/hcl"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/hcl".fetch] - type = "git" - url = "https://github.com/hashicorp/hcl" - rev = "8cb6e5b959231cc1119e43259c4a608f9c51a241" - sha256 = "0q6ml0qqs0yil76mpn4mdx4lp94id8vbv575qm60jzl1ijcl5i66" - -["github.com/hashicorp/logutils"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/logutils".fetch] - type = "git" - url = "https://github.com/hashicorp/logutils" - rev = "a335183dfd075f638afcc820c90591ca3c97eba6" - sha256 = "076wf4sh5p3f953ndqk1cc0x7jhmlqrxak9953rz79rcdw77rjvv" - -["github.com/hashicorp/mdns"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/mdns".fetch] - type = "git" - url = "https://github.com/hashicorp/mdns" - rev = "c31d3f8e4a0a5b46b118c2fd26d9da36467002c9" - sha256 = "0qr4l91hhi97s8a1isnrw3s4q8pjzacqiks870vnwh15v7ig3axd" - -["github.com/hashicorp/memberlist"] - sumVersion = "v0.1.3" - ["github.com/hashicorp/memberlist".fetch] - type = "git" - url = "https://github.com/hashicorp/memberlist" - rev = "a9da52f0668fc4321ec18e9e28dd8141621a808f" - sha256 = "0k1spq7dagvqj3baqw2dhxx1zxrb02y6m3apzr3a7gyirii890g3" - -["github.com/hashicorp/serf"] - sumVersion = "v0.8.2" - ["github.com/hashicorp/serf".fetch] - type = "git" - url = "https://github.com/hashicorp/serf" - rev = "b89a09ebd4b1b570e0076d5097272e67c10ac4f6" - sha256 = "0nrslghvdjhaczr2xp9mn8xgcx1dxl4jgpbk0l61ssmxahpx4iyc" - -["github.com/inconshreveable/mousetrap"] - sumVersion = "v1.0.0" - ["github.com/inconshreveable/mousetrap".fetch] - type = "git" - url = "https://github.com/inconshreveable/mousetrap" - rev = "76626ae9c91c4f2a10f34cad8ce83ea42c93bb75" - sha256 = "1mn0kg48xkd74brf48qf5hzp0bc6g8cf5a77w895rl3qnlpfw152" - -["github.com/jonboulle/clockwork"] - sumVersion = "v0.1.0" - ["github.com/jonboulle/clockwork".fetch] - type = "git" - url = "https://github.com/jonboulle/clockwork" - rev = "2eee05ed794112d45db504eb05aa693efd2b8b09" - sha256 = "1pqxhsdavbp1n5grgyx2j6ylvql2fzn2cvpsgkc8li69dil7sibl" - -["github.com/json-iterator/go"] - sumVersion = "v1.1.6" - ["github.com/json-iterator/go".fetch] - type = "git" - url = "https://github.com/json-iterator/go" - rev = "0ff49de124c6f76f8494e194af75bde0f1a49a29" - sha256 = "08caswxvdn7nvaqyj5kyny6ghpygandlbw9vxdj7l5vkp7q0s43r" - -["github.com/jstemmer/go-junit-report"] - sumVersion = "v0.0.0-20190106144839-af01ea7f8024" - ["github.com/jstemmer/go-junit-report".fetch] - type = "git" - url = "https://github.com/jstemmer/go-junit-report" - rev = "af01ea7f8024089b458d804d5cdf190f962a9a0c" - sha256 = "1lp3n94ris12hac02wi31f3whs88lcrzwgdg43a5j6cafg9p1d0s" - -["github.com/jtolds/gls"] - sumVersion = "v4.20.0+incompatible" - ["github.com/jtolds/gls".fetch] - type = "git" - url = "https://github.com/jtolds/gls" - rev = "b4936e06046bbecbb94cae9c18127ebe510a2cb9" - sha256 = "1k7xd2q2ysv2xsh373qs801v6f359240kx0vrl0ydh7731lngvk6" - -["github.com/julienschmidt/httprouter"] - sumVersion = "v1.2.0" - ["github.com/julienschmidt/httprouter".fetch] - type = "git" - url = "https://github.com/julienschmidt/httprouter" - rev = "348b672cd90d8190f8240323e372ecd1e66b59dc" - sha256 = "1k8bylc9s4vpvf5xhqh9h246dl1snxrzzz0614zz88cdh8yzs666" - -["github.com/kisielk/errcheck"] - sumVersion = "v1.1.0" - ["github.com/kisielk/errcheck".fetch] - type = "git" - url = "https://github.com/kisielk/errcheck" - rev = "55d8f507faff4d6eddd0c41a3e713e2567fca4e5" - sha256 = "19vd4rxmqbk5lpiav3pf7df3yjlz0l0dwx9mn0gjq5f998iyhy6y" - -["github.com/kisielk/gotool"] - sumVersion = "v1.0.0" - ["github.com/kisielk/gotool".fetch] - type = "git" - url = "https://github.com/kisielk/gotool" - rev = "80517062f582ea3340cd4baf70e86d539ae7d84d" - sha256 = "14af2pa0ssyp8bp2mvdw184s5wcysk6akil3wzxmr05wwy951iwn" - -["github.com/konsorten/go-windows-terminal-sequences"] - sumVersion = "v1.0.1" - ["github.com/konsorten/go-windows-terminal-sequences".fetch] - type = "git" - url = "https://github.com/konsorten/go-windows-terminal-sequences" - rev = "5c8c8bd35d3832f5d134ae1e1e375b69a4d25242" - sha256 = "1lchgf27n276vma6iyxa0v1xds68n2g8lih5lavqnx5x6q5pw2ip" - -["github.com/kr/logfmt"] - sumVersion = "v0.0.0-20140226030751-b84e30acd515" - ["github.com/kr/logfmt".fetch] - type = "git" - url = "https://github.com/kr/logfmt" - rev = "b84e30acd515aadc4b783ad4ff83aff3299bdfe0" - sha256 = "02ldzxgznrfdzvghfraslhgp19la1fczcbzh7wm2zdc6lmpd1qq9" - -["github.com/kr/pretty"] - sumVersion = "v0.1.0" - ["github.com/kr/pretty".fetch] - type = "git" - url = "https://github.com/kr/pretty" - rev = "73f6ac0b30a98e433b289500d779f50c1a6f0712" - sha256 = "18m4pwg2abd0j9cn5v3k2ksk9ig4vlwxmlw9rrglanziv9l967qp" - -["github.com/kr/pty"] - sumVersion = "v1.1.1" - ["github.com/kr/pty".fetch] - type = "git" - url = "https://github.com/kr/pty" - rev = "282ce0e5322c82529687d609ee670fac7c7d917c" - sha256 = "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6" - -["github.com/kr/text"] - sumVersion = "v0.1.0" - ["github.com/kr/text".fetch] - type = "git" - url = "https://github.com/kr/text" - rev = "e2ffdb16a802fe2bb95e2e35ff34f0e53aeef34f" - sha256 = "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1" - -["github.com/magiconair/properties"] - sumVersion = "v1.8.1" - ["github.com/magiconair/properties".fetch] - type = "git" - url = "https://github.com/magiconair/properties" - rev = "de8848e004dd33dc07a2947b3d76f618a7fc7ef1" - sha256 = "19zqw1x0w0crh8zc84yy82nkcc5yjz72gviaf2xjgfm5a8np7nyb" - -["github.com/mattn/go-colorable"] - sumVersion = "v0.0.9" - ["github.com/mattn/go-colorable".fetch] - type = "git" - url = "https://github.com/mattn/go-colorable" - rev = "167de6bfdfba052fa6b2d3664c8f5272e23c9072" - sha256 = "1nwjmsppsjicr7anq8na6md7b1z84l9ppnlr045hhxjvbkqwalvx" - -["github.com/mattn/go-isatty"] - sumVersion = "v0.0.3" - ["github.com/mattn/go-isatty".fetch] - type = "git" - url = "https://github.com/mattn/go-isatty" - rev = "0360b2af4f38e8d38c7fce2a9f4e702702d73a39" - sha256 = "06w45aqz2a6yrk25axbly2k5wmsccv8cspb94bfmz4izvw8h927n" - -["github.com/matttproud/golang_protobuf_extensions"] - sumVersion = "v1.0.1" - ["github.com/matttproud/golang_protobuf_extensions".fetch] - type = "git" - url = "https://github.com/matttproud/golang_protobuf_extensions" - rev = "c12348ce28de40eed0136aa2b644d0ee0650e56c" - sha256 = "1d0c1isd2lk9pnfq2nk0aih356j30k3h1gi2w0ixsivi5csl7jya" - -["github.com/miekg/dns"] - sumVersion = "v1.0.14" - ["github.com/miekg/dns".fetch] - type = "git" - url = "https://github.com/miekg/dns" - rev = "915ca3d5ffd945235828a097c917311a9d86ebb4" - sha256 = "1qgli6yp59bv6vc6zag84cwxmcxgnyxm1q2f301yyijk3wy5b2ak" - -["github.com/mitchellh/cli"] - sumVersion = "v1.0.0" - ["github.com/mitchellh/cli".fetch] - type = "git" - url = "https://github.com/mitchellh/cli" - rev = "3d22a244be8aa6fb16ac24af0e195c08b7d973aa" - sha256 = "1i9kmr7rcf10d2hji8h4247hmc0nbairv7a0q51393aw2h1bnwg2" - -["github.com/mitchellh/go-homedir"] - sumVersion = "v1.1.0" - ["github.com/mitchellh/go-homedir".fetch] - type = "git" - url = "https://github.com/mitchellh/go-homedir" - rev = "af06845cf3004701891bf4fdb884bfe4920b3727" - sha256 = "0ydzkipf28hwj2bfxqmwlww47khyk6d152xax4bnyh60f4lq3nx1" - -["github.com/mitchellh/go-testing-interface"] - sumVersion = "v1.0.0" - ["github.com/mitchellh/go-testing-interface".fetch] - type = "git" - url = "https://github.com/mitchellh/go-testing-interface" - rev = "6d0b8010fcc857872e42fc6c931227569016843c" - sha256 = "1dl2js8di858bawg7dadlf1qjpkl2g3apziihjyf5imri3znyfpw" - -["github.com/mitchellh/gox"] - sumVersion = "v0.4.0" - ["github.com/mitchellh/gox".fetch] - type = "git" - url = "https://github.com/mitchellh/gox" - rev = "c9740af9c6574448fd48eb30a71f964014c7a837" - sha256 = "1q4fdkw904mrmh1q5z8pfd3r0gcn5dm776kldqawddy93iiwnp8r" - -["github.com/mitchellh/iochan"] - sumVersion = "v1.0.0" - ["github.com/mitchellh/iochan".fetch] - type = "git" - url = "https://github.com/mitchellh/iochan" - rev = "b6e3aadd28864e14dae41ff5c7261455b1242d24" - sha256 = "058n9bbf536f2nw3pbs7pysrg9cqvgkb28z2zf5wjyrzrknyk53g" - -["github.com/mitchellh/mapstructure"] - sumVersion = "v1.1.2" - ["github.com/mitchellh/mapstructure".fetch] - type = "git" - url = "https://github.com/mitchellh/mapstructure" - rev = "3536a929edddb9a5b34bd6861dc4a9647cb459fe" - sha256 = "03bpv28jz9zhn4947saqwi328ydj7f6g6pf1m2d4m5zdh5jlfkrr" - -["github.com/modern-go/concurrent"] - sumVersion = "v0.0.0-20180306012644-bacd9c7ef1dd" - ["github.com/modern-go/concurrent".fetch] - type = "git" - url = "https://github.com/modern-go/concurrent" - rev = "bacd9c7ef1dd9b15be4a9909b8ac7a4e313eec94" - sha256 = "0s0fxccsyb8icjmiym5k7prcqx36hvgdwl588y0491gi18k5i4zs" - -["github.com/modern-go/reflect2"] - sumVersion = "v1.0.1" - ["github.com/modern-go/reflect2".fetch] - type = "git" - url = "https://github.com/modern-go/reflect2" - rev = "94122c33edd36123c84d5368cfb2b69df93a0ec8" - sha256 = "06a3sablw53n1dqqbr2f53jyksbxdmmk8axaas4yvnhyfi55k4lf" - -["github.com/mwitkow/go-conntrack"] - sumVersion = "v0.0.0-20161129095857-cc309e4a2223" - ["github.com/mwitkow/go-conntrack".fetch] - type = "git" - url = "https://github.com/mwitkow/go-conntrack" - rev = "cc309e4a22231782e8893f3c35ced0967807a33e" - sha256 = "0nbrnpk7bkmqg9mzwsxlm0y8m7s9qd9phr1q30qlx2qmdmz7c1mf" - -["github.com/oklog/ulid"] - sumVersion = "v1.3.1" - ["github.com/oklog/ulid".fetch] - type = "git" - url = "https://github.com/oklog/ulid" - rev = "02a8604050d8466dd915307496174adb9be4593a" - sha256 = "0hybwyid820n80axrk863k2py93hbqlq6hxhf84ppmz0qd0ys0gq" - -["github.com/pascaldekloe/goe"] - sumVersion = "v0.0.0-20180627143212-57f6aae5913c" - ["github.com/pascaldekloe/goe".fetch] - type = "git" - url = "https://github.com/pascaldekloe/goe" - rev = "57f6aae5913c64c9bcae5dbdffd33365b5a7f138" - sha256 = "1dqd3mfb4z2vmv6pg6fhgvfc53vhndk24wcl9lj1rz02n6m279fq" - -["github.com/pelletier/go-toml"] - sumVersion = "v1.2.0" - ["github.com/pelletier/go-toml".fetch] - type = "git" - url = "https://github.com/pelletier/go-toml" - rev = "c01d1270ff3e442a8a57cddc1c92dc1138598194" - sha256 = "1fjzpcjng60mc3a4b2ql5a00d5gah84wj740dabv9kq67mpg8fxy" - -["github.com/pkg/errors"] - sumVersion = "v0.8.1" - ["github.com/pkg/errors".fetch] - type = "git" - url = "https://github.com/pkg/errors" - rev = "ba968bfe8b2f7e042a574c888954fccecfa385b4" - sha256 = "0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1" - -["github.com/pmezard/go-difflib"] - sumVersion = "v1.0.0" - ["github.com/pmezard/go-difflib".fetch] - type = "git" - url = "https://github.com/pmezard/go-difflib" - rev = "792786c7400a136282c1664665ae0a8db921c6c2" - sha256 = "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw" - -["github.com/posener/complete"] - sumVersion = "v1.1.1" - ["github.com/posener/complete".fetch] - type = "git" - url = "https://github.com/posener/complete" - rev = "98eb9847f27ba2008d380a32c98be474dea55bdf" - sha256 = "1nbdiybjizbaxbf5q0xwbq0cjqw4bl6jggvsjzrpif0w86fcjda2" - -["github.com/prometheus/client_golang"] - sumVersion = "v0.9.3" - ["github.com/prometheus/client_golang".fetch] - type = "git" - url = "https://github.com/prometheus/client_golang" - rev = "50c4339db732beb2165735d2cde0bff78eb3c5a5" - sha256 = "1608rm1y2p3iv8k2x7wyc6hshvpbfkv2k77hy0x870syms1g3g1p" - -["github.com/prometheus/client_model"] - sumVersion = "v0.0.0-20190129233127-fd36f4220a90" - ["github.com/prometheus/client_model".fetch] - type = "git" - url = "https://github.com/prometheus/client_model" - rev = "fd36f4220a901265f90734c3183c5f0c91daa0b8" - sha256 = "1bs5d72k361llflgl94c22n0w53j30rsfh84smgk8mbjbcmjsaa5" - -["github.com/prometheus/common"] - sumVersion = "v0.4.0" - ["github.com/prometheus/common".fetch] - type = "git" - url = "https://github.com/prometheus/common" - rev = "1ba88736f028e37bc17328369e94a537ae9e0234" - sha256 = "00008pczafy982m59n1j31pnp41f4grbc2c40jccp52xg3m5klmr" - -["github.com/prometheus/procfs"] - sumVersion = "v0.0.0-20190507164030-5867b95ac084" - ["github.com/prometheus/procfs".fetch] - type = "git" - url = "https://github.com/prometheus/procfs" - rev = "5867b95ac084bbfee6ea16595c4e05ab009021da" - sha256 = "1rahdk62ajj4zpfb3mgzjqip773la9fb0m87m7s9a0b39l3fmzvr" - -["github.com/prometheus/tsdb"] - sumVersion = "v0.7.1" - ["github.com/prometheus/tsdb".fetch] - type = "git" - url = "https://github.com/prometheus/tsdb" - rev = "c20450564cc42983bf923c13f3fda42de709ac13" - sha256 = "1c1da8i5byvhh4fp3vqjfb65aaksjskn3ggb8wg9hcfzjrhgpz04" - -["github.com/rogpeppe/fastuuid"] - sumVersion = "v0.0.0-20150106093220-6724a57986af" - ["github.com/rogpeppe/fastuuid".fetch] - type = "git" - url = "https://github.com/rogpeppe/fastuuid" - rev = "6724a57986aff9bff1a1770e9347036def7c89f6" - sha256 = "12s65phfx6hxj4v0b5kj8akgrbf5mxpa101fyzw03h6hld1f70cz" - -["github.com/rogpeppe/go-internal"] - sumVersion = "v1.3.0" - ["github.com/rogpeppe/go-internal".fetch] - type = "git" - url = "https://github.com/rogpeppe/go-internal" - rev = "438578804ca6f31be148c27683afc419ce47c06e" - sha256 = "0mcdh1licgnnahwml9y2iq6xy5x9xmjw5frcnds2s3wpjyqrl216" - -["github.com/russross/blackfriday/v2"] - sumVersion = "v2.0.1" - ["github.com/russross/blackfriday/v2".fetch] - type = "git" - url = "https://github.com/russross/blackfriday" - rev = "d3b5b032dc8e8927d31a5071b56e14c89f045135" - sha256 = "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j" - -["github.com/ryanuber/columnize"] - sumVersion = "v0.0.0-20160712163229-9b3edd62028f" - ["github.com/ryanuber/columnize".fetch] - type = "git" - url = "https://github.com/ryanuber/columnize" - rev = "9b3edd62028f107d7cabb19353292afd29311a4e" - sha256 = "1ya1idkbb0a9fjlhkcnh5a9yvpwzwfmbyg7d56lpplwr9rqi1da4" - -["github.com/sean-/seed"] - sumVersion = "v0.0.0-20170313163322-e2103e2c3529" - ["github.com/sean-/seed".fetch] - type = "git" - url = "https://github.com/sean-/seed" - rev = "e2103e2c35297fb7e17febb81e49b312087a2372" - sha256 = "0glir8jxi1w7aga2jwdb63pp1h8q4whknili7xixsqzwyy716125" - -["github.com/shurcooL/sanitized_anchor_name"] - sumVersion = "v1.0.0" - ["github.com/shurcooL/sanitized_anchor_name".fetch] - type = "git" - url = "https://github.com/shurcooL/sanitized_anchor_name" - rev = "7bfe4c7ecddb3666a94b053b422cdd8f5aaa3615" - sha256 = "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f" - -["github.com/sirupsen/logrus"] - sumVersion = "v1.2.0" - ["github.com/sirupsen/logrus".fetch] - type = "git" - url = "https://github.com/sirupsen/logrus" - rev = "bcd833dfe83d3cebad139e4a29ed79cb2318bf95" - sha256 = "0r6334x2bls8ddznvzaldx4g88msjjns4mlks95rqrrg7h0ijigg" - -["github.com/smartystreets/assertions"] - sumVersion = "v0.0.0-20180927180507-b2de0cb4f26d" - ["github.com/smartystreets/assertions".fetch] - type = "git" - url = "https://github.com/smartystreets/assertions" - rev = "b2de0cb4f26d0705483a2f495d89896d0b808573" - sha256 = "1i7ldgavgl35c7gk25p7bvdr282ckng090zr4ch9mk1705akx09y" - -["github.com/smartystreets/goconvey"] - sumVersion = "v1.6.4" - ["github.com/smartystreets/goconvey".fetch] - type = "git" - url = "https://github.com/smartystreets/goconvey" - rev = "505e419363375c0dc132d3ac02632a4ee32199ca" - sha256 = "07zjxwszayal88z1j2bwnqrsa32vg8l4nivks5yfr9j8xfsw7n6m" - -["github.com/soheilhy/cmux"] - sumVersion = "v0.1.4" - ["github.com/soheilhy/cmux".fetch] - type = "git" - url = "https://github.com/soheilhy/cmux" - rev = "e09e9389d85d8492d313d73d1469c029e710623f" - sha256 = "1f736g68d9vwlyfb6g0fxkr0r875369xafk30cz8kaq5niaqwv0h" - -["github.com/spaolacci/murmur3"] - sumVersion = "v0.0.0-20180118202830-f09979ecbc72" - ["github.com/spaolacci/murmur3".fetch] - type = "git" - url = "https://github.com/spaolacci/murmur3" - rev = "f09979ecbc725b9e6d41a297405f65e7e8804acc" - sha256 = "1lv3zyz3jy2d76bhvvs8svygx66606iygdvwy5cwc0p5z8yghq25" - -["github.com/spf13/afero"] - sumVersion = "v1.1.2" - ["github.com/spf13/afero".fetch] - type = "git" - url = "https://github.com/spf13/afero" - rev = "d40851caa0d747393da1ffb28f7f9d8b4eeffebd" - sha256 = "0miv4faf5ihjfifb1zv6aia6f6ik7h1s4954kcb8n6ixzhx9ck6k" - -["github.com/spf13/cast"] - sumVersion = "v1.3.0" - ["github.com/spf13/cast".fetch] - type = "git" - url = "https://github.com/spf13/cast" - rev = "8c9545af88b134710ab1cd196795e7f2388358d7" - sha256 = "0xq1ffqj8y8h7dcnm0m9lfrh0ga7pssnn2c1dnr09chqbpn4bdc5" - -["github.com/spf13/cobra"] - sumVersion = "v1.0.0" - ["github.com/spf13/cobra".fetch] - type = "git" - url = "https://github.com/spf13/cobra" - rev = "a684a6d7f5e37385d954dd3b5a14fc6912c6ab9d" - sha256 = "0vbppqqhby302a5ayn0296jqr71qkcd4c9am7wzsk6z71fwdsa7h" - -["github.com/spf13/jwalterweatherman"] - sumVersion = "v1.0.0" - ["github.com/spf13/jwalterweatherman".fetch] - type = "git" - url = "https://github.com/spf13/jwalterweatherman" - rev = "4a4406e478ca629068e7768fc33f3f044173c0a6" - sha256 = "093fmmvavv84pv4q84hav7ph3fmrq87bvspjj899q0qsx37yvdr8" - -["github.com/spf13/pflag"] - sumVersion = "v1.0.5" - ["github.com/spf13/pflag".fetch] - type = "git" - url = "https://github.com/spf13/pflag" - rev = "2e9d26c8c37aae03e3f9d4e90b7116f5accb7cab" - sha256 = "0gpmacngd0gpslnbkzi263f5ishigzgh6pbdv9hp092rnjl4nd31" - -["github.com/spf13/viper"] - sumVersion = "v1.7.0" - ["github.com/spf13/viper".fetch] - type = "git" - url = "https://github.com/spf13/viper" - rev = "13df72109047b6ae9c907bce81e327265d6d8a9c" - sha256 = "099n2g7fg6r8hqyszqw2axr775qyhyvwhsykvgw0f0s16ql48h5c" - -["github.com/stretchr/objx"] - sumVersion = "v0.1.1" - ["github.com/stretchr/objx".fetch] - type = "git" - url = "https://github.com/stretchr/objx" - rev = "477a77ecc69700c7cdeb1fa9e129548e1c1c393c" - sha256 = "0iph0qmpyqg4kwv8jsx6a56a7hhqq8swrazv40ycxk9rzr0s8yls" - -["github.com/stretchr/testify"] - sumVersion = "v1.6.1" - ["github.com/stretchr/testify".fetch] - type = "git" - url = "https://github.com/stretchr/testify" - rev = "f654a9112bbeac49ca2cd45bfbe11533c4666cf8" - sha256 = "1yhiqqzjvi63pf01rgzx68gqkkvjx03fvl5wk30br5l6s81s090l" - -["github.com/subosito/gotenv"] - sumVersion = "v1.2.0" - ["github.com/subosito/gotenv".fetch] - type = "git" - url = "https://github.com/subosito/gotenv" - rev = "2ef7124db659d49edac6aa459693a15ae36c671a" - sha256 = "0mav91j7r4arjkpq5zcf9j74f6pww8ic53x43wy7kg3ibw31yjs5" - -["github.com/tmc/grpc-websocket-proxy"] - sumVersion = "v0.0.0-20190109142713-0ad062ec5ee5" - ["github.com/tmc/grpc-websocket-proxy".fetch] - type = "git" - url = "https://github.com/tmc/grpc-websocket-proxy" - rev = "0ad062ec5ee553a48f6dbd280b7a1b5638e8a113" - sha256 = "1anw4v9wspnw9xf2z5r9w0sszwjklyanl0l85wgg6nxak9gnrqp4" - -["github.com/ugorji/go"] - sumVersion = "v1.1.4" - ["github.com/ugorji/go".fetch] - type = "git" - url = "https://github.com/ugorji/go" - rev = "2adff0894ba3bc2eeb9f9aea45fefd49802e1a13" - sha256 = "0ma2qvn5wqvjidpdz74x832a813qnr1cxbx6n6n125ak9b3wbn5w" - -["github.com/xiang90/probing"] - sumVersion = "v0.0.0-20190116061207-43a291ad63a2" - ["github.com/xiang90/probing".fetch] - type = "git" - url = "https://github.com/xiang90/probing" - rev = "43a291ad63a214a207fefbf03c7d9d78b703162b" - sha256 = "1z22ms16j5j42775mf31isanwx2pwr1d8wqw8006dczjv36qnz5i" - -["github.com/xordataexchange/crypt"] - sumVersion = "v0.0.3-0.20170626215501-b2862e3d0a77" - ["github.com/xordataexchange/crypt".fetch] - type = "git" - url = "https://github.com/xordataexchange/crypt" - rev = "b2862e3d0a775f18c7cfe02273500ae307b61218" - sha256 = "04q3856anpzl4gdfgmg7pbp9cx231nkz3ymq2xp27rnmmwhfxr8y" - -["go.etcd.io/bbolt"] - sumVersion = "v1.3.2" - ["go.etcd.io/bbolt".fetch] - type = "git" - url = "https://github.com/etcd-io/bbolt" - rev = "63597a96ec0ad9e6d43c3fc81e809909e0237461" - sha256 = "13d5l6p6c5wvkr6vn9hkhz9c593qifn7fgx0hg4d6jcvg1y0bnm2" - -["go.opencensus.io"] - sumVersion = "v0.22.0" - ["go.opencensus.io".fetch] - type = "git" - url = "https://github.com/census-instrumentation/opencensus-go" - rev = "9c377598961b706d1542bd2d84d538b5094d596e" - sha256 = "05jr8gkr2w34i5wwki4zhl5ch0qrgi7cdgag5iy5gpxplhbrvbg9" - -["go.uber.org/atomic"] - sumVersion = "v1.4.0" - ["go.uber.org/atomic".fetch] - type = "git" - url = "https://github.com/uber-go/atomic" - rev = "df976f2515e274675050de7b3f42545de80594fd" - sha256 = "0c6yzx15c20719xii3dm0vyjd8i9jx45m0wh5yp1zf29b0gbljcy" - -["go.uber.org/multierr"] - sumVersion = "v1.1.0" - ["go.uber.org/multierr".fetch] - type = "git" - url = "https://github.com/uber-go/multierr" - rev = "3c4937480c32f4c13a875a1829af76c98ca3d40a" - sha256 = "1slfc6syvw8cvr6rbrjsy6ja5w8gsx0f8aq8qm16rp2x5c2pj07w" - -["go.uber.org/zap"] - sumVersion = "v1.10.0" - ["go.uber.org/zap".fetch] - type = "git" - url = "https://github.com/uber-go/zap" - rev = "27376062155ad36be76b0f12cf1572a221d3a48c" - sha256 = "10hdzr1rghwbsl6bbd30779dx44fh9mg9pq8d2cgqlknqxxpvpvr" - -["golang.org/x/crypto"] - sumVersion = "v0.0.0-20190605123033-f99c8df09eb5" - ["golang.org/x/crypto".fetch] - type = "git" - url = "https://go.googlesource.com/crypto" - rev = "f99c8df09eb5bff426315721bfa5f16a99cad32c" - sha256 = "0jwi6c6366999mnpzwx3a2kr7hzvdx97qfwiphx0r7cy0mpf28hf" - -["golang.org/x/exp"] - sumVersion = "v0.0.0-20191030013958-a1ab85dbe136" - ["golang.org/x/exp".fetch] - type = "git" - url = "https://go.googlesource.com/exp" - rev = "a1ab85dbe136a36c66fbea07de5e3d62a0ce60ad" - sha256 = "0mmq4ggjpplqw61sch2bcjq0pws69rik5aicfvkg27cmw9h1937a" - -["golang.org/x/image"] - sumVersion = "v0.0.0-20190802002840-cff245a6509b" - ["golang.org/x/image".fetch] - type = "git" - url = "https://go.googlesource.com/image" - rev = "cff245a6509b8c4de022d0d5b9037c503c5989d6" - sha256 = "0hiznlkiaay30acwvvyq8g6bm32r7bc6gv47pygrcxqpapasbz84" - -["golang.org/x/lint"] - sumVersion = "v0.0.0-20190930215403-16217165b5de" - ["golang.org/x/lint".fetch] - type = "git" - url = "https://go.googlesource.com/lint" - rev = "16217165b5de779cb6a5e4fc81fa9c1166fda457" - sha256 = "0jhwmwc0vykcmf164na0pnadl8gv7184b6pf3xayknwmzdw6vd7h" - -["golang.org/x/mobile"] - sumVersion = "v0.0.0-20190719004257-d2bd2a29d028" - ["golang.org/x/mobile".fetch] - type = "git" - url = "https://go.googlesource.com/mobile" - rev = "d2bd2a29d028cb94031e5e81788b19b371d00eb8" - sha256 = "1nv6vvhnjr01nx9y06q46ww87dppdwpbqrlsfg1xf2587wxl8xiv" - -["golang.org/x/mod"] - sumVersion = "v0.1.0" - ["golang.org/x/mod".fetch] - type = "git" - url = "https://go.googlesource.com/mod" - rev = "d8296639b499981d50d327e4b5714c5734e925d6" - sha256 = "19d0f0mpddskm3n13sdk2g6vd7ri9bici1q3z1fq4kslzxrl5yj5" - -["golang.org/x/net"] - sumVersion = "v0.0.0-20190620200207-3b0461eec859" - ["golang.org/x/net".fetch] - type = "git" - url = "https://go.googlesource.com/net" - rev = "3b0461eec859c4b73bb64fdc8285971fd33e3938" - sha256 = "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5" - -["golang.org/x/oauth2"] - sumVersion = "v0.0.0-20190604053449-0f29369cfe45" - ["golang.org/x/oauth2".fetch] - type = "git" - url = "https://go.googlesource.com/oauth2" - rev = "0f29369cfe4552d0e4bcddc57cc75f4d7e672a33" - sha256 = "06jwpvx0x2gjn2y959drbcir5kd7vg87k0r1216abk6rrdzzrzi2" - -["golang.org/x/sync"] - sumVersion = "v0.0.0-20190423024810-112230192c58" - ["golang.org/x/sync".fetch] - type = "git" - url = "https://go.googlesource.com/sync" - rev = "112230192c580c3556b8cee6403af37a4fc5f28c" - sha256 = "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn" - -["golang.org/x/sys"] - sumVersion = "v0.0.0-20190624142023-c5567b49c5d0" - ["golang.org/x/sys".fetch] - type = "git" - url = "https://go.googlesource.com/sys" - rev = "c5567b49c5d04a5f83870795b8c0e2df43a8ce32" - sha256 = "0z6nh1ma3jmqa0wh5dk9183kbm0sdzja5wl3mbnmimjv88f3rmah" - -["golang.org/x/text"] - sumVersion = "v0.3.2" - ["golang.org/x/text".fetch] - type = "git" - url = "https://go.googlesource.com/text" - rev = "342b2e1fbaa52c93f31447ad2c6abc048c63e475" - sha256 = "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh" - -["golang.org/x/time"] - sumVersion = "v0.0.0-20190308202827-9d24e82272b4" - ["golang.org/x/time".fetch] - type = "git" - url = "https://go.googlesource.com/time" - rev = "9d24e82272b4f38b78bc8cff74fa936d31ccd8ef" - sha256 = "1f5nkr4vys2vbd8wrwyiq2f5wcaahhpxmia85d1gshcbqjqf8dkb" - -["golang.org/x/tools"] - sumVersion = "v0.0.0-20191112195655-aa38f8e97acc" - ["golang.org/x/tools".fetch] - type = "git" - url = "https://go.googlesource.com/tools" - rev = "aa38f8e97acca3a446000a524f892ba64f088b80" - sha256 = "1zk57mnsnf9am07ry91gy9fd509g53drnn2nm44b2114g554dq6m" - -["golang.org/x/xerrors"] - sumVersion = "v0.0.0-20190717185122-a985d3407aa7" - ["golang.org/x/xerrors".fetch] - type = "git" - url = "https://go.googlesource.com/xerrors" - rev = "a985d3407aa71f30cf86696ee0a2f409709f22e1" - sha256 = "00wzr5w8aadipgc3rkk8f11i41znskfj9ix5nhhaxyg7isrslgcj" - -["google.golang.org/api"] - sumVersion = "v0.13.0" - ["google.golang.org/api".fetch] - type = "git" - url = "https://github.com/googleapis/google-api-go-client" - rev = "4f42dad4690a01d7f6fa461106c63889ff1be027" - sha256 = "1mw1k1j5l0ycrf3pwgzj9dzc8y9898lmj94s4ivcn7vc8ap8xppg" - -["google.golang.org/appengine"] - sumVersion = "v1.6.1" - ["google.golang.org/appengine".fetch] - type = "git" - url = "https://github.com/golang/appengine" - rev = "b2f4a3cf3c67576a2ee09e1fe62656a5086ce880" - sha256 = "0zxlvwzxwkwz4bs4h9zc9979dx76y4xf9ks4d22bclg47dv59yry" - -["google.golang.org/genproto"] - sumVersion = "v0.0.0-20191108220845-16a3f7862a1a" - ["google.golang.org/genproto".fetch] - type = "git" - url = "https://github.com/googleapis/go-genproto" - rev = "16a3f7862a1a494c52b23987ef8a993fd3f9a85e" - sha256 = "1g6kwz4f4sj11zrd7vip81ld5l5p7j7w286sxm0ahv7x3h40358c" - -["google.golang.org/grpc"] - sumVersion = "v1.21.1" - ["google.golang.org/grpc".fetch] - type = "git" - url = "https://github.com/grpc/grpc-go" - rev = "501c41df7f472c740d0674ff27122f3f48c80ce7" - sha256 = "0hla9rjvyi6wjak4cw39ic8jkdcd0lsymhrz9sa52bfybxsczf38" - -["gopkg.in/alecthomas/kingpin.v2"] - sumVersion = "v2.2.6" - ["gopkg.in/alecthomas/kingpin.v2".fetch] - type = "git" - url = "https://gopkg.in/alecthomas/kingpin.v2" - rev = "947dcec5ba9c011838740e680966fd7087a71d0d" - sha256 = "0mndnv3hdngr3bxp7yxfd47cas4prv98sqw534mx7vp38gd88n5r" - -["gopkg.in/check.v1"] - sumVersion = "v1.0.0-20180628173108-788fd7840127" - ["gopkg.in/check.v1".fetch] - type = "git" - url = "https://gopkg.in/check.v1" - rev = "788fd78401277ebd861206a03c884797c6ec5541" - sha256 = "0v3bim0j375z81zrpr5qv42knqs0y2qv2vkjiqi5axvb78slki1a" - -["gopkg.in/errgo.v2"] - sumVersion = "v2.1.0" - ["gopkg.in/errgo.v2".fetch] - type = "git" - url = "https://gopkg.in/errgo.v2" - rev = "f768c5ab0476c50e978b039312180859c10fe8c0" - sha256 = "065mbihiy7q67wnql0bzl9y1kkvck5ivra68254zbih52jxwrgr2" - -["gopkg.in/ini.v1"] - sumVersion = "v1.51.0" - ["gopkg.in/ini.v1".fetch] - type = "git" - url = "https://gopkg.in/ini.v1" - rev = "87e589f4917038ae250cff2446db7573f47e97ca" - sha256 = "1wccpzmf4kmz6hl6pd3mjwlzr9p6m6j9vc9302svzcwbaidgn3l1" - -["gopkg.in/resty.v1"] - sumVersion = "v1.12.0" - ["gopkg.in/resty.v1".fetch] - type = "git" - url = "https://gopkg.in/resty.v1" - rev = "fa5875c0caa5c260ab78acec5a244215a730247f" - sha256 = "062mn735rqzhha5ag07z4gz08hxzrfm2yx067jfmaaxmb6797lmp" - -["gopkg.in/yaml.v2"] - sumVersion = "v2.2.4" - ["gopkg.in/yaml.v2".fetch] - type = "git" - url = "https://gopkg.in/yaml.v2" - rev = "f221b8435cfb71e54062f6c6e99e9ade30b124d5" - sha256 = "11bwj757wi8kdrcnlgfqb8vv2d2xdhlghmyagd19i62khrkchsg2" - -["gopkg.in/yaml.v3"] - sumVersion = "v3.0.0-20200313102051-9f266ea9e77c" - ["gopkg.in/yaml.v3".fetch] - type = "git" - url = "https://gopkg.in/yaml.v3" - rev = "9f266ea9e77c4c7aab4cf02650570e7c7b3031a5" - sha256 = "1bbai3lzb50m0x2vwsdbagrbhvfylj9k1m32hgbqwldqx4p9ay35" - -["honnef.co/go/tools"] - sumVersion = "v0.0.1-2019.2.3" - ["honnef.co/go/tools".fetch] - type = "git" - url = "https://github.com/dominikh/go-tools" - rev = "afd67930eec2a9ed3e9b19f684d17a062285f16a" - sha256 = "1rwwahmbs4dwxncwjj56likir1kps9937vm2id3rygxzzla40zal" - -["rsc.io/binaryregexp"] - sumVersion = "v0.2.0" - ["rsc.io/binaryregexp".fetch] - type = "git" - url = "https://github.com/rsc/binaryregexp" - rev = "857b9542aaa89cfa42a1477b43fa1f24192fe921" - sha256 = "1kar0myy85waw418zslviwx8846zj0m9cmqkxjx0fvgjdi70nc4b" diff --git a/resources/sconfig/last-synced.narHash b/resources/sconfig/last-synced.narHash deleted file mode 100644 index c6e6abef..00000000 --- a/resources/sconfig/last-synced.narHash +++ /dev/null @@ -1 +0,0 @@ -sha256-jR2hkR0YlPyW2nKWJl90kL80R+9psNKGPYxGg7Y/YGw= diff --git a/resources/stoml/default.nix b/resources/stoml/default.nix deleted file mode 100644 index 9377f6f3..00000000 --- a/resources/stoml/default.nix +++ /dev/null @@ -1,6 +0,0 @@ -{ pkgs, stoml-src }: -pkgs.buildGoApplication { - name = "stoml"; - src = "${stoml-src}"; - modules = ./go-modules.toml; -} diff --git a/resources/stoml/go-modules.toml b/resources/stoml/go-modules.toml deleted file mode 100644 index a1a30769..00000000 --- a/resources/stoml/go-modules.toml +++ /dev/null @@ -1,1295 +0,0 @@ -["cloud.google.com/go"] - sumVersion = "v0.46.3" - ["cloud.google.com/go".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "264def2dd949cdb8a803bb9f50fa29a67b798a6a" - sha256 = "102r2hhr93lcjn97svi382zmng8kp9vkl5kpw3xhd7zv17n42625" - -["cloud.google.com/go/bigquery"] - sumVersion = "v1.0.1" - relPath = "bigquery" - ["cloud.google.com/go/bigquery".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "63c28c0124777c34a3bca5876d3c0965ac730d3b" - sha256 = "1gnvs0q96l37z0ypw426b590jsihn459scdzb0g8vr2c8lwkcrmh" - -["cloud.google.com/go/datastore"] - sumVersion = "v1.0.0" - relPath = "datastore" - ["cloud.google.com/go/datastore".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "c5d562bdb35850f11d6a275d85ab8535265e9821" - sha256 = "0d7ikvbyasifhbxgc2gw97zqc27ihi9a22wdywh5gw2cwjwpw5gi" - -["cloud.google.com/go/firestore"] - sumVersion = "v1.1.0" - relPath = "firestore" - ["cloud.google.com/go/firestore".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "20091f47d3c522ea545f358dd9ac1cdb326bba6f" - sha256 = "0slvm0vx5f8l2vs4k9k8jv8qnz6z9dzq25xmrhza82cj9j51ghvb" - -["cloud.google.com/go/pubsub"] - sumVersion = "v1.0.1" - relPath = "pubsub" - ["cloud.google.com/go/pubsub".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "5e5fbac2c404f4b86d847ebbd8ba7ce457acbaaa" - sha256 = "0vgnys9rl0yicq4mjb1rg199zqfb3sax1ay6jbbyhnm7l36il3nv" - -["cloud.google.com/go/storage"] - sumVersion = "v1.0.0" - relPath = "storage" - ["cloud.google.com/go/storage".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "264def2dd949cdb8a803bb9f50fa29a67b798a6a" - sha256 = "102r2hhr93lcjn97svi382zmng8kp9vkl5kpw3xhd7zv17n42625" - -["dmitri.shuralyov.com/gpu/mtl"] - sumVersion = "v0.0.0-20190408044501-666a987793e9" - ["dmitri.shuralyov.com/gpu/mtl".fetch] - type = "git" - url = "https://dmitri.shuralyov.com/gpu/mtl" - rev = "666a987793e9432fbb48592aa2f3bf3463685dfa" - sha256 = "1isd03hgiwcf2ld1rlp0plrnfz7r4i7c5q4kb6hkcd22axnmrv0z" - -["github.com/BurntSushi/toml"] - sumVersion = "v0.3.1" - ["github.com/BurntSushi/toml".fetch] - type = "git" - url = "https://github.com/BurntSushi/toml" - rev = "3012a1dbe2e4bd1391d42b32f0577cb7bbc7f005" - sha256 = "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6" - -["github.com/BurntSushi/xgb"] - sumVersion = "v0.0.0-20160522181843-27f122750802" - ["github.com/BurntSushi/xgb".fetch] - type = "git" - url = "https://github.com/BurntSushi/xgb" - rev = "27f122750802c950b2c869a5b63dafcf590ced95" - sha256 = "18lp2x8f5bljvlz0r7xn744f0c9rywjsb9ifiszqqdcpwhsa0kvj" - -["github.com/OneOfOne/xxhash"] - sumVersion = "v1.2.2" - ["github.com/OneOfOne/xxhash".fetch] - type = "git" - url = "https://github.com/OneOfOne/xxhash" - rev = "6def279d2ce6c81a79dd1c1be580f03bb216fb8a" - sha256 = "1mjfhrwhvxa48rycjnqpqzm521i38h1hdyz6pdwmhd7xb8j6gwi6" - -["github.com/alecthomas/template"] - sumVersion = "v0.0.0-20160405071501-a0175ee3bccc" - ["github.com/alecthomas/template".fetch] - type = "git" - url = "https://github.com/alecthomas/template" - rev = "a0175ee3bccc567396460bf5acd36800cb10c49c" - sha256 = "0qjgvvh26vk1cyfq9fadyhfgdj36f1iapbmr5xp6zqipldz8ffxj" - -["github.com/alecthomas/units"] - sumVersion = "v0.0.0-20151022065526-2efee857e7cf" - ["github.com/alecthomas/units".fetch] - type = "git" - url = "https://github.com/alecthomas/units" - rev = "2efee857e7cfd4f3d0138cc3cbb1b4966962b93a" - sha256 = "1j65b91qb9sbrml9cpabfrcf07wmgzzghrl7809hjjhrmbzri5bl" - -["github.com/armon/circbuf"] - sumVersion = "v0.0.0-20150827004946-bbbad097214e" - ["github.com/armon/circbuf".fetch] - type = "git" - url = "https://github.com/armon/circbuf" - rev = "bbbad097214e2918d8543d5201d12bfd7bca254d" - sha256 = "1idpr0lzb2px2p3wgfq2276yl7jpaz43df6n91kf790404s4zmk3" - -["github.com/armon/go-metrics"] - sumVersion = "v0.0.0-20180917152333-f0300d1749da" - ["github.com/armon/go-metrics".fetch] - type = "git" - url = "https://github.com/armon/go-metrics" - rev = "f0300d1749da6fa982027e449ec0c7a145510c3c" - sha256 = "13l7c35ps0r27vxfil2w0xhhc7w5rh00awvlmn4cz0a937b9ffpv" - -["github.com/armon/go-radix"] - sumVersion = "v0.0.0-20180808171621-7fddfc383310" - ["github.com/armon/go-radix".fetch] - type = "git" - url = "https://github.com/armon/go-radix" - rev = "7fddfc383310abc091d79a27f116d30cf0424032" - sha256 = "0y8chspn14n9xpsfb9gxnnf819rfpriaz64v81p7873a42kkhxb4" - -["github.com/beorn7/perks"] - sumVersion = "v1.0.0" - ["github.com/beorn7/perks".fetch] - type = "git" - url = "https://github.com/beorn7/perks" - rev = "4b2b341e8d7715fae06375aa633dbb6e91b3fb46" - sha256 = "1i1nz1f6g55xi2y3aiaz5kqfgvknarbfl4f0sx4nyyb4s7xb1z9x" - -["github.com/bgentry/speakeasy"] - sumVersion = "v0.1.0" - ["github.com/bgentry/speakeasy".fetch] - type = "git" - url = "https://github.com/bgentry/speakeasy" - rev = "4aabc24848ce5fd31929f7d1e4ea74d3709c14cd" - sha256 = "02dfrj0wyphd3db9zn2mixqxwiz1ivnyc5xc7gkz58l5l27nzp8s" - -["github.com/bketelsen/crypt"] - sumVersion = "v0.0.3-0.20200106085610-5cbc8cc4026c" - ["github.com/bketelsen/crypt".fetch] - type = "git" - url = "https://github.com/bketelsen/crypt" - rev = "5cbc8cc4026c0c1d3bf9c5d4e5a30398f99c99a9" - sha256 = "006772d50c73llgz8chvynndk28qxcyr1fd18sm0b5w1g1rdw2wp" - -["github.com/cespare/xxhash"] - sumVersion = "v1.1.0" - ["github.com/cespare/xxhash".fetch] - type = "git" - url = "https://github.com/cespare/xxhash" - rev = "569f7c8abf1f58d9043ab804d364483cb1c853b6" - sha256 = "1qyzlcdcayavfazvi03izx83fvip8h36kis44zr2sg7xf6sx6l4x" - -["github.com/client9/misspell"] - sumVersion = "v0.3.4" - ["github.com/client9/misspell".fetch] - type = "git" - url = "https://github.com/client9/misspell" - rev = "b90dc15cfd220ecf8bbc9043ecb928cef381f011" - sha256 = "1vwf33wsc4la25zk9nylpbp9px3svlmldkm0bha4hp56jws4q9cs" - -["github.com/coreos/bbolt"] - sumVersion = "v1.3.2" - ["github.com/coreos/bbolt".fetch] - type = "git" - url = "https://github.com/coreos/bbolt" - rev = "63597a96ec0ad9e6d43c3fc81e809909e0237461" - sha256 = "13d5l6p6c5wvkr6vn9hkhz9c593qifn7fgx0hg4d6jcvg1y0bnm2" - -["github.com/coreos/etcd"] - sumVersion = "v3.3.13+incompatible" - ["github.com/coreos/etcd".fetch] - type = "git" - url = "https://github.com/coreos/etcd" - rev = "98d308426819d892e149fe45f6fd542464cb1f9d" - sha256 = "1kac4qfr83f2hdz35403f1ald05wc85vvhw79vxb431n61jvyaqy" - -["github.com/coreos/go-semver"] - sumVersion = "v0.3.0" - ["github.com/coreos/go-semver".fetch] - type = "git" - url = "https://github.com/coreos/go-semver" - rev = "e214231b295a8ea9479f11b70b35d5acf3556d9b" - sha256 = "0770h1mpig2j5sbiha3abnwaw8p6dg9i87r8pc7cf6m4kwml3sc9" - -["github.com/coreos/go-systemd"] - sumVersion = "v0.0.0-20190321100706-95778dfbb74e" - ["github.com/coreos/go-systemd".fetch] - type = "git" - url = "https://github.com/coreos/go-systemd" - rev = "95778dfbb74eb7e4dbaf43bf7d71809650ef8076" - sha256 = "1s3bg9p78wkixn2bqb2p23wbsqfg949ml6crw2b498s71mwh8rcf" - -["github.com/coreos/pkg"] - sumVersion = "v0.0.0-20180928190104-399ea9e2e55f" - ["github.com/coreos/pkg".fetch] - type = "git" - url = "https://github.com/coreos/pkg" - rev = "399ea9e2e55f791b6e3d920860dbecb99c3692f0" - sha256 = "0nxbn0m7lr4dg0yrwnvlkfiyg3ndv8vdpssjx7b714nivpc6ar0y" - -["github.com/cpuguy83/go-md2man/v2"] - sumVersion = "v2.0.0" - ["github.com/cpuguy83/go-md2man/v2".fetch] - type = "git" - url = "https://github.com/cpuguy83/go-md2man" - rev = "f79a8a8ca69da163eee19ab442bedad7a35bba5a" - sha256 = "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv" - -["github.com/davecgh/go-spew"] - sumVersion = "v1.1.1" - ["github.com/davecgh/go-spew".fetch] - type = "git" - url = "https://github.com/davecgh/go-spew" - rev = "8991bc29aa16c548c550c7ff78260e27b9ab7c73" - sha256 = "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y" - -["github.com/dgrijalva/jwt-go"] - sumVersion = "v3.2.0+incompatible" - ["github.com/dgrijalva/jwt-go".fetch] - type = "git" - url = "https://github.com/dgrijalva/jwt-go" - rev = "06ea1031745cb8b3dab3f6a236daf2b0aa468b7e" - sha256 = "08m27vlms74pfy5z79w67f9lk9zkx6a9jd68k3c4msxy75ry36mp" - -["github.com/dgryski/go-sip13"] - sumVersion = "v0.0.0-20181026042036-e10d5fee7954" - ["github.com/dgryski/go-sip13".fetch] - type = "git" - url = "https://github.com/dgryski/go-sip13" - rev = "e10d5fee79544bd84105c9329adcc7b745fd588c" - sha256 = "15fyibfas209ljz3f7g07kdmfbl3hhyd9n5n7aq5n5p9m5mn41d6" - -["github.com/fatih/color"] - sumVersion = "v1.7.0" - ["github.com/fatih/color".fetch] - type = "git" - url = "https://github.com/fatih/color" - rev = "5b77d2a35fb0ede96d138fc9a99f5c9b6aef11b4" - sha256 = "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv" - -["github.com/fsnotify/fsnotify"] - sumVersion = "v1.4.7" - ["github.com/fsnotify/fsnotify".fetch] - type = "git" - url = "https://github.com/fsnotify/fsnotify" - rev = "c2828203cd70a50dcccfb2761f8b1f8ceef9a8e9" - sha256 = "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g" - -["github.com/ghodss/yaml"] - sumVersion = "v1.0.0" - ["github.com/ghodss/yaml".fetch] - type = "git" - url = "https://github.com/ghodss/yaml" - rev = "0ca9ea5df5451ffdf184b4428c902747c2c11cd7" - sha256 = "0skwmimpy7hlh7pva2slpcplnm912rp3igs98xnqmn859kwa5v8g" - -["github.com/go-gl/glfw"] - sumVersion = "v0.0.0-20190409004039-e6da0acd62b1" - ["github.com/go-gl/glfw".fetch] - type = "git" - url = "https://github.com/go-gl/glfw" - rev = "e6da0acd62b1b57ee2799d4d0a76a7d4514dc5bc" - sha256 = "0prvx5r7q8yrhqvnwibv4xz3dayjbq36yajzqvh0z4lqsh4hyhch" - -["github.com/go-kit/kit"] - sumVersion = "v0.8.0" - ["github.com/go-kit/kit".fetch] - type = "git" - url = "https://github.com/go-kit/kit" - rev = "12210fb6ace19e0496167bb3e667dcd91fa9f69b" - sha256 = "1rcywbc2pvab06qyf8pc2rdfjv7r6kxdv2v4wnpqnjhz225wqvc0" - -["github.com/go-logfmt/logfmt"] - sumVersion = "v0.4.0" - ["github.com/go-logfmt/logfmt".fetch] - type = "git" - url = "https://github.com/go-logfmt/logfmt" - rev = "07c9b44f60d7ffdfb7d8efe1ad539965737836dc" - sha256 = "06smxc112xmixz78nyvk3b2hmc7wasf2sl5vxj1xz62kqcq9lzm9" - -["github.com/go-stack/stack"] - sumVersion = "v1.8.0" - ["github.com/go-stack/stack".fetch] - type = "git" - url = "https://github.com/go-stack/stack" - rev = "2fee6af1a9795aafbe0253a0cfbdf668e1fb8a9a" - sha256 = "0wk25751ryyvxclyp8jdk5c3ar0cmfr8lrjb66qbg4808x66b96v" - -["github.com/gogo/protobuf"] - sumVersion = "v1.2.1" - ["github.com/gogo/protobuf".fetch] - type = "git" - url = "https://github.com/gogo/protobuf" - rev = "ba06b47c162d49f2af050fb4c75bcbc86a159d5c" - sha256 = "06yqa6h0kw3gr5pc3qmas7f7435a96zf7iw7p0l00r2hqf6fqq6m" - -["github.com/golang/glog"] - sumVersion = "v0.0.0-20160126235308-23def4e6c14b" - ["github.com/golang/glog".fetch] - type = "git" - url = "https://github.com/golang/glog" - rev = "23def4e6c14b4da8ac2ed8007337bc5eb5007998" - sha256 = "0jb2834rw5sykfr937fxi8hxi2zy80sj2bdn9b3jb4b26ksqng30" - -["github.com/golang/groupcache"] - sumVersion = "v0.0.0-20190129154638-5b532d6fd5ef" - ["github.com/golang/groupcache".fetch] - type = "git" - url = "https://github.com/golang/groupcache" - rev = "5b532d6fd5efaf7fa130d4e859a2fde0fc3a9e1b" - sha256 = "0ls2i4ixyd4r2556j7c5jmlligjb35gfvxknrdn2abjmcahgqd6h" - -["github.com/golang/mock"] - sumVersion = "v1.3.1" - ["github.com/golang/mock".fetch] - type = "git" - url = "https://github.com/golang/mock" - rev = "d74b93584564161b2de771089ee697f07d8bd5b5" - sha256 = "1wnfa8njxdym1qb664dmfnkpm4pmqy22hqjlqpwaaiqhglb5g9d1" - -["github.com/golang/protobuf"] - sumVersion = "v1.3.2" - ["github.com/golang/protobuf".fetch] - type = "git" - url = "https://github.com/golang/protobuf" - rev = "6c65a5562fc06764971b7c5d05c76c75e84bdbf7" - sha256 = "1k1wb4zr0qbwgpvz9q5ws9zhlal8hq7dmq62pwxxriksayl6hzym" - -["github.com/google/btree"] - sumVersion = "v1.0.0" - ["github.com/google/btree".fetch] - type = "git" - url = "https://github.com/google/btree" - rev = "4030bb1f1f0c35b30ca7009e9ebd06849dd45306" - sha256 = "0ba430m9fbnagacp57krgidsyrgp3ycw5r7dj71brgp5r52g82p6" - -["github.com/google/go-cmp"] - sumVersion = "v0.3.0" - ["github.com/google/go-cmp".fetch] - type = "git" - url = "https://github.com/google/go-cmp" - rev = "6f77996f0c42f7b84e5a2b252227263f93432e9b" - sha256 = "1hyxx3434zshl2m9ja78gwlkg1rx9yl6diqa7dnjb31xz5x4gbjj" - -["github.com/google/martian"] - sumVersion = "v2.1.0+incompatible" - ["github.com/google/martian".fetch] - type = "git" - url = "https://github.com/google/martian" - rev = "195b986b4b6d4c513582cf4d2b8c4fd7e2494f7e" - sha256 = "197hil6vrjk50b9wvwyzf61csid83whsjj6ik8mc9r2lryxlyyrp" - -["github.com/google/pprof"] - sumVersion = "v0.0.0-20190515194954-54271f7e092f" - ["github.com/google/pprof".fetch] - type = "git" - url = "https://github.com/google/pprof" - rev = "54271f7e092ff31b10b7626fee166cbc6304e350" - sha256 = "14x4ydifz23rzaylggvwbm3dwlv1bc6s0bclmkxck9nbjbqw89vy" - -["github.com/google/renameio"] - sumVersion = "v0.1.0" - ["github.com/google/renameio".fetch] - type = "git" - url = "https://github.com/google/renameio" - rev = "f0e32980c006571efd537032e5f9cd8c1a92819e" - sha256 = "1ki2x5a9nrj17sn092d6n4zr29lfg5ydv4xz5cp58z6cw8ip43jx" - -["github.com/googleapis/gax-go/v2"] - sumVersion = "v2.0.5" - relPath = "v2" - ["github.com/googleapis/gax-go/v2".fetch] - type = "git" - url = "https://github.com/googleapis/gax-go" - rev = "bd5b16380fd03dc758d11cef74ba2e3bc8b0e8c2" - sha256 = "1lxawwngv6miaqd25s3ba0didfzylbwisd2nz7r4gmbmin6jsjrx" - -["github.com/gopherjs/gopherjs"] - sumVersion = "v0.0.0-20181017120253-0766667cb4d1" - ["github.com/gopherjs/gopherjs".fetch] - type = "git" - url = "https://github.com/gopherjs/gopherjs" - rev = "0766667cb4d1cfb8d5fde1fe210ae41ead3cf589" - sha256 = "13pfc9sxiwjky2lm1xb3i3lcisn8p6mgjk2d927l7r92ysph8dmw" - -["github.com/gorilla/websocket"] - sumVersion = "v1.4.2" - ["github.com/gorilla/websocket".fetch] - type = "git" - url = "https://github.com/gorilla/websocket" - rev = "b65e62901fc1c0d968042419e74789f6af455eb9" - sha256 = "0mkm9w6kjkrlzab5wh8p4qxkc0icqawjbvr01d2nk6ykylrln40s" - -["github.com/grpc-ecosystem/go-grpc-middleware"] - sumVersion = "v1.0.0" - ["github.com/grpc-ecosystem/go-grpc-middleware".fetch] - type = "git" - url = "https://github.com/grpc-ecosystem/go-grpc-middleware" - rev = "c250d6563d4d4c20252cd865923440e829844f4e" - sha256 = "0lwgxih021xfhfb1xb9la5f98bpgpaiz63sbllx77qwwl2rmhrsp" - -["github.com/grpc-ecosystem/go-grpc-prometheus"] - sumVersion = "v1.2.0" - ["github.com/grpc-ecosystem/go-grpc-prometheus".fetch] - type = "git" - url = "https://github.com/grpc-ecosystem/go-grpc-prometheus" - rev = "c225b8c3b01faf2899099b768856a9e916e5087b" - sha256 = "1lzk54h7np32b3acidg1ggbn8ppbnns0m71gcg9d1qkkdh8zrijl" - -["github.com/grpc-ecosystem/grpc-gateway"] - sumVersion = "v1.9.0" - ["github.com/grpc-ecosystem/grpc-gateway".fetch] - type = "git" - url = "https://github.com/grpc-ecosystem/grpc-gateway" - rev = "8fd5fd9d19ce68183a6b0934519dfe7fe6269612" - sha256 = "1r4y48c76yxc2hpqszfjirvh7zxjb6z72qmk95li12ar79dhv3dy" - -["github.com/hashicorp/consul/api"] - sumVersion = "v1.1.0" - relPath = "api" - ["github.com/hashicorp/consul/api".fetch] - type = "git" - url = "https://github.com/hashicorp/consul" - rev = "5174058f0d2bda63fa5198ab96c33d9a909c58ed" - sha256 = "0xm3gl8i7pgsbsc2397bwh9hp2dwnk4cmw5y05acqn3zpyp84sbv" - -["github.com/hashicorp/consul/sdk"] - sumVersion = "v0.1.1" - relPath = "sdk" - ["github.com/hashicorp/consul/sdk".fetch] - type = "git" - url = "https://github.com/hashicorp/consul" - rev = "6abe00cb2c8a3298794a7a9a67815937bd56ed63" - sha256 = "14cw0ijifma212qqwqs6slp0wl4mpj9f3mckzsc0l26i0n2pm2mc" - -["github.com/hashicorp/errwrap"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/errwrap".fetch] - type = "git" - url = "https://github.com/hashicorp/errwrap" - rev = "8a6fb523712970c966eefc6b39ed2c5e74880354" - sha256 = "0slfb6w3b61xz04r32bi0a1bygc82rjzhqkxj2si2074wynqnr1c" - -["github.com/hashicorp/go-cleanhttp"] - sumVersion = "v0.5.1" - ["github.com/hashicorp/go-cleanhttp".fetch] - type = "git" - url = "https://github.com/hashicorp/go-cleanhttp" - rev = "eda1e5db218aad1db63ca4642c8906b26bcf2744" - sha256 = "07kx3fhryqmaw3czacmm11qwx63js2q8cfq967vphk7xg9q377kk" - -["github.com/hashicorp/go-immutable-radix"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-immutable-radix".fetch] - type = "git" - url = "https://github.com/hashicorp/go-immutable-radix" - rev = "27df80928bb34bb1b0d6d0e01b9e679902e7a6b5" - sha256 = "1v3nmsnk1s8bzpclrhirz7iq0g5xxbw9q5gvrg9ss6w9crs72qr6" - -["github.com/hashicorp/go-msgpack"] - sumVersion = "v0.5.3" - ["github.com/hashicorp/go-msgpack".fetch] - type = "git" - url = "https://github.com/hashicorp/go-msgpack" - rev = "be3a5be7ee2202386d02936a19ae4fbde1c77800" - sha256 = "00jv0ajqd58pkb2yyhlrjp0rv1mvb1ijx3yqjyikcmzvk9jb4h5m" - -["github.com/hashicorp/go-multierror"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-multierror".fetch] - type = "git" - url = "https://github.com/hashicorp/go-multierror" - rev = "886a7fbe3eb1c874d46f623bfa70af45f425b3d1" - sha256 = "00nyn8llqzbfm8aflr9kwsvpzi4kv8v45c141v88xskxp5xf6z49" - -["github.com/hashicorp/go-rootcerts"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-rootcerts".fetch] - type = "git" - url = "https://github.com/hashicorp/go-rootcerts" - rev = "63503fb4e1eca22f9ae0f90b49c5d5538a0e87eb" - sha256 = "0wply5zhj1rcybr932zbwm1i18q5wr7kgkhnz6bw6mk1n9yr8lfj" - -["github.com/hashicorp/go-sockaddr"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-sockaddr".fetch] - type = "git" - url = "https://github.com/hashicorp/go-sockaddr" - rev = "a6a0d2df398f7e0e9f6e43f589c8b51cec0eb6b0" - sha256 = "1yn1xq8ysn0lszmkygz3a9lgpswbz1p91jv7q8l20s4749a22xgi" - -["github.com/hashicorp/go-syslog"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-syslog".fetch] - type = "git" - url = "https://github.com/hashicorp/go-syslog" - rev = "8d1874e3e8d1862b74e0536851e218c4571066a5" - sha256 = "09vccqggz212cg0jir6vv708d6mx0f9w5bxrcdah3h6chgmal6v1" - -["github.com/hashicorp/go-uuid"] - sumVersion = "v1.0.1" - ["github.com/hashicorp/go-uuid".fetch] - type = "git" - url = "https://github.com/hashicorp/go-uuid" - rev = "4f571afc59f3043a65f8fe6bf46d887b10a01d43" - sha256 = "0jvb88m0rq41bwgirsadgw7mnayl27av3gd2vqa3xvxp3fy0hp5k" - -["github.com/hashicorp/go.net"] - sumVersion = "v0.0.1" - ["github.com/hashicorp/go.net".fetch] - type = "git" - url = "https://github.com/hashicorp/go.net" - rev = "afc3cb3a421746fc66dd55b09a270c750cf536ce" - sha256 = "06arwi95xp5rxyz7rndvhc3wlwg0jn9a5z6djf3yyg5h9zfab9i4" - -["github.com/hashicorp/golang-lru"] - sumVersion = "v0.5.1" - ["github.com/hashicorp/golang-lru".fetch] - type = "git" - url = "https://github.com/hashicorp/golang-lru" - rev = "7087cb70de9f7a8bc0a10c375cb0d2280a8edf9c" - sha256 = "13f870cvk161bzjj6x41l45r5x9i1z9r2ymwmvm7768kg08zznpy" - -["github.com/hashicorp/hcl"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/hcl".fetch] - type = "git" - url = "https://github.com/hashicorp/hcl" - rev = "8cb6e5b959231cc1119e43259c4a608f9c51a241" - sha256 = "0q6ml0qqs0yil76mpn4mdx4lp94id8vbv575qm60jzl1ijcl5i66" - -["github.com/hashicorp/logutils"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/logutils".fetch] - type = "git" - url = "https://github.com/hashicorp/logutils" - rev = "a335183dfd075f638afcc820c90591ca3c97eba6" - sha256 = "076wf4sh5p3f953ndqk1cc0x7jhmlqrxak9953rz79rcdw77rjvv" - -["github.com/hashicorp/mdns"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/mdns".fetch] - type = "git" - url = "https://github.com/hashicorp/mdns" - rev = "c31d3f8e4a0a5b46b118c2fd26d9da36467002c9" - sha256 = "0qr4l91hhi97s8a1isnrw3s4q8pjzacqiks870vnwh15v7ig3axd" - -["github.com/hashicorp/memberlist"] - sumVersion = "v0.1.3" - ["github.com/hashicorp/memberlist".fetch] - type = "git" - url = "https://github.com/hashicorp/memberlist" - rev = "a9da52f0668fc4321ec18e9e28dd8141621a808f" - sha256 = "0k1spq7dagvqj3baqw2dhxx1zxrb02y6m3apzr3a7gyirii890g3" - -["github.com/hashicorp/serf"] - sumVersion = "v0.8.2" - ["github.com/hashicorp/serf".fetch] - type = "git" - url = "https://github.com/hashicorp/serf" - rev = "b89a09ebd4b1b570e0076d5097272e67c10ac4f6" - sha256 = "0nrslghvdjhaczr2xp9mn8xgcx1dxl4jgpbk0l61ssmxahpx4iyc" - -["github.com/inconshreveable/mousetrap"] - sumVersion = "v1.0.0" - ["github.com/inconshreveable/mousetrap".fetch] - type = "git" - url = "https://github.com/inconshreveable/mousetrap" - rev = "76626ae9c91c4f2a10f34cad8ce83ea42c93bb75" - sha256 = "1mn0kg48xkd74brf48qf5hzp0bc6g8cf5a77w895rl3qnlpfw152" - -["github.com/jonboulle/clockwork"] - sumVersion = "v0.1.0" - ["github.com/jonboulle/clockwork".fetch] - type = "git" - url = "https://github.com/jonboulle/clockwork" - rev = "2eee05ed794112d45db504eb05aa693efd2b8b09" - sha256 = "1pqxhsdavbp1n5grgyx2j6ylvql2fzn2cvpsgkc8li69dil7sibl" - -["github.com/json-iterator/go"] - sumVersion = "v1.1.6" - ["github.com/json-iterator/go".fetch] - type = "git" - url = "https://github.com/json-iterator/go" - rev = "0ff49de124c6f76f8494e194af75bde0f1a49a29" - sha256 = "08caswxvdn7nvaqyj5kyny6ghpygandlbw9vxdj7l5vkp7q0s43r" - -["github.com/jstemmer/go-junit-report"] - sumVersion = "v0.0.0-20190106144839-af01ea7f8024" - ["github.com/jstemmer/go-junit-report".fetch] - type = "git" - url = "https://github.com/jstemmer/go-junit-report" - rev = "af01ea7f8024089b458d804d5cdf190f962a9a0c" - sha256 = "1lp3n94ris12hac02wi31f3whs88lcrzwgdg43a5j6cafg9p1d0s" - -["github.com/jtolds/gls"] - sumVersion = "v4.20.0+incompatible" - ["github.com/jtolds/gls".fetch] - type = "git" - url = "https://github.com/jtolds/gls" - rev = "b4936e06046bbecbb94cae9c18127ebe510a2cb9" - sha256 = "1k7xd2q2ysv2xsh373qs801v6f359240kx0vrl0ydh7731lngvk6" - -["github.com/julienschmidt/httprouter"] - sumVersion = "v1.2.0" - ["github.com/julienschmidt/httprouter".fetch] - type = "git" - url = "https://github.com/julienschmidt/httprouter" - rev = "348b672cd90d8190f8240323e372ecd1e66b59dc" - sha256 = "1k8bylc9s4vpvf5xhqh9h246dl1snxrzzz0614zz88cdh8yzs666" - -["github.com/kisielk/errcheck"] - sumVersion = "v1.1.0" - ["github.com/kisielk/errcheck".fetch] - type = "git" - url = "https://github.com/kisielk/errcheck" - rev = "55d8f507faff4d6eddd0c41a3e713e2567fca4e5" - sha256 = "19vd4rxmqbk5lpiav3pf7df3yjlz0l0dwx9mn0gjq5f998iyhy6y" - -["github.com/kisielk/gotool"] - sumVersion = "v1.0.0" - ["github.com/kisielk/gotool".fetch] - type = "git" - url = "https://github.com/kisielk/gotool" - rev = "80517062f582ea3340cd4baf70e86d539ae7d84d" - sha256 = "14af2pa0ssyp8bp2mvdw184s5wcysk6akil3wzxmr05wwy951iwn" - -["github.com/konsorten/go-windows-terminal-sequences"] - sumVersion = "v1.0.1" - ["github.com/konsorten/go-windows-terminal-sequences".fetch] - type = "git" - url = "https://github.com/konsorten/go-windows-terminal-sequences" - rev = "5c8c8bd35d3832f5d134ae1e1e375b69a4d25242" - sha256 = "1lchgf27n276vma6iyxa0v1xds68n2g8lih5lavqnx5x6q5pw2ip" - -["github.com/kr/logfmt"] - sumVersion = "v0.0.0-20140226030751-b84e30acd515" - ["github.com/kr/logfmt".fetch] - type = "git" - url = "https://github.com/kr/logfmt" - rev = "b84e30acd515aadc4b783ad4ff83aff3299bdfe0" - sha256 = "02ldzxgznrfdzvghfraslhgp19la1fczcbzh7wm2zdc6lmpd1qq9" - -["github.com/kr/pretty"] - sumVersion = "v0.1.0" - ["github.com/kr/pretty".fetch] - type = "git" - url = "https://github.com/kr/pretty" - rev = "73f6ac0b30a98e433b289500d779f50c1a6f0712" - sha256 = "18m4pwg2abd0j9cn5v3k2ksk9ig4vlwxmlw9rrglanziv9l967qp" - -["github.com/kr/pty"] - sumVersion = "v1.1.1" - ["github.com/kr/pty".fetch] - type = "git" - url = "https://github.com/kr/pty" - rev = "282ce0e5322c82529687d609ee670fac7c7d917c" - sha256 = "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6" - -["github.com/kr/text"] - sumVersion = "v0.1.0" - ["github.com/kr/text".fetch] - type = "git" - url = "https://github.com/kr/text" - rev = "e2ffdb16a802fe2bb95e2e35ff34f0e53aeef34f" - sha256 = "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1" - -["github.com/magiconair/properties"] - sumVersion = "v1.8.1" - ["github.com/magiconair/properties".fetch] - type = "git" - url = "https://github.com/magiconair/properties" - rev = "de8848e004dd33dc07a2947b3d76f618a7fc7ef1" - sha256 = "19zqw1x0w0crh8zc84yy82nkcc5yjz72gviaf2xjgfm5a8np7nyb" - -["github.com/mattn/go-colorable"] - sumVersion = "v0.0.9" - ["github.com/mattn/go-colorable".fetch] - type = "git" - url = "https://github.com/mattn/go-colorable" - rev = "167de6bfdfba052fa6b2d3664c8f5272e23c9072" - sha256 = "1nwjmsppsjicr7anq8na6md7b1z84l9ppnlr045hhxjvbkqwalvx" - -["github.com/mattn/go-isatty"] - sumVersion = "v0.0.3" - ["github.com/mattn/go-isatty".fetch] - type = "git" - url = "https://github.com/mattn/go-isatty" - rev = "0360b2af4f38e8d38c7fce2a9f4e702702d73a39" - sha256 = "06w45aqz2a6yrk25axbly2k5wmsccv8cspb94bfmz4izvw8h927n" - -["github.com/matttproud/golang_protobuf_extensions"] - sumVersion = "v1.0.1" - ["github.com/matttproud/golang_protobuf_extensions".fetch] - type = "git" - url = "https://github.com/matttproud/golang_protobuf_extensions" - rev = "c12348ce28de40eed0136aa2b644d0ee0650e56c" - sha256 = "1d0c1isd2lk9pnfq2nk0aih356j30k3h1gi2w0ixsivi5csl7jya" - -["github.com/miekg/dns"] - sumVersion = "v1.0.14" - ["github.com/miekg/dns".fetch] - type = "git" - url = "https://github.com/miekg/dns" - rev = "915ca3d5ffd945235828a097c917311a9d86ebb4" - sha256 = "1qgli6yp59bv6vc6zag84cwxmcxgnyxm1q2f301yyijk3wy5b2ak" - -["github.com/mitchellh/cli"] - sumVersion = "v1.0.0" - ["github.com/mitchellh/cli".fetch] - type = "git" - url = "https://github.com/mitchellh/cli" - rev = "3d22a244be8aa6fb16ac24af0e195c08b7d973aa" - sha256 = "1i9kmr7rcf10d2hji8h4247hmc0nbairv7a0q51393aw2h1bnwg2" - -["github.com/mitchellh/go-homedir"] - sumVersion = "v1.1.0" - ["github.com/mitchellh/go-homedir".fetch] - type = "git" - url = "https://github.com/mitchellh/go-homedir" - rev = "af06845cf3004701891bf4fdb884bfe4920b3727" - sha256 = "0ydzkipf28hwj2bfxqmwlww47khyk6d152xax4bnyh60f4lq3nx1" - -["github.com/mitchellh/go-testing-interface"] - sumVersion = "v1.0.0" - ["github.com/mitchellh/go-testing-interface".fetch] - type = "git" - url = "https://github.com/mitchellh/go-testing-interface" - rev = "6d0b8010fcc857872e42fc6c931227569016843c" - sha256 = "1dl2js8di858bawg7dadlf1qjpkl2g3apziihjyf5imri3znyfpw" - -["github.com/mitchellh/gox"] - sumVersion = "v0.4.0" - ["github.com/mitchellh/gox".fetch] - type = "git" - url = "https://github.com/mitchellh/gox" - rev = "c9740af9c6574448fd48eb30a71f964014c7a837" - sha256 = "1q4fdkw904mrmh1q5z8pfd3r0gcn5dm776kldqawddy93iiwnp8r" - -["github.com/mitchellh/iochan"] - sumVersion = "v1.0.0" - ["github.com/mitchellh/iochan".fetch] - type = "git" - url = "https://github.com/mitchellh/iochan" - rev = "b6e3aadd28864e14dae41ff5c7261455b1242d24" - sha256 = "058n9bbf536f2nw3pbs7pysrg9cqvgkb28z2zf5wjyrzrknyk53g" - -["github.com/mitchellh/mapstructure"] - sumVersion = "v1.1.2" - ["github.com/mitchellh/mapstructure".fetch] - type = "git" - url = "https://github.com/mitchellh/mapstructure" - rev = "3536a929edddb9a5b34bd6861dc4a9647cb459fe" - sha256 = "03bpv28jz9zhn4947saqwi328ydj7f6g6pf1m2d4m5zdh5jlfkrr" - -["github.com/modern-go/concurrent"] - sumVersion = "v0.0.0-20180306012644-bacd9c7ef1dd" - ["github.com/modern-go/concurrent".fetch] - type = "git" - url = "https://github.com/modern-go/concurrent" - rev = "bacd9c7ef1dd9b15be4a9909b8ac7a4e313eec94" - sha256 = "0s0fxccsyb8icjmiym5k7prcqx36hvgdwl588y0491gi18k5i4zs" - -["github.com/modern-go/reflect2"] - sumVersion = "v1.0.1" - ["github.com/modern-go/reflect2".fetch] - type = "git" - url = "https://github.com/modern-go/reflect2" - rev = "94122c33edd36123c84d5368cfb2b69df93a0ec8" - sha256 = "06a3sablw53n1dqqbr2f53jyksbxdmmk8axaas4yvnhyfi55k4lf" - -["github.com/mwitkow/go-conntrack"] - sumVersion = "v0.0.0-20161129095857-cc309e4a2223" - ["github.com/mwitkow/go-conntrack".fetch] - type = "git" - url = "https://github.com/mwitkow/go-conntrack" - rev = "cc309e4a22231782e8893f3c35ced0967807a33e" - sha256 = "0nbrnpk7bkmqg9mzwsxlm0y8m7s9qd9phr1q30qlx2qmdmz7c1mf" - -["github.com/oklog/ulid"] - sumVersion = "v1.3.1" - ["github.com/oklog/ulid".fetch] - type = "git" - url = "https://github.com/oklog/ulid" - rev = "02a8604050d8466dd915307496174adb9be4593a" - sha256 = "0hybwyid820n80axrk863k2py93hbqlq6hxhf84ppmz0qd0ys0gq" - -["github.com/pascaldekloe/goe"] - sumVersion = "v0.0.0-20180627143212-57f6aae5913c" - ["github.com/pascaldekloe/goe".fetch] - type = "git" - url = "https://github.com/pascaldekloe/goe" - rev = "57f6aae5913c64c9bcae5dbdffd33365b5a7f138" - sha256 = "1dqd3mfb4z2vmv6pg6fhgvfc53vhndk24wcl9lj1rz02n6m279fq" - -["github.com/pelletier/go-toml"] - sumVersion = "v1.2.0" - ["github.com/pelletier/go-toml".fetch] - type = "git" - url = "https://github.com/pelletier/go-toml" - rev = "c01d1270ff3e442a8a57cddc1c92dc1138598194" - sha256 = "1fjzpcjng60mc3a4b2ql5a00d5gah84wj740dabv9kq67mpg8fxy" - -["github.com/pkg/errors"] - sumVersion = "v0.8.1" - ["github.com/pkg/errors".fetch] - type = "git" - url = "https://github.com/pkg/errors" - rev = "ba968bfe8b2f7e042a574c888954fccecfa385b4" - sha256 = "0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1" - -["github.com/pmezard/go-difflib"] - sumVersion = "v1.0.0" - ["github.com/pmezard/go-difflib".fetch] - type = "git" - url = "https://github.com/pmezard/go-difflib" - rev = "792786c7400a136282c1664665ae0a8db921c6c2" - sha256 = "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw" - -["github.com/posener/complete"] - sumVersion = "v1.1.1" - ["github.com/posener/complete".fetch] - type = "git" - url = "https://github.com/posener/complete" - rev = "98eb9847f27ba2008d380a32c98be474dea55bdf" - sha256 = "1nbdiybjizbaxbf5q0xwbq0cjqw4bl6jggvsjzrpif0w86fcjda2" - -["github.com/prometheus/client_golang"] - sumVersion = "v0.9.3" - ["github.com/prometheus/client_golang".fetch] - type = "git" - url = "https://github.com/prometheus/client_golang" - rev = "50c4339db732beb2165735d2cde0bff78eb3c5a5" - sha256 = "1608rm1y2p3iv8k2x7wyc6hshvpbfkv2k77hy0x870syms1g3g1p" - -["github.com/prometheus/client_model"] - sumVersion = "v0.0.0-20190129233127-fd36f4220a90" - ["github.com/prometheus/client_model".fetch] - type = "git" - url = "https://github.com/prometheus/client_model" - rev = "fd36f4220a901265f90734c3183c5f0c91daa0b8" - sha256 = "1bs5d72k361llflgl94c22n0w53j30rsfh84smgk8mbjbcmjsaa5" - -["github.com/prometheus/common"] - sumVersion = "v0.4.0" - ["github.com/prometheus/common".fetch] - type = "git" - url = "https://github.com/prometheus/common" - rev = "1ba88736f028e37bc17328369e94a537ae9e0234" - sha256 = "00008pczafy982m59n1j31pnp41f4grbc2c40jccp52xg3m5klmr" - -["github.com/prometheus/procfs"] - sumVersion = "v0.0.0-20190507164030-5867b95ac084" - ["github.com/prometheus/procfs".fetch] - type = "git" - url = "https://github.com/prometheus/procfs" - rev = "5867b95ac084bbfee6ea16595c4e05ab009021da" - sha256 = "1rahdk62ajj4zpfb3mgzjqip773la9fb0m87m7s9a0b39l3fmzvr" - -["github.com/prometheus/tsdb"] - sumVersion = "v0.7.1" - ["github.com/prometheus/tsdb".fetch] - type = "git" - url = "https://github.com/prometheus/tsdb" - rev = "c20450564cc42983bf923c13f3fda42de709ac13" - sha256 = "1c1da8i5byvhh4fp3vqjfb65aaksjskn3ggb8wg9hcfzjrhgpz04" - -["github.com/rogpeppe/fastuuid"] - sumVersion = "v0.0.0-20150106093220-6724a57986af" - ["github.com/rogpeppe/fastuuid".fetch] - type = "git" - url = "https://github.com/rogpeppe/fastuuid" - rev = "6724a57986aff9bff1a1770e9347036def7c89f6" - sha256 = "12s65phfx6hxj4v0b5kj8akgrbf5mxpa101fyzw03h6hld1f70cz" - -["github.com/rogpeppe/go-internal"] - sumVersion = "v1.3.0" - ["github.com/rogpeppe/go-internal".fetch] - type = "git" - url = "https://github.com/rogpeppe/go-internal" - rev = "438578804ca6f31be148c27683afc419ce47c06e" - sha256 = "0mcdh1licgnnahwml9y2iq6xy5x9xmjw5frcnds2s3wpjyqrl216" - -["github.com/russross/blackfriday/v2"] - sumVersion = "v2.0.1" - ["github.com/russross/blackfriday/v2".fetch] - type = "git" - url = "https://github.com/russross/blackfriday" - rev = "d3b5b032dc8e8927d31a5071b56e14c89f045135" - sha256 = "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j" - -["github.com/ryanuber/columnize"] - sumVersion = "v0.0.0-20160712163229-9b3edd62028f" - ["github.com/ryanuber/columnize".fetch] - type = "git" - url = "https://github.com/ryanuber/columnize" - rev = "9b3edd62028f107d7cabb19353292afd29311a4e" - sha256 = "1ya1idkbb0a9fjlhkcnh5a9yvpwzwfmbyg7d56lpplwr9rqi1da4" - -["github.com/sean-/seed"] - sumVersion = "v0.0.0-20170313163322-e2103e2c3529" - ["github.com/sean-/seed".fetch] - type = "git" - url = "https://github.com/sean-/seed" - rev = "e2103e2c35297fb7e17febb81e49b312087a2372" - sha256 = "0glir8jxi1w7aga2jwdb63pp1h8q4whknili7xixsqzwyy716125" - -["github.com/shurcooL/sanitized_anchor_name"] - sumVersion = "v1.0.0" - ["github.com/shurcooL/sanitized_anchor_name".fetch] - type = "git" - url = "https://github.com/shurcooL/sanitized_anchor_name" - rev = "7bfe4c7ecddb3666a94b053b422cdd8f5aaa3615" - sha256 = "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f" - -["github.com/sirupsen/logrus"] - sumVersion = "v1.2.0" - ["github.com/sirupsen/logrus".fetch] - type = "git" - url = "https://github.com/sirupsen/logrus" - rev = "bcd833dfe83d3cebad139e4a29ed79cb2318bf95" - sha256 = "0r6334x2bls8ddznvzaldx4g88msjjns4mlks95rqrrg7h0ijigg" - -["github.com/smartystreets/assertions"] - sumVersion = "v0.0.0-20180927180507-b2de0cb4f26d" - ["github.com/smartystreets/assertions".fetch] - type = "git" - url = "https://github.com/smartystreets/assertions" - rev = "b2de0cb4f26d0705483a2f495d89896d0b808573" - sha256 = "1i7ldgavgl35c7gk25p7bvdr282ckng090zr4ch9mk1705akx09y" - -["github.com/smartystreets/goconvey"] - sumVersion = "v1.6.4" - ["github.com/smartystreets/goconvey".fetch] - type = "git" - url = "https://github.com/smartystreets/goconvey" - rev = "505e419363375c0dc132d3ac02632a4ee32199ca" - sha256 = "07zjxwszayal88z1j2bwnqrsa32vg8l4nivks5yfr9j8xfsw7n6m" - -["github.com/soheilhy/cmux"] - sumVersion = "v0.1.4" - ["github.com/soheilhy/cmux".fetch] - type = "git" - url = "https://github.com/soheilhy/cmux" - rev = "e09e9389d85d8492d313d73d1469c029e710623f" - sha256 = "1f736g68d9vwlyfb6g0fxkr0r875369xafk30cz8kaq5niaqwv0h" - -["github.com/spaolacci/murmur3"] - sumVersion = "v0.0.0-20180118202830-f09979ecbc72" - ["github.com/spaolacci/murmur3".fetch] - type = "git" - url = "https://github.com/spaolacci/murmur3" - rev = "f09979ecbc725b9e6d41a297405f65e7e8804acc" - sha256 = "1lv3zyz3jy2d76bhvvs8svygx66606iygdvwy5cwc0p5z8yghq25" - -["github.com/spf13/afero"] - sumVersion = "v1.1.2" - ["github.com/spf13/afero".fetch] - type = "git" - url = "https://github.com/spf13/afero" - rev = "d40851caa0d747393da1ffb28f7f9d8b4eeffebd" - sha256 = "0miv4faf5ihjfifb1zv6aia6f6ik7h1s4954kcb8n6ixzhx9ck6k" - -["github.com/spf13/cast"] - sumVersion = "v1.3.0" - ["github.com/spf13/cast".fetch] - type = "git" - url = "https://github.com/spf13/cast" - rev = "8c9545af88b134710ab1cd196795e7f2388358d7" - sha256 = "0xq1ffqj8y8h7dcnm0m9lfrh0ga7pssnn2c1dnr09chqbpn4bdc5" - -["github.com/spf13/cobra"] - sumVersion = "v1.1.3" - ["github.com/spf13/cobra".fetch] - type = "git" - url = "https://github.com/spf13/cobra" - rev = "8380ddd3132bdf8fd77731725b550c181dda0aa8" - sha256 = "1lnzjsjk37xbrya6w5r0l0a2wak0v0q10npy3k088i84n3gpmz83" - -["github.com/spf13/jwalterweatherman"] - sumVersion = "v1.0.0" - ["github.com/spf13/jwalterweatherman".fetch] - type = "git" - url = "https://github.com/spf13/jwalterweatherman" - rev = "4a4406e478ca629068e7768fc33f3f044173c0a6" - sha256 = "093fmmvavv84pv4q84hav7ph3fmrq87bvspjj899q0qsx37yvdr8" - -["github.com/spf13/pflag"] - sumVersion = "v1.0.5" - ["github.com/spf13/pflag".fetch] - type = "git" - url = "https://github.com/spf13/pflag" - rev = "2e9d26c8c37aae03e3f9d4e90b7116f5accb7cab" - sha256 = "0gpmacngd0gpslnbkzi263f5ishigzgh6pbdv9hp092rnjl4nd31" - -["github.com/spf13/viper"] - sumVersion = "v1.7.1" - ["github.com/spf13/viper".fetch] - type = "git" - url = "https://github.com/spf13/viper" - rev = "3826be313591f83193f048520482a7b3cf17d506" - sha256 = "1bci9wcqj8ghczwnj7wdlqzzbkm24fxpcl580vnrfc67yr5ppi01" - -["github.com/stretchr/objx"] - sumVersion = "v0.1.1" - ["github.com/stretchr/objx".fetch] - type = "git" - url = "https://github.com/stretchr/objx" - rev = "477a77ecc69700c7cdeb1fa9e129548e1c1c393c" - sha256 = "0iph0qmpyqg4kwv8jsx6a56a7hhqq8swrazv40ycxk9rzr0s8yls" - -["github.com/stretchr/testify"] - sumVersion = "v1.3.0" - ["github.com/stretchr/testify".fetch] - type = "git" - url = "https://github.com/stretchr/testify" - rev = "ffdc059bfe9ce6a4e144ba849dbedead332c6053" - sha256 = "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy" - -["github.com/subosito/gotenv"] - sumVersion = "v1.2.0" - ["github.com/subosito/gotenv".fetch] - type = "git" - url = "https://github.com/subosito/gotenv" - rev = "2ef7124db659d49edac6aa459693a15ae36c671a" - sha256 = "0mav91j7r4arjkpq5zcf9j74f6pww8ic53x43wy7kg3ibw31yjs5" - -["github.com/tmc/grpc-websocket-proxy"] - sumVersion = "v0.0.0-20190109142713-0ad062ec5ee5" - ["github.com/tmc/grpc-websocket-proxy".fetch] - type = "git" - url = "https://github.com/tmc/grpc-websocket-proxy" - rev = "0ad062ec5ee553a48f6dbd280b7a1b5638e8a113" - sha256 = "1anw4v9wspnw9xf2z5r9w0sszwjklyanl0l85wgg6nxak9gnrqp4" - -["github.com/xiang90/probing"] - sumVersion = "v0.0.0-20190116061207-43a291ad63a2" - ["github.com/xiang90/probing".fetch] - type = "git" - url = "https://github.com/xiang90/probing" - rev = "43a291ad63a214a207fefbf03c7d9d78b703162b" - sha256 = "1z22ms16j5j42775mf31isanwx2pwr1d8wqw8006dczjv36qnz5i" - -["go.etcd.io/bbolt"] - sumVersion = "v1.3.2" - ["go.etcd.io/bbolt".fetch] - type = "git" - url = "https://github.com/etcd-io/bbolt" - rev = "63597a96ec0ad9e6d43c3fc81e809909e0237461" - sha256 = "13d5l6p6c5wvkr6vn9hkhz9c593qifn7fgx0hg4d6jcvg1y0bnm2" - -["go.opencensus.io"] - sumVersion = "v0.22.0" - ["go.opencensus.io".fetch] - type = "git" - url = "https://github.com/census-instrumentation/opencensus-go" - rev = "9c377598961b706d1542bd2d84d538b5094d596e" - sha256 = "05jr8gkr2w34i5wwki4zhl5ch0qrgi7cdgag5iy5gpxplhbrvbg9" - -["go.uber.org/atomic"] - sumVersion = "v1.4.0" - ["go.uber.org/atomic".fetch] - type = "git" - url = "https://github.com/uber-go/atomic" - rev = "df976f2515e274675050de7b3f42545de80594fd" - sha256 = "0c6yzx15c20719xii3dm0vyjd8i9jx45m0wh5yp1zf29b0gbljcy" - -["go.uber.org/multierr"] - sumVersion = "v1.1.0" - ["go.uber.org/multierr".fetch] - type = "git" - url = "https://github.com/uber-go/multierr" - rev = "3c4937480c32f4c13a875a1829af76c98ca3d40a" - sha256 = "1slfc6syvw8cvr6rbrjsy6ja5w8gsx0f8aq8qm16rp2x5c2pj07w" - -["go.uber.org/zap"] - sumVersion = "v1.10.0" - ["go.uber.org/zap".fetch] - type = "git" - url = "https://github.com/uber-go/zap" - rev = "27376062155ad36be76b0f12cf1572a221d3a48c" - sha256 = "10hdzr1rghwbsl6bbd30779dx44fh9mg9pq8d2cgqlknqxxpvpvr" - -["golang.org/x/crypto"] - sumVersion = "v0.0.0-20190605123033-f99c8df09eb5" - ["golang.org/x/crypto".fetch] - type = "git" - url = "https://go.googlesource.com/crypto" - rev = "f99c8df09eb5bff426315721bfa5f16a99cad32c" - sha256 = "0jwi6c6366999mnpzwx3a2kr7hzvdx97qfwiphx0r7cy0mpf28hf" - -["golang.org/x/exp"] - sumVersion = "v0.0.0-20191030013958-a1ab85dbe136" - ["golang.org/x/exp".fetch] - type = "git" - url = "https://go.googlesource.com/exp" - rev = "a1ab85dbe136a36c66fbea07de5e3d62a0ce60ad" - sha256 = "0mmq4ggjpplqw61sch2bcjq0pws69rik5aicfvkg27cmw9h1937a" - -["golang.org/x/image"] - sumVersion = "v0.0.0-20190802002840-cff245a6509b" - ["golang.org/x/image".fetch] - type = "git" - url = "https://go.googlesource.com/image" - rev = "cff245a6509b8c4de022d0d5b9037c503c5989d6" - sha256 = "0hiznlkiaay30acwvvyq8g6bm32r7bc6gv47pygrcxqpapasbz84" - -["golang.org/x/lint"] - sumVersion = "v0.0.0-20190930215403-16217165b5de" - ["golang.org/x/lint".fetch] - type = "git" - url = "https://go.googlesource.com/lint" - rev = "16217165b5de779cb6a5e4fc81fa9c1166fda457" - sha256 = "0jhwmwc0vykcmf164na0pnadl8gv7184b6pf3xayknwmzdw6vd7h" - -["golang.org/x/mobile"] - sumVersion = "v0.0.0-20190719004257-d2bd2a29d028" - ["golang.org/x/mobile".fetch] - type = "git" - url = "https://go.googlesource.com/mobile" - rev = "d2bd2a29d028cb94031e5e81788b19b371d00eb8" - sha256 = "1nv6vvhnjr01nx9y06q46ww87dppdwpbqrlsfg1xf2587wxl8xiv" - -["golang.org/x/mod"] - sumVersion = "v0.1.0" - ["golang.org/x/mod".fetch] - type = "git" - url = "https://go.googlesource.com/mod" - rev = "d8296639b499981d50d327e4b5714c5734e925d6" - sha256 = "19d0f0mpddskm3n13sdk2g6vd7ri9bici1q3z1fq4kslzxrl5yj5" - -["golang.org/x/net"] - sumVersion = "v0.0.0-20190620200207-3b0461eec859" - ["golang.org/x/net".fetch] - type = "git" - url = "https://go.googlesource.com/net" - rev = "3b0461eec859c4b73bb64fdc8285971fd33e3938" - sha256 = "0l00c8l0a8xnv6qdpwfzxxsr58jggacgzdrwiprrfx2xqm37b6d5" - -["golang.org/x/oauth2"] - sumVersion = "v0.0.0-20190604053449-0f29369cfe45" - ["golang.org/x/oauth2".fetch] - type = "git" - url = "https://go.googlesource.com/oauth2" - rev = "0f29369cfe4552d0e4bcddc57cc75f4d7e672a33" - sha256 = "06jwpvx0x2gjn2y959drbcir5kd7vg87k0r1216abk6rrdzzrzi2" - -["golang.org/x/sync"] - sumVersion = "v0.0.0-20190423024810-112230192c58" - ["golang.org/x/sync".fetch] - type = "git" - url = "https://go.googlesource.com/sync" - rev = "112230192c580c3556b8cee6403af37a4fc5f28c" - sha256 = "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn" - -["golang.org/x/sys"] - sumVersion = "v0.0.0-20190624142023-c5567b49c5d0" - ["golang.org/x/sys".fetch] - type = "git" - url = "https://go.googlesource.com/sys" - rev = "c5567b49c5d04a5f83870795b8c0e2df43a8ce32" - sha256 = "0z6nh1ma3jmqa0wh5dk9183kbm0sdzja5wl3mbnmimjv88f3rmah" - -["golang.org/x/text"] - sumVersion = "v0.3.2" - ["golang.org/x/text".fetch] - type = "git" - url = "https://go.googlesource.com/text" - rev = "342b2e1fbaa52c93f31447ad2c6abc048c63e475" - sha256 = "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh" - -["golang.org/x/time"] - sumVersion = "v0.0.0-20190308202827-9d24e82272b4" - ["golang.org/x/time".fetch] - type = "git" - url = "https://go.googlesource.com/time" - rev = "9d24e82272b4f38b78bc8cff74fa936d31ccd8ef" - sha256 = "1f5nkr4vys2vbd8wrwyiq2f5wcaahhpxmia85d1gshcbqjqf8dkb" - -["golang.org/x/tools"] - sumVersion = "v0.0.0-20191112195655-aa38f8e97acc" - ["golang.org/x/tools".fetch] - type = "git" - url = "https://go.googlesource.com/tools" - rev = "aa38f8e97acca3a446000a524f892ba64f088b80" - sha256 = "1zk57mnsnf9am07ry91gy9fd509g53drnn2nm44b2114g554dq6m" - -["golang.org/x/xerrors"] - sumVersion = "v0.0.0-20190717185122-a985d3407aa7" - ["golang.org/x/xerrors".fetch] - type = "git" - url = "https://go.googlesource.com/xerrors" - rev = "a985d3407aa71f30cf86696ee0a2f409709f22e1" - sha256 = "00wzr5w8aadipgc3rkk8f11i41znskfj9ix5nhhaxyg7isrslgcj" - -["google.golang.org/api"] - sumVersion = "v0.13.0" - ["google.golang.org/api".fetch] - type = "git" - url = "https://github.com/googleapis/google-api-go-client" - rev = "4f42dad4690a01d7f6fa461106c63889ff1be027" - sha256 = "1mw1k1j5l0ycrf3pwgzj9dzc8y9898lmj94s4ivcn7vc8ap8xppg" - -["google.golang.org/appengine"] - sumVersion = "v1.6.1" - ["google.golang.org/appengine".fetch] - type = "git" - url = "https://github.com/golang/appengine" - rev = "b2f4a3cf3c67576a2ee09e1fe62656a5086ce880" - sha256 = "0zxlvwzxwkwz4bs4h9zc9979dx76y4xf9ks4d22bclg47dv59yry" - -["google.golang.org/genproto"] - sumVersion = "v0.0.0-20191108220845-16a3f7862a1a" - ["google.golang.org/genproto".fetch] - type = "git" - url = "https://github.com/googleapis/go-genproto" - rev = "16a3f7862a1a494c52b23987ef8a993fd3f9a85e" - sha256 = "1g6kwz4f4sj11zrd7vip81ld5l5p7j7w286sxm0ahv7x3h40358c" - -["google.golang.org/grpc"] - sumVersion = "v1.21.1" - ["google.golang.org/grpc".fetch] - type = "git" - url = "https://github.com/grpc/grpc-go" - rev = "501c41df7f472c740d0674ff27122f3f48c80ce7" - sha256 = "0hla9rjvyi6wjak4cw39ic8jkdcd0lsymhrz9sa52bfybxsczf38" - -["gopkg.in/alecthomas/kingpin.v2"] - sumVersion = "v2.2.6" - ["gopkg.in/alecthomas/kingpin.v2".fetch] - type = "git" - url = "https://gopkg.in/alecthomas/kingpin.v2" - rev = "947dcec5ba9c011838740e680966fd7087a71d0d" - sha256 = "0mndnv3hdngr3bxp7yxfd47cas4prv98sqw534mx7vp38gd88n5r" - -["gopkg.in/check.v1"] - sumVersion = "v1.0.0-20180628173108-788fd7840127" - ["gopkg.in/check.v1".fetch] - type = "git" - url = "https://gopkg.in/check.v1" - rev = "788fd78401277ebd861206a03c884797c6ec5541" - sha256 = "0v3bim0j375z81zrpr5qv42knqs0y2qv2vkjiqi5axvb78slki1a" - -["gopkg.in/errgo.v2"] - sumVersion = "v2.1.0" - ["gopkg.in/errgo.v2".fetch] - type = "git" - url = "https://gopkg.in/errgo.v2" - rev = "f768c5ab0476c50e978b039312180859c10fe8c0" - sha256 = "065mbihiy7q67wnql0bzl9y1kkvck5ivra68254zbih52jxwrgr2" - -["gopkg.in/ini.v1"] - sumVersion = "v1.51.0" - ["gopkg.in/ini.v1".fetch] - type = "git" - url = "https://gopkg.in/ini.v1" - rev = "87e589f4917038ae250cff2446db7573f47e97ca" - sha256 = "1wccpzmf4kmz6hl6pd3mjwlzr9p6m6j9vc9302svzcwbaidgn3l1" - -["gopkg.in/resty.v1"] - sumVersion = "v1.12.0" - ["gopkg.in/resty.v1".fetch] - type = "git" - url = "https://gopkg.in/resty.v1" - rev = "fa5875c0caa5c260ab78acec5a244215a730247f" - sha256 = "062mn735rqzhha5ag07z4gz08hxzrfm2yx067jfmaaxmb6797lmp" - -["gopkg.in/yaml.v2"] - sumVersion = "v2.4.0" - ["gopkg.in/yaml.v2".fetch] - type = "git" - url = "https://gopkg.in/yaml.v2" - rev = "7649d4548cb53a614db133b2a8ac1f31859dda8c" - sha256 = "1pbmrpj7gcws34g8vwna4i2nhm9p6235piww36436xhyaa10cldr" - -["honnef.co/go/tools"] - sumVersion = "v0.0.1-2019.2.3" - ["honnef.co/go/tools".fetch] - type = "git" - url = "https://github.com/dominikh/go-tools" - rev = "afd67930eec2a9ed3e9b19f684d17a062285f16a" - sha256 = "1rwwahmbs4dwxncwjj56likir1kps9937vm2id3rygxzzla40zal" - -["rsc.io/binaryregexp"] - sumVersion = "v0.2.0" - ["rsc.io/binaryregexp".fetch] - type = "git" - url = "https://github.com/rsc/binaryregexp" - rev = "857b9542aaa89cfa42a1477b43fa1f24192fe921" - sha256 = "1kar0myy85waw418zslviwx8846zj0m9cmqkxjx0fvgjdi70nc4b" diff --git a/resources/stoml/last-synced.narHash b/resources/stoml/last-synced.narHash deleted file mode 100644 index 5b0eae5a..00000000 --- a/resources/stoml/last-synced.narHash +++ /dev/null @@ -1 +0,0 @@ -sha256-PvKkOjjWkmK90PzKcOBq0pUWLjHLjfYs9PRqqzAR7/8= diff --git a/resources/thor/default.nix b/resources/thor/default.nix deleted file mode 100644 index c82a27ff..00000000 --- a/resources/thor/default.nix +++ /dev/null @@ -1,8 +0,0 @@ -{ pkgs, thor-src }: -pkgs.buildGoApplication { - name = "thor"; - src = "${thor-src}"; - modules = ./go-modules.toml; - doCheck = false; -} - diff --git a/resources/thor/go-modules.toml b/resources/thor/go-modules.toml deleted file mode 100644 index c8485200..00000000 --- a/resources/thor/go-modules.toml +++ /dev/null @@ -1,4654 +0,0 @@ -["cloud.google.com/go"] - sumVersion = "v0.51.0" - ["cloud.google.com/go".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "b4cdc8d6eb508c4e74df26094d1adb678c87f818" - sha256 = "02iixs99j192i9gmslpmvwi63sznxv2a3wrcnpgd7rksban323sm" - -["cloud.google.com/go/bigquery"] - sumVersion = "v1.3.0" - relPath = "bigquery" - ["cloud.google.com/go/bigquery".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "99497d78e63d02c2c29f908565d4c8f0787f6f05" - sha256 = "132x27i391f6bzc3xr3f3vnm130hgx1qril3h6mxnrqnpxjgajll" - -["cloud.google.com/go/bigtable"] - sumVersion = "v1.2.0" - relPath = "bigtable" - ["cloud.google.com/go/bigtable".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "4e7fb24f2973a4a8d59ff13c95859759b6506f95" - sha256 = "1nzy6y4cwb8vrbfbmwijk73i242p6ip58a1s140p57wh8qq000v1" - -["cloud.google.com/go/datastore"] - sumVersion = "v1.0.0" - relPath = "datastore" - ["cloud.google.com/go/datastore".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "c5d562bdb35850f11d6a275d85ab8535265e9821" - sha256 = "0d7ikvbyasifhbxgc2gw97zqc27ihi9a22wdywh5gw2cwjwpw5gi" - -["cloud.google.com/go/firestore"] - sumVersion = "v1.1.0" - relPath = "firestore" - ["cloud.google.com/go/firestore".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "20091f47d3c522ea545f358dd9ac1cdb326bba6f" - sha256 = "0slvm0vx5f8l2vs4k9k8jv8qnz6z9dzq25xmrhza82cj9j51ghvb" - -["cloud.google.com/go/pubsub"] - sumVersion = "v1.1.0" - relPath = "pubsub" - ["cloud.google.com/go/pubsub".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "45c4de5711804a589a0e223172044c1157386069" - sha256 = "10f9qsiipmc7lavbpib8dl6v5qlxpafm5s1z5930kvv117flb3ig" - -["cloud.google.com/go/storage"] - sumVersion = "v1.5.0" - relPath = "storage" - ["cloud.google.com/go/storage".fetch] - type = "git" - url = "https://github.com/googleapis/google-cloud-go" - rev = "b9ee5c702d0ffe94a091bf06a2267242aa0ecae6" - sha256 = "1snzjf51fl3zlmxgf3l9ycm3w80bq2vr254j4gl4lqxggxm2cq8s" - -["collectd.org"] - sumVersion = "v0.3.0" - ["collectd.org".fetch] - type = "git" - url = "https://github.com/collectd/go-collectd" - rev = "2ce144541b8903101fb8f1483cc0497a68798122" - sha256 = "0rr9rnc777jk27a7yxhdb7vgkj493158a8k6q44x51s30dkp78x3" - -["dmitri.shuralyov.com/gpu/mtl"] - sumVersion = "v0.0.0-20190408044501-666a987793e9" - ["dmitri.shuralyov.com/gpu/mtl".fetch] - type = "git" - url = "https://dmitri.shuralyov.com/gpu/mtl" - rev = "666a987793e9432fbb48592aa2f3bf3463685dfa" - sha256 = "1isd03hgiwcf2ld1rlp0plrnfz7r4i7c5q4kb6hkcd22axnmrv0z" - -["github.com/99designs/keyring"] - sumVersion = "v1.1.6" - ["github.com/99designs/keyring".fetch] - type = "git" - url = "https://github.com/99designs/keyring" - rev = "68286ee5140ad1c5cce93fcc054e6cc90015b0ea" - sha256 = "08rcdqpxaa9n348q10fw40q4gxpjajkyrighykk71i7mxzwkcgwn" - -["github.com/AndreasBriese/bbloom"] - sumVersion = "v0.0.0-20190306092124-e2d15f34fcf9" - ["github.com/AndreasBriese/bbloom".fetch] - type = "git" - url = "https://github.com/AndreasBriese/bbloom" - rev = "e2d15f34fcf99d5dbb871c820ec73f710fca9815" - sha256 = "05kkrsmpragy69bj6s80pxlm3pbwxrkkx7wgk0xigs6y2n6ylpds" - -["github.com/Azure/azure-pipeline-go"] - sumVersion = "v0.2.2" - ["github.com/Azure/azure-pipeline-go".fetch] - type = "git" - url = "https://github.com/Azure/azure-pipeline-go" - rev = "232aee85e8e3a6223a11c0943f7df2ae0fac00e4" - sha256 = "1agn2nzmm1dkwggm4w7h4bnrav4n5jrl0vqbqy2s49vqlr8zirn6" - -["github.com/Azure/azure-storage-blob-go"] - sumVersion = "v0.7.0" - ["github.com/Azure/azure-storage-blob-go".fetch] - type = "git" - url = "https://github.com/Azure/azure-storage-blob-go" - rev = "3efca72bd11c050222deab57e25ea90df03b9692" - sha256 = "03lxg2v7gjl49cli818g9rnkz6818zvwhw8zm8z16y6cjmj8qmzv" - -["github.com/Azure/go-autorest/autorest"] - sumVersion = "v0.9.0" - relPath = "autorest" - ["github.com/Azure/go-autorest/autorest".fetch] - type = "git" - url = "https://github.com/Azure/go-autorest" - rev = "85d9c035382e5537c3c76e84ca5b82c5f09825e9" - sha256 = "01fg6x3a6as2kh0km8kvjzjalq7xiqa17hnsdwawzlpnfpqgslvq" - -["github.com/Azure/go-autorest/autorest/adal"] - sumVersion = "v0.8.0" - relPath = "autorest/adal" - ["github.com/Azure/go-autorest/autorest/adal".fetch] - type = "git" - url = "https://github.com/Azure/go-autorest" - rev = "740293c019d8314ce3378d456b4327fa646297e6" - sha256 = "1ga12qs31v95010jdn8raw0mf2kvlxhfl8z856y7dn2x3fviv7r4" - -["github.com/Azure/go-autorest/autorest/date"] - sumVersion = "v0.2.0" - relPath = "autorest/date" - ["github.com/Azure/go-autorest/autorest/date".fetch] - type = "git" - url = "https://github.com/Azure/go-autorest" - rev = "5bd9621f41a06b08038be5c0522971a35316d5ef" - sha256 = "0fifmqljld72v0g545qqljmynhjgg8jm0ying35wzni0m7cg6n4y" - -["github.com/Azure/go-autorest/autorest/mocks"] - sumVersion = "v0.3.0" - relPath = "autorest/mocks" - ["github.com/Azure/go-autorest/autorest/mocks".fetch] - type = "git" - url = "https://github.com/Azure/go-autorest" - rev = "5bd9621f41a06b08038be5c0522971a35316d5ef" - sha256 = "0fifmqljld72v0g545qqljmynhjgg8jm0ying35wzni0m7cg6n4y" - -["github.com/Azure/go-autorest/logger"] - sumVersion = "v0.1.0" - relPath = "logger" - ["github.com/Azure/go-autorest/logger".fetch] - type = "git" - url = "https://github.com/Azure/go-autorest" - rev = "4bb4e3c99dd98a53e3d65a6f28aa05e2d435cb24" - sha256 = "1w94wxjjkiv8m44rcdm1af9h0ap2r8kpp9198cxpxj8d5xxkaxpz" - -["github.com/Azure/go-autorest/tracing"] - sumVersion = "v0.5.0" - relPath = "tracing" - ["github.com/Azure/go-autorest/tracing".fetch] - type = "git" - url = "https://github.com/Azure/go-autorest" - rev = "5e7a399d8bbf4953ab0c8e3167d7fd535fd74ce1" - sha256 = "0n482cjr2pk6ql6awcnn6llrnygjzakihbjaahgmylf3znwil7jp" - -["github.com/BurntSushi/toml"] - sumVersion = "v0.3.1" - ["github.com/BurntSushi/toml".fetch] - type = "git" - url = "https://github.com/BurntSushi/toml" - rev = "3012a1dbe2e4bd1391d42b32f0577cb7bbc7f005" - sha256 = "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6" - -["github.com/BurntSushi/xgb"] - sumVersion = "v0.0.0-20160522181843-27f122750802" - ["github.com/BurntSushi/xgb".fetch] - type = "git" - url = "https://github.com/BurntSushi/xgb" - rev = "27f122750802c950b2c869a5b63dafcf590ced95" - sha256 = "18lp2x8f5bljvlz0r7xn744f0c9rywjsb9ifiszqqdcpwhsa0kvj" - -["github.com/ChainSafe/go-schnorrkel"] - sumVersion = "v0.0.0-20200405005733-88cbf1b4c40d" - ["github.com/ChainSafe/go-schnorrkel".fetch] - type = "git" - url = "https://github.com/ChainSafe/go-schnorrkel" - rev = "88cbf1b4c40de64a5ea4863476c6c8ae5433c594" - sha256 = "09ncxdzy4scwmgj96lq83a40bb29nkws1y9x0nim86l9x5jmgi4b" - -["github.com/DATA-DOG/go-sqlmock"] - sumVersion = "v1.3.3" - ["github.com/DATA-DOG/go-sqlmock".fetch] - type = "git" - url = "https://github.com/DATA-DOG/go-sqlmock" - rev = "3f9954f6f6697845b082ca57995849ddf614f450" - sha256 = "1xrly2vmy1mgj9dbkmivhh8gvq6v9f9xy2yp2dw54i1895zzs928" - -["github.com/DataDog/datadog-go"] - sumVersion = "v3.2.0+incompatible" - ["github.com/DataDog/datadog-go".fetch] - type = "git" - url = "https://github.com/DataDog/datadog-go" - rev = "8bfdc335936a79b55b3e2c1080930bc5a3eb57f2" - sha256 = "1m8anll166rwcprjyv3bb0l450p35m0gzn6fs7bcd3ck2s527k7x" - -["github.com/DataDog/zstd"] - sumVersion = "v1.4.5" - ["github.com/DataDog/zstd".fetch] - type = "git" - url = "https://github.com/DataDog/zstd" - rev = "0e71ac6221c995a831bb393da70730c3d3a07091" - sha256 = "0xhgh7nzxq3lzba7w7v3w5mb4nb799v5xh5ylml0hk21ricm7g9s" - -["github.com/Knetic/govaluate"] - sumVersion = "v3.0.1-0.20171022003610-9aa49832a739+incompatible" - ["github.com/Knetic/govaluate".fetch] - type = "git" - url = "https://github.com/Knetic/govaluate" - rev = "9aa49832a739dcd78a5542ff189fb82c3e423116" - sha256 = "12klijhq4fckzbhv0cwygbazj6lvhmdqksha9y6jgfmwzv51kwv5" - -["github.com/Kubuxu/go-os-helper"] - sumVersion = "v0.0.1" - ["github.com/Kubuxu/go-os-helper".fetch] - type = "git" - url = "https://github.com/Kubuxu/go-os-helper" - rev = "3d3fc2fb493d8d889dddd5a4524283ac2faa4732" - sha256 = "08v88ylhvv65hdqr2pp94qf2ncppzib5sx66fv432vhgkz00ddyr" - -["github.com/OneOfOne/xxhash"] - sumVersion = "v1.2.2" - ["github.com/OneOfOne/xxhash".fetch] - type = "git" - url = "https://github.com/OneOfOne/xxhash" - rev = "6def279d2ce6c81a79dd1c1be580f03bb216fb8a" - sha256 = "1mjfhrwhvxa48rycjnqpqzm521i38h1hdyz6pdwmhd7xb8j6gwi6" - -["github.com/OpenBazaar/jsonpb"] - sumVersion = "v0.0.0-20171123000858-37d32ddf4eef" - ["github.com/OpenBazaar/jsonpb".fetch] - type = "git" - url = "https://github.com/OpenBazaar/jsonpb" - rev = "37d32ddf4eefaab6c19a01c99f4e00df9b1be48f" - sha256 = "0ha2i8ll60mdf5c74m74qc97prz8kc02lmklq6fiicisj3g9ci3y" - -["github.com/Shopify/sarama"] - sumVersion = "v1.19.0" - ["github.com/Shopify/sarama".fetch] - type = "git" - url = "https://github.com/Shopify/sarama" - rev = "ec843464b50d4c8b56403ec9d589cf41ea30e722" - sha256 = "0q1z3pvcd011yprwzws2s293v4cjvsszhai6vnfrahjcbsz79q0z" - -["github.com/Shopify/toxiproxy"] - sumVersion = "v2.1.4+incompatible" - ["github.com/Shopify/toxiproxy".fetch] - type = "git" - url = "https://github.com/Shopify/toxiproxy" - rev = "49b4ea27da29ae83ad3bfe7f7f090d18cbee1dc3" - sha256 = "07yhsvscdv1qjfc2fyyh9qsrrdwrrw04wadk5gaq4qddcway7vig" - -["github.com/StackExchange/wmi"] - sumVersion = "v0.0.0-20180116203802-5d049714c4a6" - ["github.com/StackExchange/wmi".fetch] - type = "git" - url = "https://github.com/StackExchange/wmi" - rev = "5d049714c4a64225c3c79a7cf7d02f7fb5b96338" - sha256 = "1slw6v1fl8i0hz4db9lph55pbhnrxhqyndq6vm27dgvpj22k29fk" - -["github.com/VictoriaMetrics/fastcache"] - sumVersion = "v1.6.0" - ["github.com/VictoriaMetrics/fastcache".fetch] - type = "git" - url = "https://github.com/VictoriaMetrics/fastcache" - rev = "5ffb40c1da4c7e2b8483e73629e66f4f1f94bff2" - sha256 = "1ivx700ijnkyjbgw4rq4446d4dnb4sg7sh569rsvnm5cm0fkvyhz" - -["github.com/VividCortex/gohistogram"] - sumVersion = "v1.0.0" - ["github.com/VividCortex/gohistogram".fetch] - type = "git" - url = "https://github.com/VividCortex/gohistogram" - rev = "51564d9861991fb0ad0f531c99ef602d0f9866e6" - sha256 = "1ykpvrkri3mzc0z77kdva93ylh0bqg7jq3i024r3iv0i6bwx3rnf" - -["github.com/Workiva/go-datastructures"] - sumVersion = "v1.0.52" - ["github.com/Workiva/go-datastructures".fetch] - type = "git" - url = "https://github.com/Workiva/go-datastructures" - rev = "0819bcaf26091e7c33585441f8961854c2400faa" - sha256 = "0qsj9r3md4n9nxmlvg6cgysivm4ay905ivbk5vi5csnykwnamqmk" - -["github.com/aead/siphash"] - sumVersion = "v1.0.1" - ["github.com/aead/siphash".fetch] - type = "git" - url = "https://github.com/aead/siphash" - rev = "83563a290f60225eb120d724600b9690c3fb536f" - sha256 = "01kd1z82sc4nh3nj9c25aryyp396s7jrqc2kz9d7qq1vy2hdbznc" - -["github.com/afex/hystrix-go"] - sumVersion = "v0.0.0-20180502004556-fa1af6a1f4f5" - ["github.com/afex/hystrix-go".fetch] - type = "git" - url = "https://github.com/afex/hystrix-go" - rev = "fa1af6a1f4f56e0e50d427fe901cd604d8c6fb8a" - sha256 = "0zlj0330j816flvwvis4d4vv1gigpxlghph7awbc9jb7ggf2qssn" - -["github.com/agl/ed25519"] - sumVersion = "v0.0.0-20200305024217-f36fc4b53d43" - vendorPath = "github.com/binance-chain/edwards25519" - ["github.com/agl/ed25519".fetch] - type = "git" - url = "https://github.com/binance-chain/edwards25519" - rev = "f36fc4b53d436605139b063f425cea010e9954be" - sha256 = "18q8vva7a2kznfwrx04n4b3cs4bwh6palqck7rvp9na38vjxy9zh" - -["github.com/ajstarks/svgo"] - sumVersion = "v0.0.0-20180226025133-644b8db467af" - ["github.com/ajstarks/svgo".fetch] - type = "git" - url = "https://github.com/ajstarks/svgo" - rev = "644b8db467afccf19a0692a3e31a1868e4287ab8" - sha256 = "1m56v06gpdzfmw0hgjri487gdlc5w40s3pz1l7lp8hbw2l6lbjhk" - -["github.com/alecthomas/template"] - sumVersion = "v0.0.0-20190718012654-fb15b899a751" - ["github.com/alecthomas/template".fetch] - type = "git" - url = "https://github.com/alecthomas/template" - rev = "fb15b899a75114aa79cc930e33c46b577cc664b1" - sha256 = "1vlasv4dgycydh5wx6jdcvz40zdv90zz1h7836z7lhsi2ymvii26" - -["github.com/alecthomas/units"] - sumVersion = "v0.0.0-20190924025748-f65c72e2690d" - ["github.com/alecthomas/units".fetch] - type = "git" - url = "https://github.com/alecthomas/units" - rev = "f65c72e2690dc4b403c8bd637baf4611cd4c069b" - sha256 = "04jyqm7m3m01ppfy1f9xk4qvrwvs78q9zml6llyf2b3v5k6b2bbc" - -["github.com/allegro/bigcache"] - sumVersion = "v1.2.1-0.20190218064605-e24eb225f156" - ["github.com/allegro/bigcache".fetch] - type = "git" - url = "https://github.com/allegro/bigcache" - rev = "e24eb225f15679bbe54f91bfa7da3b00e59b9768" - sha256 = "1ha36q4km0i1klhpxywkfc8w77ldddl7nvqg0wl0ixy17j20na7m" - -["github.com/andreyvit/diff"] - sumVersion = "v0.0.0-20170406064948-c7f18ee00883" - ["github.com/andreyvit/diff".fetch] - type = "git" - url = "https://github.com/andreyvit/diff" - rev = "c7f18ee00883bfd3b00e0a2bf7607827e0148ad4" - sha256 = "1s4qjkxig5yqahpzfl4xqh4kzi9mymdpkzq6kj3f4dr5dl3hlynr" - -["github.com/antihax/optional"] - sumVersion = "v1.0.0" - ["github.com/antihax/optional".fetch] - type = "git" - url = "https://github.com/antihax/optional" - rev = "c3f0ba9c1a592b971d66b2787679af55b5c58f21" - sha256 = "1ix08vl49qxr58rc6201cl97g1yznhhkwvqldslawind99js4rj0" - -["github.com/apache/arrow/go/arrow"] - sumVersion = "v0.0.0-20191024131854-af6fa24be0db" - relPath = "go/arrow" - ["github.com/apache/arrow/go/arrow".fetch] - type = "git" - url = "https://github.com/apache/arrow" - rev = "af6fa24be0dbbc021e0844c63d1c0b89fb23a95c" - sha256 = "1gy68sg7jz3m07hmq8s1n8qs2yvgyb33qxw0zhivj9zyflxha0rd" - -["github.com/apache/thrift"] - sumVersion = "v0.13.0" - ["github.com/apache/thrift".fetch] - type = "git" - url = "https://github.com/apache/thrift" - rev = "cecee50308fc7e6f77f55b3fd906c1c6c471fa2f" - sha256 = "17ckl7p7s3ga33yrjisilsimp80ansqxl54wvpkv0j7vx2zvc13y" - -["github.com/armon/circbuf"] - sumVersion = "v0.0.0-20150827004946-bbbad097214e" - ["github.com/armon/circbuf".fetch] - type = "git" - url = "https://github.com/armon/circbuf" - rev = "bbbad097214e2918d8543d5201d12bfd7bca254d" - sha256 = "1idpr0lzb2px2p3wgfq2276yl7jpaz43df6n91kf790404s4zmk3" - -["github.com/armon/consul-api"] - sumVersion = "v0.0.0-20180202201655-eb2c6b5be1b6" - ["github.com/armon/consul-api".fetch] - type = "git" - url = "https://github.com/armon/consul-api" - rev = "eb2c6b5be1b66bab83016e0b05f01b8d5496ffbd" - sha256 = "1j6fdr1sg36qy4n4xjl7brq739fpm5npq98cmvklzjc9qrx98nk9" - -["github.com/armon/go-metrics"] - sumVersion = "v0.3.9" - ["github.com/armon/go-metrics".fetch] - type = "git" - url = "https://github.com/armon/go-metrics" - rev = "f792dbc8f4b651df89dc7098fce61ca56a0a2bee" - sha256 = "0sbnzw7sdjcf2l6nsxynpv99m6sza1zyakl82by37sqhn60hj9is" - -["github.com/armon/go-radix"] - sumVersion = "v0.0.0-20180808171621-7fddfc383310" - ["github.com/armon/go-radix".fetch] - type = "git" - url = "https://github.com/armon/go-radix" - rev = "7fddfc383310abc091d79a27f116d30cf0424032" - sha256 = "0y8chspn14n9xpsfb9gxnnf819rfpriaz64v81p7873a42kkhxb4" - -["github.com/aryann/difflib"] - sumVersion = "v0.0.0-20170710044230-e206f873d14a" - ["github.com/aryann/difflib".fetch] - type = "git" - url = "https://github.com/aryann/difflib" - rev = "e206f873d14a916d3d26c40ab667bca123f365a3" - sha256 = "00zb9sx6l6b2zq614x45zlyshl20zjhwfj8r5krw4f9y0mx3n2dm" - -["github.com/aws/aws-lambda-go"] - sumVersion = "v1.13.3" - ["github.com/aws/aws-lambda-go".fetch] - type = "git" - url = "https://github.com/aws/aws-lambda-go" - rev = "b5b7267d297de263cc5b61f8c37543daa9c95ffd" - sha256 = "049zq6gr9xdjjsxd3yimawqlh2ibfkj2434cnjm4x93ph62hppm9" - -["github.com/aws/aws-sdk-go"] - sumVersion = "v1.27.0" - ["github.com/aws/aws-sdk-go".fetch] - type = "git" - url = "https://github.com/aws/aws-sdk-go" - rev = "a1e6946e8014a793d989e64ef5566315010ce898" - sha256 = "1b2lkbvlbgkas1l7cilnanr4mc0z2l28ii5bpsrcp3azn6wdjfpx" - -["github.com/aws/aws-sdk-go-v2"] - sumVersion = "v1.2.0" - ["github.com/aws/aws-sdk-go-v2".fetch] - type = "git" - url = "https://github.com/aws/aws-sdk-go-v2" - rev = "be1c89938486820ef47f075e7db95d4ad7411ccd" - sha256 = "1zaczqlqhi97qclgnvxblgqky4v2blvvpa4p4z4kq5ymqklzs9i2" - -["github.com/aws/aws-sdk-go-v2/config"] - sumVersion = "v1.1.1" - relPath = "config" - ["github.com/aws/aws-sdk-go-v2/config".fetch] - type = "git" - url = "https://github.com/aws/aws-sdk-go-v2" - rev = "be1c89938486820ef47f075e7db95d4ad7411ccd" - sha256 = "1zaczqlqhi97qclgnvxblgqky4v2blvvpa4p4z4kq5ymqklzs9i2" - -["github.com/aws/aws-sdk-go-v2/credentials"] - sumVersion = "v1.1.1" - relPath = "credentials" - ["github.com/aws/aws-sdk-go-v2/credentials".fetch] - type = "git" - url = "https://github.com/aws/aws-sdk-go-v2" - rev = "be1c89938486820ef47f075e7db95d4ad7411ccd" - sha256 = "1zaczqlqhi97qclgnvxblgqky4v2blvvpa4p4z4kq5ymqklzs9i2" - -["github.com/aws/aws-sdk-go-v2/feature/ec2/imds"] - sumVersion = "v1.0.2" - relPath = "feature/ec2/imds" - ["github.com/aws/aws-sdk-go-v2/feature/ec2/imds".fetch] - type = "git" - url = "https://github.com/aws/aws-sdk-go-v2" - rev = "be1c89938486820ef47f075e7db95d4ad7411ccd" - sha256 = "1zaczqlqhi97qclgnvxblgqky4v2blvvpa4p4z4kq5ymqklzs9i2" - -["github.com/aws/aws-sdk-go-v2/service/internal/presigned-url"] - sumVersion = "v1.0.2" - relPath = "service/internal/presigned-url" - ["github.com/aws/aws-sdk-go-v2/service/internal/presigned-url".fetch] - type = "git" - url = "https://github.com/aws/aws-sdk-go-v2" - rev = "be1c89938486820ef47f075e7db95d4ad7411ccd" - sha256 = "1zaczqlqhi97qclgnvxblgqky4v2blvvpa4p4z4kq5ymqklzs9i2" - -["github.com/aws/aws-sdk-go-v2/service/route53"] - sumVersion = "v1.1.1" - relPath = "service/route53" - ["github.com/aws/aws-sdk-go-v2/service/route53".fetch] - type = "git" - url = "https://github.com/aws/aws-sdk-go-v2" - rev = "be1c89938486820ef47f075e7db95d4ad7411ccd" - sha256 = "1zaczqlqhi97qclgnvxblgqky4v2blvvpa4p4z4kq5ymqklzs9i2" - -["github.com/aws/aws-sdk-go-v2/service/sso"] - sumVersion = "v1.1.1" - relPath = "service/sso" - ["github.com/aws/aws-sdk-go-v2/service/sso".fetch] - type = "git" - url = "https://github.com/aws/aws-sdk-go-v2" - rev = "be1c89938486820ef47f075e7db95d4ad7411ccd" - sha256 = "1zaczqlqhi97qclgnvxblgqky4v2blvvpa4p4z4kq5ymqklzs9i2" - -["github.com/aws/aws-sdk-go-v2/service/sts"] - sumVersion = "v1.1.1" - relPath = "service/sts" - ["github.com/aws/aws-sdk-go-v2/service/sts".fetch] - type = "git" - url = "https://github.com/aws/aws-sdk-go-v2" - rev = "be1c89938486820ef47f075e7db95d4ad7411ccd" - sha256 = "1zaczqlqhi97qclgnvxblgqky4v2blvvpa4p4z4kq5ymqklzs9i2" - -["github.com/aws/smithy-go"] - sumVersion = "v1.1.0" - ["github.com/aws/smithy-go".fetch] - type = "git" - url = "https://github.com/aws/smithy-go" - rev = "e9104d8f89001998c6ab305ddbb64383e9f17680" - sha256 = "153ky3d91bskmsipj4v4h2011qxpjbjkbwrr8n3x2z21fhixrwda" - -["github.com/beorn7/perks"] - sumVersion = "v1.0.1" - ["github.com/beorn7/perks".fetch] - type = "git" - url = "https://github.com/beorn7/perks" - rev = "37c8de3658fcb183f997c4e13e8337516ab753e6" - sha256 = "17n4yygjxa6p499dj3yaqzfww2g7528165cl13haj97hlx94dgl7" - -["github.com/bgentry/speakeasy"] - sumVersion = "v0.1.0" - ["github.com/bgentry/speakeasy".fetch] - type = "git" - url = "https://github.com/bgentry/speakeasy" - rev = "4aabc24848ce5fd31929f7d1e4ea74d3709c14cd" - sha256 = "02dfrj0wyphd3db9zn2mixqxwiz1ivnyc5xc7gkz58l5l27nzp8s" - -["github.com/binance-chain/ledger-cosmos-go"] - sumVersion = "v0.9.9" - ["github.com/binance-chain/ledger-cosmos-go".fetch] - type = "git" - url = "https://github.com/binance-chain/ledger-cosmos-go" - rev = "af771e468374cca2f6b3309ecc548ee8c70efb17" - sha256 = "00nd0rk3adpjfcwpcj1hk17b9dax1aaqz0gv7i24dggmka8nybmm" - -["github.com/binance-chain/tss-lib"] - sumVersion = "v0.1.2" - vendorPath = "gitlab.com/thorchain/tss/tss-lib" - ["github.com/binance-chain/tss-lib".fetch] - type = "git" - url = "https://gitlab.com/thorchain/tss/tss-lib.git" - rev = "e1fed6a07f266d96b5c3d33b9ae29a9adef46edc" - sha256 = "0ijxgysg5bvidalvwzjxjng4kbchn6m1d9kyd7h5c38v2vhx4v76" - -["github.com/bketelsen/crypt"] - sumVersion = "v0.0.3-0.20200106085610-5cbc8cc4026c" - ["github.com/bketelsen/crypt".fetch] - type = "git" - url = "https://github.com/bketelsen/crypt" - rev = "5cbc8cc4026c0c1d3bf9c5d4e5a30398f99c99a9" - sha256 = "006772d50c73llgz8chvynndk28qxcyr1fd18sm0b5w1g1rdw2wp" - -["github.com/blang/semver"] - sumVersion = "v3.5.1+incompatible" - ["github.com/blang/semver".fetch] - type = "git" - url = "https://github.com/blang/semver" - rev = "2ee87856327ba09384cabd113bc6b5d174e9ec0f" - sha256 = "13ws259bwcibkclbr82ilhk6zadm63kxklxhk12wayklj8ghhsmy" - -["github.com/bmizerany/pat"] - sumVersion = "v0.0.0-20170815010413-6226ea591a40" - ["github.com/bmizerany/pat".fetch] - type = "git" - url = "https://github.com/bmizerany/pat" - rev = "6226ea591a40176dd3ff9cd8eff81ed6ca721a00" - sha256 = "0qjkm7169y6pybwh0s02fjjk251isa2b367xqfzrwvl6cy4yzfxp" - -["github.com/boltdb/bolt"] - sumVersion = "v1.3.1" - ["github.com/boltdb/bolt".fetch] - type = "git" - url = "https://github.com/boltdb/bolt" - rev = "2f1ce7a837dcb8da3ec595b1dac9d0632f0f99e8" - sha256 = "0z7j06lijfi4y30ggf2znak2zf2srv2m6c68ar712wd2ys44qb3r" - -["github.com/btcsuite/btcd"] - sumVersion = "v0.22.0-beta" - ["github.com/btcsuite/btcd".fetch] - type = "git" - url = "https://github.com/btcsuite/btcd" - rev = "63438c6d3661a7dec09013f7731035abdf1eb4bc" - sha256 = "0rcsd3wcs0cii8qq0573h9fi1x92i8c1gzdvifnkm2r0ndl4knla" - -["github.com/btcsuite/btclog"] - sumVersion = "v0.0.0-20170628155309-84c8d2346e9f" - ["github.com/btcsuite/btclog".fetch] - type = "git" - url = "https://github.com/btcsuite/btclog" - rev = "84c8d2346e9fc8c7b947e243b9c24e6df9fd206a" - sha256 = "02dl46wcnfpg9sqvg0ipipkpnd7lrf4fnvb9zy56jqa7mfcwc7wk" - -["github.com/btcsuite/btcutil"] - sumVersion = "v1.0.3-0.20201208143702-a53e38424cce" - ["github.com/btcsuite/btcutil".fetch] - type = "git" - url = "https://github.com/btcsuite/btcutil" - rev = "a53e38424cce1c9de2062b69364efd35fd428d15" - sha256 = "1izjvgi0d5wnknfwdnqa196hn4vj1n5ga7swbhcfsgghk2zngwr4" - -["github.com/btcsuite/go-socks"] - sumVersion = "v0.0.0-20170105172521-4720035b7bfd" - ["github.com/btcsuite/go-socks".fetch] - type = "git" - url = "https://github.com/btcsuite/go-socks" - rev = "4720035b7bfd2a9bb130b1c184f8bbe41b6f0d0f" - sha256 = "18cv2icj059lq4s99p6yh91hlas5f2gi3f1p4c10sjgwrs933d7b" - -["github.com/btcsuite/goleveldb"] - sumVersion = "v1.0.0" - ["github.com/btcsuite/goleveldb".fetch] - type = "git" - url = "https://github.com/btcsuite/goleveldb" - rev = "3fd0373267b6461dbefe91cef614278064d05465" - sha256 = "0kwllw5yflpn362xbsqphbm10qcy08v3zqs15zbyp4mkjjk0bl9z" - -["github.com/btcsuite/snappy-go"] - sumVersion = "v1.0.0" - ["github.com/btcsuite/snappy-go".fetch] - type = "git" - url = "https://github.com/btcsuite/snappy-go" - rev = "b3db38edf0a9a11a115eb6b022d8c946024a9ac0" - sha256 = "0b2536a58l6advb0ag9ywz7i5cdzclvmm3x796jydv1yrbj5x2vk" - -["github.com/btcsuite/websocket"] - sumVersion = "v0.0.0-20150119174127-31079b680792" - ["github.com/btcsuite/websocket".fetch] - type = "git" - url = "https://github.com/btcsuite/websocket" - rev = "31079b6807923eb23992c421b114992b95131b55" - sha256 = "0xpkf257ml6fpfdgv7hxxc41n0d5yxxm3njm50qpzp7j71l9cjwa" - -["github.com/btcsuite/winsvc"] - sumVersion = "v1.0.0" - ["github.com/btcsuite/winsvc".fetch] - type = "git" - url = "https://github.com/btcsuite/winsvc" - rev = "f8fb11f83f7e860e3769a08e6811d1b399a43722" - sha256 = "0nsw8y86a5hzr2a3j6ch9myrpccj5bnsgaxpgajhzfk5d31xlw1z" - -["github.com/c-bata/go-prompt"] - sumVersion = "v0.2.2" - ["github.com/c-bata/go-prompt".fetch] - type = "git" - url = "https://github.com/c-bata/go-prompt" - rev = "c52492ff1b386e5c0ba5271b5eaad165fab09eca" - sha256 = "14k8anchf0rcpxfbb2acrajdqrfspscbkn47m4py1zh5rkk6b9p9" - -["github.com/casbin/casbin/v2"] - sumVersion = "v2.1.2" - ["github.com/casbin/casbin/v2".fetch] - type = "git" - url = "https://github.com/casbin/casbin" - rev = "31a4cf3e119fdace8f02263315e83ca37a3fcc18" - sha256 = "175y7v4wlr26g23k551676zq3n3cxv8wjm3zsfhyxy3liikg7899" - -["github.com/cenkalti/backoff"] - sumVersion = "v2.2.1+incompatible" - ["github.com/cenkalti/backoff".fetch] - type = "git" - url = "https://github.com/cenkalti/backoff" - rev = "5267b6dd4d2666b980a911bf235efa276222cbe2" - sha256 = "1mf4lsl3rbb8kk42x0mrhzzy4ikqy0jf6nxpzhkr02rdgwh6rjk8" - -["github.com/census-instrumentation/opencensus-proto"] - sumVersion = "v0.2.1" - ["github.com/census-instrumentation/opencensus-proto".fetch] - type = "git" - url = "https://github.com/census-instrumentation/opencensus-proto" - rev = "d89fa54de508111353cb0b06403c00569be780d8" - sha256 = "19fcx3sc99i5dsklny6r073z5j20vlwn2xqm6di1q3b1xwchzqfj" - -["github.com/cespare/cp"] - sumVersion = "v0.1.0" - ["github.com/cespare/cp".fetch] - type = "git" - url = "https://github.com/cespare/cp" - rev = "165db2f241fd235aec29ba6d9b1ccd5f1c14637c" - sha256 = "1x76x985q9av29smybpc3g4az2qjmzqw181vp9z38wpbips31nm9" - -["github.com/cespare/xxhash"] - sumVersion = "v1.1.0" - ["github.com/cespare/xxhash".fetch] - type = "git" - url = "https://github.com/cespare/xxhash" - rev = "569f7c8abf1f58d9043ab804d364483cb1c853b6" - sha256 = "1qyzlcdcayavfazvi03izx83fvip8h36kis44zr2sg7xf6sx6l4x" - -["github.com/cespare/xxhash/v2"] - sumVersion = "v2.1.1" - ["github.com/cespare/xxhash/v2".fetch] - type = "git" - url = "https://github.com/cespare/xxhash" - rev = "d7df74196a9e781ede915320c11c378c1b2f3a1f" - sha256 = "0rl5rs8546zj1vzggv38w93wx0b5dvav7yy5hzxa8kw7iikv1cgr" - -["github.com/chzyer/logex"] - sumVersion = "v1.1.10" - ["github.com/chzyer/logex".fetch] - type = "git" - url = "https://github.com/chzyer/logex" - rev = "cd112f618178aaaf4ea8592c8839f5276145d9cf" - sha256 = "08pbjj3wx9acavlwyr055isa8a5hnmllgdv5k6ra60l5y1brmlq4" - -["github.com/chzyer/readline"] - sumVersion = "v0.0.0-20180603132655-2972be24d48e" - ["github.com/chzyer/readline".fetch] - type = "git" - url = "https://github.com/chzyer/readline" - rev = "2972be24d48e78746da79ba8e24e8b488c9880de" - sha256 = "104q8dazj8yf6b089jjr82fy9h1g80zyyzvp3g8b44a7d8ngjj6r" - -["github.com/chzyer/test"] - sumVersion = "v0.0.0-20180213035817-a1ea475d72b1" - ["github.com/chzyer/test".fetch] - type = "git" - url = "https://github.com/chzyer/test" - rev = "a1ea475d72b168a29f44221e0ad031a842642302" - sha256 = "0rns2aqk22i9xsgyap0pq8wi4cfaxsri4d9q6xxhhyma8jjsnj2k" - -["github.com/circonus-labs/circonus-gometrics"] - sumVersion = "v2.3.1+incompatible" - ["github.com/circonus-labs/circonus-gometrics".fetch] - type = "git" - url = "https://github.com/circonus-labs/circonus-gometrics" - rev = "9eb673b3d5f6bf1c932ae7596831eefb0c0c3c2f" - sha256 = "0s2wir711h0k2h8xsypgpzshccnx8jkwjfni7n32l7wd8yng9ngs" - -["github.com/circonus-labs/circonusllhist"] - sumVersion = "v0.1.3" - ["github.com/circonus-labs/circonusllhist".fetch] - type = "git" - url = "https://github.com/circonus-labs/circonusllhist" - rev = "87d4d00b35adeefe4911ece727838749e0fab113" - sha256 = "127js92p5gx84vfj3vdmf7nn6dmqmkrxg927z0jh91fdkipmmv3i" - -["github.com/clbanning/x2j"] - sumVersion = "v0.0.0-20191024224557-825249438eec" - ["github.com/clbanning/x2j".fetch] - type = "git" - url = "https://github.com/clbanning/x2j" - rev = "825249438eec392bc87b980fb635b336e496a888" - sha256 = "1khqy1m22vnyw0x24i4bwd37zvgzj25q139mh79bddj1rw5hf7hy" - -["github.com/client9/misspell"] - sumVersion = "v0.3.4" - ["github.com/client9/misspell".fetch] - type = "git" - url = "https://github.com/client9/misspell" - rev = "b90dc15cfd220ecf8bbc9043ecb928cef381f011" - sha256 = "1vwf33wsc4la25zk9nylpbp9px3svlmldkm0bha4hp56jws4q9cs" - -["github.com/cloudflare/cloudflare-go"] - sumVersion = "v0.14.0" - ["github.com/cloudflare/cloudflare-go".fetch] - type = "git" - url = "https://github.com/cloudflare/cloudflare-go" - rev = "1426b776f85bc6c5c9390247d48b6ea0bcffa13f" - sha256 = "0x3jh3ihvwbjwjk2bld9gfijp2sd318cjjxn1z35fnnxwwbwbzhx" - -["github.com/cncf/udpa/go"] - sumVersion = "v0.0.0-20201120205902-5459f2c99403" - relPath = "go" - ["github.com/cncf/udpa/go".fetch] - type = "git" - url = "https://github.com/cncf/udpa" - rev = "5459f2c994033b0afed7e4a70ac7e90c90c1ffee" - sha256 = "0i3al193dsp91j7iywqrm6fr56y2sz51ci4vf19mb3j4n2x44gsi" - -["github.com/cncf/xds/go"] - sumVersion = "v0.0.0-20210312221358-fbca930ec8ed" - relPath = "go" - ["github.com/cncf/xds/go".fetch] - type = "git" - url = "https://github.com/cncf/xds" - rev = "fbca930ec8edc42e1a2b083dc59d0f6ec4946eb1" - sha256 = "16dlsms2k63570051ch1jb9yphrkqz61wdgs2l6zqaykhg13rjmh" - -["github.com/cockroachdb/datadriven"] - sumVersion = "v0.0.0-20190809214429-80d97fb3cbaa" - ["github.com/cockroachdb/datadriven".fetch] - type = "git" - url = "https://github.com/cockroachdb/datadriven" - rev = "80d97fb3cbaa752564320702f409fdb2ef3da0ef" - sha256 = "0rvavka9zhri6r50n8fy98247fl5vycb1hffjrhshsicjv1frmlp" - -["github.com/codahale/hdrhistogram"] - sumVersion = "v0.0.0-20161010025455-3a0bb77429bd" - ["github.com/codahale/hdrhistogram".fetch] - type = "git" - url = "https://github.com/codahale/hdrhistogram" - rev = "3a0bb77429bd3a61596f5e8a3172445844342120" - sha256 = "1zampgfjbxy192cbwdi7g86l1idxaam96d834wncnpfdwgh5kl57" - -["github.com/confio/ics23/go"] - sumVersion = "v0.6.3" - relPath = "go" - ["github.com/confio/ics23/go".fetch] - type = "git" - url = "https://github.com/confio/ics23" - rev = "f173e6211efbf546bf9fcdc5cc29e5e055151666" - sha256 = "1zf30jzr9ill906pkp6kgnlh5hw3mk4m5vd1jpi7rinr5baaddnd" - -["github.com/consensys/bavard"] - sumVersion = "v0.1.8-0.20210406032232-f3452dc9b572" - ["github.com/consensys/bavard".fetch] - type = "git" - url = "https://github.com/consensys/bavard" - rev = "f3452dc9b5723cb45e221513c9b6085f397932d9" - sha256 = "19sp1x5rkshqc2avq7zzrj49mdnnqwbkj2psm82f244gcr0a08d5" - -["github.com/consensys/gnark-crypto"] - sumVersion = "v0.4.1-0.20210426202927-39ac3d4b3f1f" - ["github.com/consensys/gnark-crypto".fetch] - type = "git" - url = "https://github.com/consensys/gnark-crypto" - rev = "39ac3d4b3f1fc30b95a4098257eaac0ad2093a34" - sha256 = "1y564cvr8lh33andnbpivpkz472z72g4f2gf24b701s2bclx0k6w" - -["github.com/coreos/bbolt"] - sumVersion = "v1.3.2" - ["github.com/coreos/bbolt".fetch] - type = "git" - url = "https://github.com/coreos/bbolt" - rev = "63597a96ec0ad9e6d43c3fc81e809909e0237461" - sha256 = "13d5l6p6c5wvkr6vn9hkhz9c593qifn7fgx0hg4d6jcvg1y0bnm2" - -["github.com/coreos/etcd"] - sumVersion = "v3.3.13+incompatible" - ["github.com/coreos/etcd".fetch] - type = "git" - url = "https://github.com/coreos/etcd" - rev = "98d308426819d892e149fe45f6fd542464cb1f9d" - sha256 = "1kac4qfr83f2hdz35403f1ald05wc85vvhw79vxb431n61jvyaqy" - -["github.com/coreos/go-etcd"] - sumVersion = "v2.0.0+incompatible" - ["github.com/coreos/go-etcd".fetch] - type = "git" - url = "https://github.com/coreos/go-etcd" - rev = "f02171fbd43c7b9b53ce8679b03235a1ef3c7b12" - sha256 = "1xb34hzaa1lkbq5vkzy9vcz6gqwj7hp6cdbvyack2bf28dwn33jj" - -["github.com/coreos/go-semver"] - sumVersion = "v0.3.0" - ["github.com/coreos/go-semver".fetch] - type = "git" - url = "https://github.com/coreos/go-semver" - rev = "e214231b295a8ea9479f11b70b35d5acf3556d9b" - sha256 = "0770h1mpig2j5sbiha3abnwaw8p6dg9i87r8pc7cf6m4kwml3sc9" - -["github.com/coreos/go-systemd"] - sumVersion = "v0.0.0-20190321100706-95778dfbb74e" - ["github.com/coreos/go-systemd".fetch] - type = "git" - url = "https://github.com/coreos/go-systemd" - rev = "95778dfbb74eb7e4dbaf43bf7d71809650ef8076" - sha256 = "1s3bg9p78wkixn2bqb2p23wbsqfg949ml6crw2b498s71mwh8rcf" - -["github.com/coreos/pkg"] - sumVersion = "v0.0.0-20180928190104-399ea9e2e55f" - ["github.com/coreos/pkg".fetch] - type = "git" - url = "https://github.com/coreos/pkg" - rev = "399ea9e2e55f791b6e3d920860dbecb99c3692f0" - sha256 = "0nxbn0m7lr4dg0yrwnvlkfiyg3ndv8vdpssjx7b714nivpc6ar0y" - -["github.com/cosmos/cosmos-sdk"] - sumVersion = "v0.42.1" - ["github.com/cosmos/cosmos-sdk".fetch] - type = "git" - url = "https://github.com/cosmos/cosmos-sdk" - rev = "21814558eaa47b018018711e5fe16e0b16811fce" - sha256 = "16lfzvwwxv72zv1pf87lwri7lpsz3zxfck379wjxv293cc6wl6rw" - -["github.com/cosmos/go-bip39"] - sumVersion = "v1.0.0" - ["github.com/cosmos/go-bip39".fetch] - type = "git" - url = "https://github.com/cosmos/go-bip39" - rev = "3027fe585f89a39da9b7389bd4e3482e056f6d3f" - sha256 = "0q063bsalxffq41l3f6xlr50xa2985liw6y5niiwnjysdc5rlva2" - -["github.com/cosmos/iavl"] - sumVersion = "v0.15.3" - ["github.com/cosmos/iavl".fetch] - type = "git" - url = "https://github.com/cosmos/iavl" - rev = "257e8b9292e784aef5b755d9f8fd305eb1e29bb0" - sha256 = "0r4ysz3fm7y79zwmrvajkq5w1zzcd4b4fzd28wacahvfz1vqwy6s" - -["github.com/cosmos/ledger-cosmos-go"] - sumVersion = "v0.12.1" - vendorPath = "github.com/thorchain/ledger-thorchain-go" - ["github.com/cosmos/ledger-cosmos-go".fetch] - type = "git" - url = "https://github.com/thorchain/ledger-thorchain-go" - rev = "a38c8fd4461f88c696999bb55bc330a3e8c59b37" - sha256 = "01q6l6xc55gnf46w3ynrc17jzfkvihww47zb11h0prmsvlqmn8sr" - -["github.com/cosmos/ledger-go"] - sumVersion = "v0.9.2" - ["github.com/cosmos/ledger-go".fetch] - type = "git" - url = "https://github.com/cosmos/ledger-go" - rev = "1c99b41f1877b58e3517ef93012cc76fe5cd335b" - sha256 = "10vnj13c8diq3bxvf2m46s8ifj4fj1iwsw5hg7i1h55h1v83x0ni" - -["github.com/cpuguy83/go-md2man"] - sumVersion = "v1.0.10" - ["github.com/cpuguy83/go-md2man".fetch] - type = "git" - url = "https://github.com/cpuguy83/go-md2man" - rev = "7762f7e404f8416dfa1d9bb6a8c192aa9acb4d19" - sha256 = "1bqkf2bvy1dns9zd24k81mh2p1zxsx2nhq5cj8dz2vgkv1xkh60i" - -["github.com/cpuguy83/go-md2man/v2"] - sumVersion = "v2.0.0" - ["github.com/cpuguy83/go-md2man/v2".fetch] - type = "git" - url = "https://github.com/cpuguy83/go-md2man" - rev = "f79a8a8ca69da163eee19ab442bedad7a35bba5a" - sha256 = "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv" - -["github.com/creack/pty"] - sumVersion = "v1.1.9" - ["github.com/creack/pty".fetch] - type = "git" - url = "https://github.com/creack/pty" - rev = "3a6a957789163cacdfe0e291617a1c8e80612c11" - sha256 = "1v52599qq76dwq742mffakzj6mxqqccv2szn3hjicjld56nmd2d3" - -["github.com/danieljoos/wincred"] - sumVersion = "v1.0.2" - ["github.com/danieljoos/wincred".fetch] - type = "git" - url = "https://github.com/danieljoos/wincred" - rev = "b892d337201d1400370ebf4fa919941c9ea222ee" - sha256 = "1ym8mygjrf3rw1qka9irw76b2yisr2l5pq2w581s40yldnbfq4lc" - -["github.com/dave/jennifer"] - sumVersion = "v1.2.0" - ["github.com/dave/jennifer".fetch] - type = "git" - url = "https://github.com/dave/jennifer" - rev = "f915da8d6601a64feaa0a3086c4a6ace38996206" - sha256 = "0qpnzygsnvcyar10fjyqinsrmcs1b73a0srg0jys8bgyhmj9ryvf" - -["github.com/davecgh/go-spew"] - sumVersion = "v1.1.1" - ["github.com/davecgh/go-spew".fetch] - type = "git" - url = "https://github.com/davecgh/go-spew" - rev = "8991bc29aa16c548c550c7ff78260e27b9ab7c73" - sha256 = "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y" - -["github.com/davidlazar/go-crypto"] - sumVersion = "v0.0.0-20200604182044-b73af7476f6c" - ["github.com/davidlazar/go-crypto".fetch] - type = "git" - url = "https://github.com/davidlazar/go-crypto" - rev = "b73af7476f6c55b31aa2797d1f98afc94699548d" - sha256 = "10lbh8ask8hswgz2bavi6gq00dqc3y7apvkha1dhnbicwj9jqf38" - -["github.com/dchest/siphash"] - sumVersion = "v1.2.2" - ["github.com/dchest/siphash".fetch] - type = "git" - url = "https://github.com/dchest/siphash" - rev = "ee8c79d7a87657e65adfbcb9d90485d2dfcf8911" - sha256 = "0wvkjdh6k33s6f1n47f5mcfjjknmhj1bmdg24gk9il3l0zlj8y8y" - -["github.com/deckarep/golang-set"] - sumVersion = "v1.7.1" - ["github.com/deckarep/golang-set".fetch] - type = "git" - url = "https://github.com/deckarep/golang-set" - rev = "cbaa98ba5575e67703b32b4b19f73c91f3c4159e" - sha256 = "0y64c0p6a7ww5jp6adm6fm97vsni86njw8wkwxfmciy466vhl0lf" - -["github.com/decred/dcrd/chaincfg/chainhash"] - sumVersion = "v1.0.2" - relPath = "chaincfg/chainhash" - ["github.com/decred/dcrd/chaincfg/chainhash".fetch] - type = "git" - url = "https://github.com/decred/dcrd" - rev = "1149d54cb9b6e4565356d623847052dfd1cc4ba2" - sha256 = "0d87l1z8a2mrhnvcrbvwfg7aqhx3hj5w1f12wwfv5wv0wl87wb9c" - -["github.com/decred/dcrd/crypto/blake256"] - sumVersion = "v1.0.0" - relPath = "crypto/blake256" - ["github.com/decred/dcrd/crypto/blake256".fetch] - type = "git" - url = "https://github.com/decred/dcrd" - rev = "5c3e0d6454001c8d14fcf06be94381d93991aaea" - sha256 = "0m2mxrkbnr4dfan9ljxq9dd5hhqmpx5n9pd4hnwn5mlj4zgv018a" - -["github.com/decred/dcrd/dcrec/edwards"] - sumVersion = "v1.0.0" - relPath = "dcrec/edwards" - ["github.com/decred/dcrd/dcrec/edwards".fetch] - type = "git" - url = "https://github.com/decred/dcrd" - rev = "5c3e0d6454001c8d14fcf06be94381d93991aaea" - sha256 = "0m2mxrkbnr4dfan9ljxq9dd5hhqmpx5n9pd4hnwn5mlj4zgv018a" - -["github.com/decred/dcrd/dcrec/edwards/v2"] - sumVersion = "v2.0.0" - relPath = "dcrec/edwards" - ["github.com/decred/dcrd/dcrec/edwards/v2".fetch] - type = "git" - url = "https://github.com/decred/dcrd" - rev = "0781162661f71a6e8f7ff79721467cb6f55ba54c" - sha256 = "1p9n84401ix0v068kfpppj8y30s46n67v615b48n4f1my2b887i9" - -["github.com/decred/dcrd/dcrec/secp256k1"] - sumVersion = "v1.0.3" - relPath = "dcrec/secp256k1" - ["github.com/decred/dcrd/dcrec/secp256k1".fetch] - type = "git" - url = "https://github.com/decred/dcrd" - rev = "b90ee0c98a4cabf78084a897d8837eb970f0f5bf" - sha256 = "0mszdwy5hpr29bdy3wfiy9djgaas51rmbh7293dvas02nmlmd7hi" - -["github.com/decred/dcrd/dcrec/secp256k1/v2"] - sumVersion = "v2.0.0" - relPath = "dcrec/secp256k1" - ["github.com/decred/dcrd/dcrec/secp256k1/v2".fetch] - type = "git" - url = "https://github.com/decred/dcrd" - rev = "abe43b0928ff9c94779e8a027350b5f22a036ec4" - sha256 = "1b0w2aw0kbybp65d5x4yfdw3imbigk5hm4s5985xx59wkay0wdjp" - -["github.com/decred/dcrd/lru"] - sumVersion = "v1.0.0" - relPath = "lru" - ["github.com/decred/dcrd/lru".fetch] - type = "git" - url = "https://github.com/decred/dcrd" - rev = "5c3e0d6454001c8d14fcf06be94381d93991aaea" - sha256 = "0m2mxrkbnr4dfan9ljxq9dd5hhqmpx5n9pd4hnwn5mlj4zgv018a" - -["github.com/desertbit/timer"] - sumVersion = "v0.0.0-20180107155436-c41aec40b27f" - ["github.com/desertbit/timer".fetch] - type = "git" - url = "https://github.com/desertbit/timer" - rev = "c41aec40b27f0eeb2b94300fffcd624c69b02990" - sha256 = "1jsy04ga79xbdfn0xqzs7q8gyh2sz9jpfqdsb210m6188yscxck9" - -["github.com/dgraph-io/badger"] - sumVersion = "v1.6.1" - ["github.com/dgraph-io/badger".fetch] - type = "git" - url = "https://github.com/dgraph-io/badger" - rev = "8760a5018cd670a5cecc79a7e927ecaf47acc434" - sha256 = "0k84m8k0prxhqmfd2zq4j39b19m5sfh96j3gc7h6m30l39pfvapd" - -["github.com/dgraph-io/badger/v2"] - sumVersion = "v2.2007.2" - ["github.com/dgraph-io/badger/v2".fetch] - type = "git" - url = "https://github.com/dgraph-io/badger" - rev = "d5a25b83fbf4f3f61ff03a9202e36f5b75544426" - sha256 = "0cck8ap61bi56dv070cirkkl6fjavz05kwyxjv08lbfykhlpz3da" - -["github.com/dgraph-io/ristretto"] - sumVersion = "v0.0.3" - ["github.com/dgraph-io/ristretto".fetch] - type = "git" - url = "https://github.com/dgraph-io/ristretto" - rev = "bcb54d096f2303ce80960e125b5991ac4d6325c3" - sha256 = "1v29j6b0r87pf5dwsxi3rxa8yavkl3h79i63rbddfd42p2jyssyg" - -["github.com/dgrijalva/jwt-go"] - sumVersion = "v3.2.0+incompatible" - ["github.com/dgrijalva/jwt-go".fetch] - type = "git" - url = "https://github.com/dgrijalva/jwt-go" - rev = "06ea1031745cb8b3dab3f6a236daf2b0aa468b7e" - sha256 = "08m27vlms74pfy5z79w67f9lk9zkx6a9jd68k3c4msxy75ry36mp" - -["github.com/dgryski/go-bitstream"] - sumVersion = "v0.0.0-20180413035011-3522498ce2c8" - ["github.com/dgryski/go-bitstream".fetch] - type = "git" - url = "https://github.com/dgryski/go-bitstream" - rev = "3522498ce2c8ea06df73e55df58edfbfb33cfdd6" - sha256 = "1lr0qjdddxdiwfs530saglk4q5395i4n3w8h8k5j8nsjj8k3na7f" - -["github.com/dgryski/go-farm"] - sumVersion = "v0.0.0-20200201041132-a6ae2369ad13" - ["github.com/dgryski/go-farm".fetch] - type = "git" - url = "https://github.com/dgryski/go-farm" - rev = "a6ae2369ad13dc757768086f0cb902728c7e03e5" - sha256 = "1qbz4a4fv3853ix974x02q1129kc4xxf0c92ib5sdpsq04zjbqv8" - -["github.com/dgryski/go-sip13"] - sumVersion = "v0.0.0-20181026042036-e10d5fee7954" - ["github.com/dgryski/go-sip13".fetch] - type = "git" - url = "https://github.com/dgryski/go-sip13" - rev = "e10d5fee79544bd84105c9329adcc7b745fd588c" - sha256 = "15fyibfas209ljz3f7g07kdmfbl3hhyd9n5n7aq5n5p9m5mn41d6" - -["github.com/didip/tollbooth"] - sumVersion = "v4.0.2+incompatible" - ["github.com/didip/tollbooth".fetch] - type = "git" - url = "https://github.com/didip/tollbooth" - rev = "9a45a30506a5478893dbf0de9a9d0ce6dc8c1046" - sha256 = "1i0nw9qjn8kba1imslyvgw9xh7w12lnd9lfiq6rllk295k3zxrxi" - -["github.com/dlclark/regexp2"] - sumVersion = "v1.2.0" - ["github.com/dlclark/regexp2".fetch] - type = "git" - url = "https://github.com/dlclark/regexp2" - rev = "92c702aa5812963ef9193a9624191932d44073d7" - sha256 = "011l1prsywvhhi0yc7qmpsca1cwavmawyyld5kjzi0ff9ghvj4ng" - -["github.com/docker/docker"] - sumVersion = "v1.4.2-0.20180625184442-8e610b2b55bf" - ["github.com/docker/docker".fetch] - type = "git" - url = "https://github.com/docker/docker" - rev = "8e610b2b55bfd1bfa9436ab110d311f5e8a74dcb" - sha256 = "00d27aj6c2vi9q0djy9pqk3h8fqp066vffqckil43qq1c5b83c1j" - -["github.com/dop251/goja"] - sumVersion = "v0.0.0-20200721192441-a695b0cdd498" - ["github.com/dop251/goja".fetch] - type = "git" - url = "https://github.com/dop251/goja" - rev = "a695b0cdd4987b22f979a6f4d4ea30689058441a" - sha256 = "1s9358a30gmmbizvavd977n1zyla46bpxb2ymmr6qmmixw8ry4zv" - -["github.com/dustin/go-humanize"] - sumVersion = "v1.0.0" - ["github.com/dustin/go-humanize".fetch] - type = "git" - url = "https://github.com/dustin/go-humanize" - rev = "9f541cc9db5d55bce703bd99987c9d5cb8eea45e" - sha256 = "1kqf1kavdyvjk7f8kx62pnm7fbypn9z1vbf8v2qdh3y7z7a0cbl3" - -["github.com/dvsekhvalnov/jose2go"] - sumVersion = "v0.0.0-20200901110807-248326c1351b" - ["github.com/dvsekhvalnov/jose2go".fetch] - type = "git" - url = "https://github.com/dvsekhvalnov/jose2go" - rev = "248326c1351b716b2820b01a49d53837bfd9ac59" - sha256 = "06zj4n96pa5lnx8pxjhn3vis01fjklhsdqbcbqdv9m4kc7qip27s" - -["github.com/eager7/dogd"] - sumVersion = "v0.0.0-20200427085516-2caf59f59dbb" - ["github.com/eager7/dogd".fetch] - type = "git" - url = "https://github.com/eager7/dogd" - rev = "2caf59f59dbbe188ec679ae01501a80318aee4a6" - sha256 = "0h90z02hdgxwy6d0k9v6bb9szv0g07f404c1h1pd0ybg8j5chqg9" - -["github.com/eager7/doglog"] - sumVersion = "v0.0.0-20200427040431-a0db59f0a792" - ["github.com/eager7/doglog".fetch] - type = "git" - url = "https://github.com/eager7/doglog" - rev = "a0db59f0a7927f30c205ee7c7d34491d02593b3f" - sha256 = "1975l57xhyvapnz5mc0r0giz90sknpzlmv4z1dq5w6z003kvqdwl" - -["github.com/eager7/dogutil"] - sumVersion = "v0.0.0-20200427040807-200e961ba4b5" - ["github.com/eager7/dogutil".fetch] - type = "git" - url = "https://github.com/eager7/dogutil" - rev = "200e961ba4b5576438363b34c79edcd178b00e49" - sha256 = "0bblflz0hd78hg6324k4pmwyly4mhkakscggjqr2vwqcyrggqg2n" - -["github.com/eapache/go-resiliency"] - sumVersion = "v1.1.0" - ["github.com/eapache/go-resiliency".fetch] - type = "git" - url = "https://github.com/eapache/go-resiliency" - rev = "ea41b0fad31007accc7f806884dcdf3da98b79ce" - sha256 = "1zmgw3c4w5r6m2r340n4jc5l5ll3m3nbszqrmrgbqc2xixxyk2gx" - -["github.com/eapache/go-xerial-snappy"] - sumVersion = "v0.0.0-20180814174437-776d5712da21" - ["github.com/eapache/go-xerial-snappy".fetch] - type = "git" - url = "https://github.com/eapache/go-xerial-snappy" - rev = "776d5712da21bc4762676d614db1d8a64f4238b0" - sha256 = "0ncc41dv7xwb1znyzmzh7cvs6j5fzz0f1n8h1v3grl9ma6s1si9d" - -["github.com/eapache/queue"] - sumVersion = "v1.1.0" - ["github.com/eapache/queue".fetch] - type = "git" - url = "https://github.com/eapache/queue" - rev = "44cc805cf13205b55f69e14bcb69867d1ae92f98" - sha256 = "07dp54n94gn3gsvdcki56yqh7py7wqqigxbamhxwgbr05n61fqyg" - -["github.com/eclipse/paho.mqtt.golang"] - sumVersion = "v1.2.0" - ["github.com/eclipse/paho.mqtt.golang".fetch] - type = "git" - url = "https://github.com/eclipse/paho.mqtt.golang" - rev = "adca289fdcf8c883800aafa545bc263452290bae" - sha256 = "1f81ia8pkfz2084bla4kirrh7yrfg8dy11gsi84m75j25nf762zn" - -["github.com/edsrzf/mmap-go"] - sumVersion = "v1.0.0" - ["github.com/edsrzf/mmap-go".fetch] - type = "git" - url = "https://github.com/edsrzf/mmap-go" - rev = "188cc3b666ba704534fa4f96e9e61f21f1e1ba7c" - sha256 = "0ajmkk5cj6xmbngx3nhar7672i2vrkwpnbv1f26i5p4f5aydhl4k" - -["github.com/enigmampc/btcutil"] - sumVersion = "v1.0.3-0.20200723161021-e2fb6adb2a25" - ["github.com/enigmampc/btcutil".fetch] - type = "git" - url = "https://github.com/enigmampc/btcutil" - rev = "e2fb6adb2a25f868283c4f243c873ad6b4894974" - sha256 = "0r2gf20acxnrcrch57hvgg8qp8ic96w6bx0j080cfya04xib3dxv" - -["github.com/envoyproxy/go-control-plane"] - sumVersion = "v0.9.9-0.20210512163311-63b5d3c536b0" - ["github.com/envoyproxy/go-control-plane".fetch] - type = "git" - url = "https://github.com/envoyproxy/go-control-plane" - rev = "63b5d3c536b0a97ec2bbb2e74de7adae1ba1dfee" - sha256 = "1zb462sarpyjd4jxgiv9mqlmzz2rbjfh2r9xb7z4nbdkhpg1wh1j" - -["github.com/envoyproxy/protoc-gen-validate"] - sumVersion = "v0.1.0" - ["github.com/envoyproxy/protoc-gen-validate".fetch] - type = "git" - url = "https://github.com/envoyproxy/protoc-gen-validate" - rev = "9eff07ddfcb4001aa1aab280648153f46e1a8ddc" - sha256 = "0kxd3wwh3xwqk0r684hsy281xq4y71cd11d4q2hspcjbnlbwh7cy" - -["github.com/ethereum/go-ethereum"] - sumVersion = "v1.10.4" - ["github.com/ethereum/go-ethereum".fetch] - type = "git" - url = "https://github.com/ethereum/go-ethereum" - rev = "aa637fd38a379db6da98df0d520fb1c5139a18ce" - sha256 = "1pw9sxhb6zzaxp0kdzv04y5miqwnmqh8bjv12mhfilv56k08pzy3" - -["github.com/facebookgo/ensure"] - sumVersion = "v0.0.0-20160127193407-b4ab57deab51" - ["github.com/facebookgo/ensure".fetch] - type = "git" - url = "https://github.com/facebookgo/ensure" - rev = "b4ab57deab51ee655ae4bd85281f0715a068016d" - sha256 = "19icavc3sg0mdz8151q3vp2vn3ipq53mnb9h9n57w32amyyszl4d" - -["github.com/facebookgo/stack"] - sumVersion = "v0.0.0-20160209184415-751773369052" - ["github.com/facebookgo/stack".fetch] - type = "git" - url = "https://github.com/facebookgo/stack" - rev = "751773369052141c013c6e827a71e8f35c07879c" - sha256 = "07yr05mz7h007ldpij90zjflwgixp148sbyrdlh1fj5bikr4p8m3" - -["github.com/facebookgo/subset"] - sumVersion = "v0.0.0-20150612182917-8dac2c3c4870" - ["github.com/facebookgo/subset".fetch] - type = "git" - url = "https://github.com/facebookgo/subset" - rev = "8dac2c3c48703541e481feddf22975953d4ff842" - sha256 = "0kyc2m5wxjzj4fwspybgn1mgjzhbdfnadpwy9mrw1s05bh21rgai" - -["github.com/fatih/color"] - sumVersion = "v1.7.0" - ["github.com/fatih/color".fetch] - type = "git" - url = "https://github.com/fatih/color" - rev = "5b77d2a35fb0ede96d138fc9a99f5c9b6aef11b4" - sha256 = "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv" - -["github.com/felixge/httpsnoop"] - sumVersion = "v1.0.1" - ["github.com/felixge/httpsnoop".fetch] - type = "git" - url = "https://github.com/felixge/httpsnoop" - rev = "33ec42cfe005395fb4cc4b296781f65d7ffef2c3" - sha256 = "0ncd8lar5zxiwjhsp315s4hsl4bhnm271h49jhyxc66r5yffgmac" - -["github.com/fjl/memsize"] - sumVersion = "v0.0.0-20190710130421-bcb5799ab5e5" - ["github.com/fjl/memsize".fetch] - type = "git" - url = "https://github.com/fjl/memsize" - rev = "bcb5799ab5e5bd6a0fbd8ba513f95a50d9eac048" - sha256 = "0q1ixp3g77slfr3xqag74j42h35ilir1xl0qhxm1hiw2gj49jqfk" - -["github.com/flynn/noise"] - sumVersion = "v0.0.0-20180327030543-2492fe189ae6" - ["github.com/flynn/noise".fetch] - type = "git" - url = "https://github.com/flynn/noise" - rev = "2492fe189ae688d7edbeae0fd575de2f1c5fec8e" - sha256 = "1fff9raa5jsqs85q7gjqg4j6m9d35hnd8yhjljdd5rlh063y2z3q" - -["github.com/fogleman/gg"] - sumVersion = "v1.2.1-0.20190220221249-0403632d5b90" - ["github.com/fogleman/gg".fetch] - type = "git" - url = "https://github.com/fogleman/gg" - rev = "0403632d5b905943a1c2a5b2763aaecd568467ec" - sha256 = "1nkldjghbqnzj2djfaxhiv35kk341xhcrj9m2dwq65v684iqkk8n" - -["github.com/fortytw2/leaktest"] - sumVersion = "v1.3.0" - ["github.com/fortytw2/leaktest".fetch] - type = "git" - url = "https://github.com/fortytw2/leaktest" - rev = "9a23578d06a26ec1b47bfc8965bf5e7011df8bd6" - sha256 = "0487zghyxqzk6zdbhd2j074pcc2l15l4sfg5clrjqwfbql7519wx" - -["github.com/franela/goblin"] - sumVersion = "v0.0.0-20200105215937-c9ffbefa60db" - ["github.com/franela/goblin".fetch] - type = "git" - url = "https://github.com/franela/goblin" - rev = "c9ffbefa60dbcc40777294734ec3664f35a8c838" - sha256 = "0qdhg6i4bcf6inmzq2dbdv0r0c7clw1vd3n2zs4896ig0aws6vff" - -["github.com/franela/goreq"] - sumVersion = "v0.0.0-20171204163338-bcd34c9993f8" - ["github.com/franela/goreq".fetch] - type = "git" - url = "https://github.com/franela/goreq" - rev = "bcd34c9993f899273c74baaa95e15386cd97b6e7" - sha256 = "055a20nc5f1blk2swiwpwqpxd3z495ms1qr6a7cbbss1w3a7a7sb" - -["github.com/fsnotify/fsnotify"] - sumVersion = "v1.4.9" - ["github.com/fsnotify/fsnotify".fetch] - type = "git" - url = "https://github.com/fsnotify/fsnotify" - rev = "45d7d09e39ef4ac08d493309fa031790c15bfe8a" - sha256 = "1i1r72knpbfwwql9frn9bqc3nhfc2ai5m6qllcyr6wban62lr40x" - -["github.com/gballet/go-libpcsclite"] - sumVersion = "v0.0.0-20190607065134-2772fd86a8ff" - ["github.com/gballet/go-libpcsclite".fetch] - type = "git" - url = "https://github.com/gballet/go-libpcsclite" - rev = "2772fd86a8ff4306d2749f610a386bfee9e0d727" - sha256 = "1j7389jcjdsb73c30cial688m3r2wypspn8zhy5mvm3c9xqnigin" - -["github.com/gcash/bchd"] - sumVersion = "v0.17.1" - ["github.com/gcash/bchd".fetch] - type = "git" - url = "https://github.com/gcash/bchd" - rev = "ac37349ac2ce117581d5f7390c1fca734edc02a5" - sha256 = "1x04f9c9zn683flmkpiqzskhzaf2f2h59zaim1ab0lnaakgqyz40" - -["github.com/gcash/bchlog"] - sumVersion = "v0.0.0-20180913005452-b4f036f92fa6" - ["github.com/gcash/bchlog".fetch] - type = "git" - url = "https://github.com/gcash/bchlog" - rev = "b4f036f92fa66c88eec458f4531ff14ff87704d6" - sha256 = "137688h8nmsbwd9603dgpn1lnfv8v19wxc70133b60m3da23zkqs" - -["github.com/gcash/bchutil"] - sumVersion = "v0.0.0-20201025062739-fc759989ee3e" - ["github.com/gcash/bchutil".fetch] - type = "git" - url = "https://github.com/gcash/bchutil" - rev = "fc759989ee3ede322a45e2ba60586d0ab9cb5ff1" - sha256 = "0nk1qwf46ijz291fy3xm51qc2d26y43qdhmgrs7mygq3m046932l" - -["github.com/ghodss/yaml"] - sumVersion = "v1.0.0" - ["github.com/ghodss/yaml".fetch] - type = "git" - url = "https://github.com/ghodss/yaml" - rev = "0ca9ea5df5451ffdf184b4428c902747c2c11cd7" - sha256 = "0skwmimpy7hlh7pva2slpcplnm912rp3igs98xnqmn859kwa5v8g" - -["github.com/glycerine/go-unsnap-stream"] - sumVersion = "v0.0.0-20180323001048-9f0cb55181dd" - ["github.com/glycerine/go-unsnap-stream".fetch] - type = "git" - url = "https://github.com/glycerine/go-unsnap-stream" - rev = "9f0cb55181dd3a0a4c168d3dbc72d4aca4853126" - sha256 = "1v10z30y9qc8dl34x0s8lr773g6raxilfdxbmzd1176pspzcmm9n" - -["github.com/glycerine/goconvey"] - sumVersion = "v0.0.0-20190410193231-58a59202ab31" - ["github.com/glycerine/goconvey".fetch] - type = "git" - url = "https://github.com/glycerine/goconvey" - rev = "58a59202ab311a28f6cf05b95753256576781273" - sha256 = "014cj82z42gaw863nrfmw39ff1z103n0aj5bs1fpx2iawgw5i6qh" - -["github.com/go-check/check"] - sumVersion = "v0.0.0-20180628173108-788fd7840127" - ["github.com/go-check/check".fetch] - type = "git" - url = "https://github.com/go-check/check" - rev = "788fd78401277ebd861206a03c884797c6ec5541" - sha256 = "0v3bim0j375z81zrpr5qv42knqs0y2qv2vkjiqi5axvb78slki1a" - -["github.com/go-gl/glfw"] - sumVersion = "v0.0.0-20190409004039-e6da0acd62b1" - ["github.com/go-gl/glfw".fetch] - type = "git" - url = "https://github.com/go-gl/glfw" - rev = "e6da0acd62b1b57ee2799d4d0a76a7d4514dc5bc" - sha256 = "0prvx5r7q8yrhqvnwibv4xz3dayjbq36yajzqvh0z4lqsh4hyhch" - -["github.com/go-gl/glfw/v3.3/glfw"] - sumVersion = "v0.0.0-20200222043503-6f7a984d4dc4" - relPath = "v3.3/glfw" - ["github.com/go-gl/glfw/v3.3/glfw".fetch] - type = "git" - url = "https://github.com/go-gl/glfw" - rev = "6f7a984d4dc470c3f197229ad1991ae9e211bba2" - sha256 = "1nyv7h08qf4dp8w9pmcnrc6vv9bkwj8fil6pz0mkbss5hf4i8xcq" - -["github.com/go-kit/kit"] - sumVersion = "v0.10.0" - ["github.com/go-kit/kit".fetch] - type = "git" - url = "https://github.com/go-kit/kit" - rev = "cc938d52e0cdf4c811ab203f428fcd06f9d9a148" - sha256 = "1cqlrjf90b5pg6sj4nh0qz5wplnsjmcdgrvs6wfdjy5p71f17msa" - -["github.com/go-logfmt/logfmt"] - sumVersion = "v0.5.0" - ["github.com/go-logfmt/logfmt".fetch] - type = "git" - url = "https://github.com/go-logfmt/logfmt" - rev = "3be5f6aae7db841d31dc5e1b3bb7b4cff19200b3" - sha256 = "0mcvgimnf6a15hhpmmv42kzbsn618f0zi2j3np49xkq1113d7yyj" - -["github.com/go-ole/go-ole"] - sumVersion = "v1.2.1" - ["github.com/go-ole/go-ole".fetch] - type = "git" - url = "https://github.com/go-ole/go-ole" - rev = "a41e3c4b706f6ae8dfbff342b06e40fa4d2d0506" - sha256 = "114h8x7dh4jp7w7k678fm98lr9icavsf74v6jfipyq7q35bsfr1p" - -["github.com/go-sourcemap/sourcemap"] - sumVersion = "v2.1.2+incompatible" - ["github.com/go-sourcemap/sourcemap".fetch] - type = "git" - url = "https://github.com/go-sourcemap/sourcemap" - rev = "b019cc30c1eaa584753491b0d8f8c1534bf1eb44" - sha256 = "03k44fdrnknba05f7cd58lq4rzk7jdpiqksmc0wxrdzwschrbgw8" - -["github.com/go-sql-driver/mysql"] - sumVersion = "v1.4.1" - ["github.com/go-sql-driver/mysql".fetch] - type = "git" - url = "https://github.com/go-sql-driver/mysql" - rev = "72cd26f257d44c1114970e19afddcd812016007e" - sha256 = "1fvsvwc1v2i0gqn01mynvi1shp5xm0xaym6xng09fcbqb56lbjx1" - -["github.com/go-stack/stack"] - sumVersion = "v1.8.0" - ["github.com/go-stack/stack".fetch] - type = "git" - url = "https://github.com/go-stack/stack" - rev = "2fee6af1a9795aafbe0253a0cfbdf668e1fb8a9a" - sha256 = "0wk25751ryyvxclyp8jdk5c3ar0cmfr8lrjb66qbg4808x66b96v" - -["github.com/godbus/dbus"] - sumVersion = "v0.0.0-20190726142602-4481cbc300e2" - ["github.com/godbus/dbus".fetch] - type = "git" - url = "https://github.com/godbus/dbus" - rev = "4481cbc300e2df0c0b3cecc18b6c16c6c0bb885d" - sha256 = "0h0cl1r136g0kxbw3i7ggb9mhavpi1yr7d7312iwhkxm93dxkphg" - -["github.com/gofrs/uuid"] - sumVersion = "v3.3.0+incompatible" - ["github.com/gofrs/uuid".fetch] - type = "git" - url = "https://github.com/gofrs/uuid" - rev = "abfe1881e60ef34074c1b8d8c63b42565c356ed6" - sha256 = "1smqivlj8j2g3y9scqrx1hafi01dn7iwlyzh8ach74k64xkhs1ar" - -["github.com/gogo/gateway"] - sumVersion = "v1.1.0" - ["github.com/gogo/gateway".fetch] - type = "git" - url = "https://github.com/gogo/gateway" - rev = "817b4cf527e834d7d563b7329355c45801d5e02d" - sha256 = "1jj7vr3sdk7yz8jl1kzv8473pkhd388f95byc8pdwrh6y7fh0xrq" - -["github.com/gogo/googleapis"] - sumVersion = "v1.1.0" - ["github.com/gogo/googleapis".fetch] - type = "git" - url = "https://github.com/gogo/googleapis" - rev = "8558fb44d2f1fc223118afc694129d2c2d2924d1" - sha256 = "0gkdk3k2wc0l8650s0k29kc01bi8nf14h741phmcsbi6li9y5sk1" - -["github.com/gogo/protobuf"] - sumVersion = "v1.3.2-alpha.regen.4" - vendorPath = "github.com/regen-network/protobuf" - ["github.com/gogo/protobuf".fetch] - type = "git" - url = "https://github.com/regen-network/protobuf" - rev = "28db94a3930aedfea44b6d508cf238065e21b497" - sha256 = "1y3bv0fhxwzb1axba0szvhhdz7rljfz8kgff6n9943v1m0bnpavl" - -["github.com/golang/freetype"] - sumVersion = "v0.0.0-20170609003504-e2365dfdc4a0" - ["github.com/golang/freetype".fetch] - type = "git" - url = "https://github.com/golang/freetype" - rev = "e2365dfdc4a05e4b8299a783240d4a7d5a65d4e4" - sha256 = "194w3djc6fv1rgcjqds085b9fq074panc5vw582bcb8dbfzsrqxc" - -["github.com/golang/geo"] - sumVersion = "v0.0.0-20190916061304-5b978397cfec" - ["github.com/golang/geo".fetch] - type = "git" - url = "https://github.com/golang/geo" - rev = "5b978397cfecc7280e598e9ac5854e9534b0918b" - sha256 = "1l09fl449css9bw045c7a35rp5jxgfpbisyn1rb9r4ign7956wi3" - -["github.com/golang/glog"] - sumVersion = "v0.0.0-20160126235308-23def4e6c14b" - ["github.com/golang/glog".fetch] - type = "git" - url = "https://github.com/golang/glog" - rev = "23def4e6c14b4da8ac2ed8007337bc5eb5007998" - sha256 = "0jb2834rw5sykfr937fxi8hxi2zy80sj2bdn9b3jb4b26ksqng30" - -["github.com/golang/groupcache"] - sumVersion = "v0.0.0-20191227052852-215e87163ea7" - ["github.com/golang/groupcache".fetch] - type = "git" - url = "https://github.com/golang/groupcache" - rev = "215e87163ea771ffa998a96c611387313bb5a403" - sha256 = "07555csk49ara636bhl2vbzziayls3qks8964z0q29g065zliy9j" - -["github.com/golang/mock"] - sumVersion = "v1.4.4" - ["github.com/golang/mock".fetch] - type = "git" - url = "https://github.com/golang/mock" - rev = "f7b1909c82a8958747e5c87c6a5c3b2eaed8a33d" - sha256 = "1lj0dvd6div4jaq1s0afpwqaq9ah8cxhkq93wii2ably1xmp2l0a" - -["github.com/golang/protobuf"] - sumVersion = "v1.5.2" - ["github.com/golang/protobuf".fetch] - type = "git" - url = "https://github.com/golang/protobuf" - rev = "ae97035608a719c7a1c1c41bed0ae0744bdb0c6f" - sha256 = "1mh5fyim42dn821nsd3afnmgscrzzhn3h8rag635d2jnr23r1zhk" - -["github.com/golang/snappy"] - sumVersion = "v0.0.3" - ["github.com/golang/snappy".fetch] - type = "git" - url = "https://github.com/golang/snappy" - rev = "674baa8c7fc30da5df3074a459494a7e6b427dff" - sha256 = "1dc8sdca0nrqb8wri91mi2xcjm16wyawm4y0fwc5gp24ahjbrg7g" - -["github.com/google/btree"] - sumVersion = "v1.0.0" - ["github.com/google/btree".fetch] - type = "git" - url = "https://github.com/google/btree" - rev = "4030bb1f1f0c35b30ca7009e9ebd06849dd45306" - sha256 = "0ba430m9fbnagacp57krgidsyrgp3ycw5r7dj71brgp5r52g82p6" - -["github.com/google/flatbuffers"] - sumVersion = "v1.11.0" - ["github.com/google/flatbuffers".fetch] - type = "git" - url = "https://github.com/google/flatbuffers" - rev = "9e7e8cbe9f675123dd41b7c62868acad39188cae" - sha256 = "1gl8pnykzifh7pnnvl80f5prmj5ga60dp44inpv9az2k9zaqx3qr" - -["github.com/google/go-cmp"] - sumVersion = "v0.5.5" - ["github.com/google/go-cmp".fetch] - type = "git" - url = "https://github.com/google/go-cmp" - rev = "8fa37b4dd109f12e42b131e485268768f18bcbf8" - sha256 = "12fmkdhyv5d4is8s57k78j097zb0phlgnrkqc03agiszxlid69x7" - -["github.com/google/gofuzz"] - sumVersion = "v1.1.1-0.20200604201612-c04b05f3adfa" - ["github.com/google/gofuzz".fetch] - type = "git" - url = "https://github.com/google/gofuzz" - rev = "c04b05f3adfa7f64e47bf054350f2336aea32e9d" - sha256 = "0i75fm6pg54zvrgbvjkg46cr03pypqm4w0wv0a349f4k7ff8qv9r" - -["github.com/google/gopacket"] - sumVersion = "v1.1.18" - ["github.com/google/gopacket".fetch] - type = "git" - url = "https://github.com/google/gopacket" - rev = "558173e197d46ae52f0f7c58313c96296ee16a9c" - sha256 = "16qg6w96lv44xx897hp9ymc85sifdyx89hn8763rga6g5w57srw4" - -["github.com/google/martian"] - sumVersion = "v2.1.0+incompatible" - ["github.com/google/martian".fetch] - type = "git" - url = "https://github.com/google/martian" - rev = "195b986b4b6d4c513582cf4d2b8c4fd7e2494f7e" - sha256 = "197hil6vrjk50b9wvwyzf61csid83whsjj6ik8mc9r2lryxlyyrp" - -["github.com/google/pprof"] - sumVersion = "v0.0.0-20191218002539-d4f498aebedc" - ["github.com/google/pprof".fetch] - type = "git" - url = "https://github.com/google/pprof" - rev = "d4f498aebedc02388a1c34ebe8dcb2e7c9e99f29" - sha256 = "1r4pn70yy5vfl38jx9v8224n7jkhcm5wg28vv48izgznlgv7h024" - -["github.com/google/renameio"] - sumVersion = "v0.1.0" - ["github.com/google/renameio".fetch] - type = "git" - url = "https://github.com/google/renameio" - rev = "f0e32980c006571efd537032e5f9cd8c1a92819e" - sha256 = "1ki2x5a9nrj17sn092d6n4zr29lfg5ydv4xz5cp58z6cw8ip43jx" - -["github.com/google/uuid"] - sumVersion = "v1.3.0" - ["github.com/google/uuid".fetch] - type = "git" - url = "https://github.com/google/uuid" - rev = "44b5fee7c49cf3bcdf723f106b36d56ef13ccc88" - sha256 = "0imkw52m7fzrwsdj2rfrk3zbplqfbwncyv6hv89xw0vdw3jpk122" - -["github.com/googleapis/gax-go/v2"] - sumVersion = "v2.0.5" - relPath = "v2" - ["github.com/googleapis/gax-go/v2".fetch] - type = "git" - url = "https://github.com/googleapis/gax-go" - rev = "bd5b16380fd03dc758d11cef74ba2e3bc8b0e8c2" - sha256 = "1lxawwngv6miaqd25s3ba0didfzylbwisd2nz7r4gmbmin6jsjrx" - -["github.com/gopherjs/gopherjs"] - sumVersion = "v0.0.0-20181017120253-0766667cb4d1" - ["github.com/gopherjs/gopherjs".fetch] - type = "git" - url = "https://github.com/gopherjs/gopherjs" - rev = "0766667cb4d1cfb8d5fde1fe210ae41ead3cf589" - sha256 = "13pfc9sxiwjky2lm1xb3i3lcisn8p6mgjk2d927l7r92ysph8dmw" - -["github.com/gorilla/context"] - sumVersion = "v1.1.1" - ["github.com/gorilla/context".fetch] - type = "git" - url = "https://github.com/gorilla/context" - rev = "08b5f424b9271eedf6f9f0ce86cb9396ed337a42" - sha256 = "03p4hn87vcmfih0p9w663qbx9lpsf7i7j3lc7yl7n84la3yz63m4" - -["github.com/gorilla/handlers"] - sumVersion = "v1.5.1" - ["github.com/gorilla/handlers".fetch] - type = "git" - url = "https://github.com/gorilla/handlers" - rev = "d453effd20e6817a8acfd9d278dadd21371da0ba" - sha256 = "15gycdz9lkjnsvvichsbdf25vf6pi1sfn41khhz53iqf300l0w0s" - -["github.com/gorilla/mux"] - sumVersion = "v1.8.0" - ["github.com/gorilla/mux".fetch] - type = "git" - url = "https://github.com/gorilla/mux" - rev = "98cb6bf42e086f6af920b965c38cacc07402d51b" - sha256 = "18f0q9qxgq1yh4ji07mqhiydfcwvi56z9d775v7dc7yckj33kpdk" - -["github.com/gorilla/websocket"] - sumVersion = "v1.4.2" - ["github.com/gorilla/websocket".fetch] - type = "git" - url = "https://github.com/gorilla/websocket" - rev = "b65e62901fc1c0d968042419e74789f6af455eb9" - sha256 = "0mkm9w6kjkrlzab5wh8p4qxkc0icqawjbvr01d2nk6ykylrln40s" - -["github.com/graph-gophers/graphql-go"] - sumVersion = "v0.0.0-20201113091052-beb923fada29" - ["github.com/graph-gophers/graphql-go".fetch] - type = "git" - url = "https://github.com/graph-gophers/graphql-go" - rev = "beb923fada293249384c7a9fa0c5078ea92466f3" - sha256 = "19l2xzrdhw7lc5h8kq56k356qnmld8cfcxz575mmdblrca76pnwx" - -["github.com/grpc-ecosystem/go-grpc-middleware"] - sumVersion = "v1.2.2" - ["github.com/grpc-ecosystem/go-grpc-middleware".fetch] - type = "git" - url = "https://github.com/grpc-ecosystem/go-grpc-middleware" - rev = "46f2eb369b917e60df91057c4d37847d17e5a9a4" - sha256 = "089cbns0s1l6j4a6x793z1llllqqk628w11zv3lrfizbk075rn3n" - -["github.com/grpc-ecosystem/go-grpc-prometheus"] - sumVersion = "v1.2.0" - ["github.com/grpc-ecosystem/go-grpc-prometheus".fetch] - type = "git" - url = "https://github.com/grpc-ecosystem/go-grpc-prometheus" - rev = "c225b8c3b01faf2899099b768856a9e916e5087b" - sha256 = "1lzk54h7np32b3acidg1ggbn8ppbnns0m71gcg9d1qkkdh8zrijl" - -["github.com/grpc-ecosystem/grpc-gateway"] - sumVersion = "v1.16.0" - ["github.com/grpc-ecosystem/grpc-gateway".fetch] - type = "git" - url = "https://github.com/grpc-ecosystem/grpc-gateway" - rev = "094a6fe78b3ca888297d090185cdf30f0e42e157" - sha256 = "0dzq1qbgzz2c6vnh8anx0j3py34sd72p35x6s2wrl001q68am5cc" - -["github.com/gsterjov/go-libsecret"] - sumVersion = "v0.0.0-20161001094733-a6f4afe4910c" - ["github.com/gsterjov/go-libsecret".fetch] - type = "git" - url = "https://github.com/gsterjov/go-libsecret" - rev = "a6f4afe4910cad8688db3e0e9b9ac92ad22d54e1" - sha256 = "09zaiadnll83vs22ib89agg7anj0blw5fywvmckxllsgif6ak6v7" - -["github.com/gtank/merlin"] - sumVersion = "v0.1.1" - ["github.com/gtank/merlin".fetch] - type = "git" - url = "https://github.com/gtank/merlin" - rev = "8318aed1a79f2b4c16cf2d7c2f09d991ec0731d1" - sha256 = "1gcj26hiyb87cjvqrdyr4q201c1rknpbahnsvcnz08agaw6gvwxm" - -["github.com/gtank/ristretto255"] - sumVersion = "v0.1.2" - ["github.com/gtank/ristretto255".fetch] - type = "git" - url = "https://github.com/gtank/ristretto255" - rev = "f33454717c935f5c93978e82b7bd1e848768bb91" - sha256 = "0kn4r28zbxf4vqr2if455wqzak38l27wqrwbzpxygrvczm61a2kw" - -["github.com/gxed/hashland/keccakpg"] - sumVersion = "v0.0.1" - relPath = "keccakpg" - ["github.com/gxed/hashland/keccakpg".fetch] - type = "git" - url = "https://github.com/gxed/hashland" - rev = "a72cc0875a1e95edd309d3134bc7c11bf2d7360b" - sha256 = "1b921dh9i6zw7y8jfzwvrmdbhnwid12a5z1zjawslfq2vvsajwmm" - -["github.com/gxed/hashland/murmur3"] - sumVersion = "v0.0.1" - relPath = "murmur3" - ["github.com/gxed/hashland/murmur3".fetch] - type = "git" - url = "https://github.com/gxed/hashland" - rev = "a72cc0875a1e95edd309d3134bc7c11bf2d7360b" - sha256 = "1b921dh9i6zw7y8jfzwvrmdbhnwid12a5z1zjawslfq2vvsajwmm" - -["github.com/hashicorp/consul/api"] - sumVersion = "v1.3.0" - relPath = "api" - ["github.com/hashicorp/consul/api".fetch] - type = "git" - url = "https://github.com/hashicorp/consul" - rev = "e8757838a49feeb682c7e6ad6b78694a78b2096b" - sha256 = "1zv84snvrjm74w3v3rr27linsbxj00m73xd047sb78a4766xs2h0" - -["github.com/hashicorp/consul/sdk"] - sumVersion = "v0.3.0" - relPath = "sdk" - ["github.com/hashicorp/consul/sdk".fetch] - type = "git" - url = "https://github.com/hashicorp/consul" - rev = "441d613e1bd96254c78c46ee7c1b35c161fc7295" - sha256 = "1v06ygzsvc9c02yxpxnnm407kd30fc46b2146k5zrk1v8lq0f91j" - -["github.com/hashicorp/errwrap"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/errwrap".fetch] - type = "git" - url = "https://github.com/hashicorp/errwrap" - rev = "8a6fb523712970c966eefc6b39ed2c5e74880354" - sha256 = "0slfb6w3b61xz04r32bi0a1bygc82rjzhqkxj2si2074wynqnr1c" - -["github.com/hashicorp/go-cleanhttp"] - sumVersion = "v0.5.1" - ["github.com/hashicorp/go-cleanhttp".fetch] - type = "git" - url = "https://github.com/hashicorp/go-cleanhttp" - rev = "eda1e5db218aad1db63ca4642c8906b26bcf2744" - sha256 = "07kx3fhryqmaw3czacmm11qwx63js2q8cfq967vphk7xg9q377kk" - -["github.com/hashicorp/go-hclog"] - sumVersion = "v0.9.2" - ["github.com/hashicorp/go-hclog".fetch] - type = "git" - url = "https://github.com/hashicorp/go-hclog" - rev = "5ccdce08c75b6c7b37af61159f13f6a4f5e2e928" - sha256 = "0pakba7rdkjgq50r79sbbpavymbyib77cy613wl734mpi30ywrxm" - -["github.com/hashicorp/go-immutable-radix"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-immutable-radix".fetch] - type = "git" - url = "https://github.com/hashicorp/go-immutable-radix" - rev = "27df80928bb34bb1b0d6d0e01b9e679902e7a6b5" - sha256 = "1v3nmsnk1s8bzpclrhirz7iq0g5xxbw9q5gvrg9ss6w9crs72qr6" - -["github.com/hashicorp/go-msgpack"] - sumVersion = "v0.5.3" - ["github.com/hashicorp/go-msgpack".fetch] - type = "git" - url = "https://github.com/hashicorp/go-msgpack" - rev = "be3a5be7ee2202386d02936a19ae4fbde1c77800" - sha256 = "00jv0ajqd58pkb2yyhlrjp0rv1mvb1ijx3yqjyikcmzvk9jb4h5m" - -["github.com/hashicorp/go-multierror"] - sumVersion = "v1.1.0" - ["github.com/hashicorp/go-multierror".fetch] - type = "git" - url = "https://github.com/hashicorp/go-multierror" - rev = "2004d9dba6b07a5b8d133209244f376680f9d472" - sha256 = "0pmjpzpra7lqgikxzwlcp5mh01b46j2vhyxkixz0v86fr9kf0k3k" - -["github.com/hashicorp/go-retryablehttp"] - sumVersion = "v0.6.4" - ["github.com/hashicorp/go-retryablehttp".fetch] - type = "git" - url = "https://github.com/hashicorp/go-retryablehttp" - rev = "eaff869a704e190d92996f23c23a4037cf2b0770" - sha256 = "1s4jcrx6pj8r3dbcijdljiwlk9acrdv5v1kq66a5r6s3labz0gfa" - -["github.com/hashicorp/go-rootcerts"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-rootcerts".fetch] - type = "git" - url = "https://github.com/hashicorp/go-rootcerts" - rev = "63503fb4e1eca22f9ae0f90b49c5d5538a0e87eb" - sha256 = "0wply5zhj1rcybr932zbwm1i18q5wr7kgkhnz6bw6mk1n9yr8lfj" - -["github.com/hashicorp/go-sockaddr"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-sockaddr".fetch] - type = "git" - url = "https://github.com/hashicorp/go-sockaddr" - rev = "a6a0d2df398f7e0e9f6e43f589c8b51cec0eb6b0" - sha256 = "1yn1xq8ysn0lszmkygz3a9lgpswbz1p91jv7q8l20s4749a22xgi" - -["github.com/hashicorp/go-syslog"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/go-syslog".fetch] - type = "git" - url = "https://github.com/hashicorp/go-syslog" - rev = "8d1874e3e8d1862b74e0536851e218c4571066a5" - sha256 = "09vccqggz212cg0jir6vv708d6mx0f9w5bxrcdah3h6chgmal6v1" - -["github.com/hashicorp/go-uuid"] - sumVersion = "v1.0.1" - ["github.com/hashicorp/go-uuid".fetch] - type = "git" - url = "https://github.com/hashicorp/go-uuid" - rev = "4f571afc59f3043a65f8fe6bf46d887b10a01d43" - sha256 = "0jvb88m0rq41bwgirsadgw7mnayl27av3gd2vqa3xvxp3fy0hp5k" - -["github.com/hashicorp/go-version"] - sumVersion = "v1.2.0" - ["github.com/hashicorp/go-version".fetch] - type = "git" - url = "https://github.com/hashicorp/go-version" - rev = "ac23dc3fea5d1a983c43f6a0f6e2c13f0195d8bd" - sha256 = "1bwi6y6111xq8ww8kjq0w1cmz15l1h9hb2id6596l8l0ag1vjj1z" - -["github.com/hashicorp/go.net"] - sumVersion = "v0.0.1" - ["github.com/hashicorp/go.net".fetch] - type = "git" - url = "https://github.com/hashicorp/go.net" - rev = "afc3cb3a421746fc66dd55b09a270c750cf536ce" - sha256 = "06arwi95xp5rxyz7rndvhc3wlwg0jn9a5z6djf3yyg5h9zfab9i4" - -["github.com/hashicorp/golang-lru"] - sumVersion = "v0.5.5-0.20210104140557-80c98217689d" - ["github.com/hashicorp/golang-lru".fetch] - type = "git" - url = "https://github.com/hashicorp/golang-lru" - rev = "80c98217689d6df152309d574ccc682b21dc802c" - sha256 = "0rvnxv3vphzmh59p6ddir11rzp7lrn6rizhmyx2rm9vvqhnav6y3" - -["github.com/hashicorp/hcl"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/hcl".fetch] - type = "git" - url = "https://github.com/hashicorp/hcl" - rev = "8cb6e5b959231cc1119e43259c4a608f9c51a241" - sha256 = "0q6ml0qqs0yil76mpn4mdx4lp94id8vbv575qm60jzl1ijcl5i66" - -["github.com/hashicorp/logutils"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/logutils".fetch] - type = "git" - url = "https://github.com/hashicorp/logutils" - rev = "a335183dfd075f638afcc820c90591ca3c97eba6" - sha256 = "076wf4sh5p3f953ndqk1cc0x7jhmlqrxak9953rz79rcdw77rjvv" - -["github.com/hashicorp/mdns"] - sumVersion = "v1.0.0" - ["github.com/hashicorp/mdns".fetch] - type = "git" - url = "https://github.com/hashicorp/mdns" - rev = "c31d3f8e4a0a5b46b118c2fd26d9da36467002c9" - sha256 = "0qr4l91hhi97s8a1isnrw3s4q8pjzacqiks870vnwh15v7ig3axd" - -["github.com/hashicorp/memberlist"] - sumVersion = "v0.1.3" - ["github.com/hashicorp/memberlist".fetch] - type = "git" - url = "https://github.com/hashicorp/memberlist" - rev = "a9da52f0668fc4321ec18e9e28dd8141621a808f" - sha256 = "0k1spq7dagvqj3baqw2dhxx1zxrb02y6m3apzr3a7gyirii890g3" - -["github.com/hashicorp/serf"] - sumVersion = "v0.8.2" - ["github.com/hashicorp/serf".fetch] - type = "git" - url = "https://github.com/hashicorp/serf" - rev = "b89a09ebd4b1b570e0076d5097272e67c10ac4f6" - sha256 = "0nrslghvdjhaczr2xp9mn8xgcx1dxl4jgpbk0l61ssmxahpx4iyc" - -["github.com/holiman/bloomfilter/v2"] - sumVersion = "v2.0.3" - relPath = "v2" - ["github.com/holiman/bloomfilter/v2".fetch] - type = "git" - url = "https://github.com/holiman/bloomfilter" - rev = "cb834897ed3b94c6a6fb37ec57bc7cdd651c6c32" - sha256 = "16dlc7q0w99nsqjh1ibv54rmmdl2kisbh5z57j963zlwbg43byjz" - -["github.com/holiman/uint256"] - sumVersion = "v1.2.0" - ["github.com/holiman/uint256".fetch] - type = "git" - url = "https://github.com/holiman/uint256" - rev = "46b8ad94199afbcc12f2ca653481891165d829d5" - sha256 = "0gi0i5zv5czydnvk5fa3p7a92ygfdi0x8sbaynn9i1ivajivw8g4" - -["github.com/hpcloud/tail"] - sumVersion = "v1.0.0" - ["github.com/hpcloud/tail".fetch] - type = "git" - url = "https://github.com/hpcloud/tail" - rev = "a30252cb686a21eb2d0b98132633053ec2f7f1e5" - sha256 = "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0" - -["github.com/hudl/fargo"] - sumVersion = "v1.3.0" - ["github.com/hudl/fargo".fetch] - type = "git" - url = "https://github.com/hudl/fargo" - rev = "fce5cf495554be9ef0766f6f5459e2874fb08c89" - sha256 = "1f7pwj793p51nq03jiz834g0qvg502h9asry6nx4pdc10wzx2948" - -["github.com/huin/goupnp"] - sumVersion = "v1.0.1-0.20210310174557-0ca763054c88" - ["github.com/huin/goupnp".fetch] - type = "git" - url = "https://github.com/huin/goupnp" - rev = "0ca763054c8882de233e45d2f61d8be91f86e536" - sha256 = "1wxy76z8dw491rck82xd13l90z68zsjhrijcfyn9gy4b1hi6p4dr" - -["github.com/huin/goutil"] - sumVersion = "v0.0.0-20170803182201-1ca381bf3150" - ["github.com/huin/goutil".fetch] - type = "git" - url = "https://github.com/huin/goutil" - rev = "1ca381bf315033e89af3286fdec0109ce8d86126" - sha256 = "0alhyacsfqic2wxyqn4gvk9wzjl4pkmy8rhvqjk84xsghgx5xf12" - -["github.com/ianlancetaylor/demangle"] - sumVersion = "v0.0.0-20181102032728-5e5cf60278f6" - ["github.com/ianlancetaylor/demangle".fetch] - type = "git" - url = "https://github.com/ianlancetaylor/demangle" - rev = "5e5cf60278f657d30daa329dd0e7e893b6b8f027" - sha256 = "1fhjk11cip9c3jyj1byz9z77n6n2rlxmyz0xjx1zpn1da3cvri75" - -["github.com/improbable-eng/grpc-web"] - sumVersion = "v0.13.0" - ["github.com/improbable-eng/grpc-web".fetch] - type = "git" - url = "https://github.com/improbable-eng/grpc-web" - rev = "7b39f93d269b8927979e9e94b09697607d2c31ef" - sha256 = "04mc5jc9wzs0szjwlw88z8i5s48baxsr199xmb4f52sws4kkygy5" - -["github.com/inconshreveable/mousetrap"] - sumVersion = "v1.0.0" - ["github.com/inconshreveable/mousetrap".fetch] - type = "git" - url = "https://github.com/inconshreveable/mousetrap" - rev = "76626ae9c91c4f2a10f34cad8ce83ea42c93bb75" - sha256 = "1mn0kg48xkd74brf48qf5hzp0bc6g8cf5a77w895rl3qnlpfw152" - -["github.com/influxdata/flux"] - sumVersion = "v0.65.1" - ["github.com/influxdata/flux".fetch] - type = "git" - url = "https://github.com/influxdata/flux" - rev = "79f011fc00e260b588a150c4d99958c706621620" - sha256 = "12fj9cn6gia57xc0g56hsn6pqg7r6x5h0c1730rga6a87czzw4s0" - -["github.com/influxdata/influxdb"] - sumVersion = "v1.8.3" - ["github.com/influxdata/influxdb".fetch] - type = "git" - url = "https://github.com/influxdata/influxdb" - rev = "563e6c3d1a7a2790763c6289501095dbec19244e" - sha256 = "1siv31gp7ypjphxjfv91sxzpz2rxk1nn2aj17pgk0cz7c8m59ic7" - -["github.com/influxdata/influxdb1-client"] - sumVersion = "v0.0.0-20191209144304-8bf82d3c094d" - ["github.com/influxdata/influxdb1-client".fetch] - type = "git" - url = "https://github.com/influxdata/influxdb1-client" - rev = "8bf82d3c094dc06be9da8e5bf9d3589b6ea032ae" - sha256 = "0cjli7prxfxayx2grianbla5jr0dq28sazk8phbnh61ac5zaya4s" - -["github.com/influxdata/influxql"] - sumVersion = "v1.1.1-0.20200828144457-65d3ef77d385" - ["github.com/influxdata/influxql".fetch] - type = "git" - url = "https://github.com/influxdata/influxql" - rev = "65d3ef77d385b8be40abe6591f50d2321ef14d13" - sha256 = "1p7nmx31yp3cn2njwqpj1hqqlhalpyj9x91mpllvprrislzwf06v" - -["github.com/influxdata/line-protocol"] - sumVersion = "v0.0.0-20180522152040-32c6aa80de5e" - ["github.com/influxdata/line-protocol".fetch] - type = "git" - url = "https://github.com/influxdata/line-protocol" - rev = "32c6aa80de5eb09d190ad284a8214a531c6bce57" - sha256 = "0wvd6lplbvmz2lznvy4zz3fmxiqc43cgr4vppp1xi38j1iwq0349" - -["github.com/influxdata/promql/v2"] - sumVersion = "v2.12.0" - ["github.com/influxdata/promql/v2".fetch] - type = "git" - url = "https://github.com/influxdata/promql" - rev = "f6d0601df64bfbdeb85291c672cec96844027680" - sha256 = "0hpq5wkg8vsj8hfj057hcpbakn7rnx6d9mlc80v0nbr8qblxdhgp" - -["github.com/influxdata/roaring"] - sumVersion = "v0.4.13-0.20180809181101-fc520f41fab6" - ["github.com/influxdata/roaring".fetch] - type = "git" - url = "https://github.com/influxdata/roaring" - rev = "fc520f41fab6dcece280e8d4853d87a09a67f9e0" - sha256 = "0jr9r5q4s5bz4kbqndrlm5aikls4kqbl955qbsh6bpbmxdsamcsr" - -["github.com/influxdata/tdigest"] - sumVersion = "v0.0.0-20181121200506-bf2b5ad3c0a9" - ["github.com/influxdata/tdigest".fetch] - type = "git" - url = "https://github.com/influxdata/tdigest" - rev = "bf2b5ad3c0a925c44a0d2842c5d8182113cd248e" - sha256 = "0cf0hcm4g052qzq4n67vxl5qh7lvp13x23hndzwmazxzdaar8gh1" - -["github.com/influxdata/usage-client"] - sumVersion = "v0.0.0-20160829180054-6d3895376368" - ["github.com/influxdata/usage-client".fetch] - type = "git" - url = "https://github.com/influxdata/usage-client" - rev = "6d3895376368aa52a3a81d2a16e90f0f52371967" - sha256 = "0a5adnid42f9vpckgcpkj7v60fh147j7zlg1rhxcpq5vkw698ifl" - -["github.com/ipfs/go-cid"] - sumVersion = "v0.0.7" - ["github.com/ipfs/go-cid".fetch] - type = "git" - url = "https://github.com/ipfs/go-cid" - rev = "8b9ff3906e377143887f406253ba9cb2b17fdc34" - sha256 = "0s01q0scpzxlppk6xfa9yf5lkvzm5vdl9hzww6h04snwksxnhiqy" - -["github.com/ipfs/go-datastore"] - sumVersion = "v0.4.5" - ["github.com/ipfs/go-datastore".fetch] - type = "git" - url = "https://github.com/ipfs/go-datastore" - rev = "123d227a8d53b7e5d5c59c86b64efdeccb9dcc2f" - sha256 = "05wlb2s8xvhxpqm5p6brwmzyqvl25dvx0sb8lrl07d7057bxrfxj" - -["github.com/ipfs/go-detect-race"] - sumVersion = "v0.0.1" - ["github.com/ipfs/go-detect-race".fetch] - type = "git" - url = "https://github.com/ipfs/go-detect-race" - rev = "52daa73989bc95b2fa97d6c610adf62d04eb7822" - sha256 = "0rqb0q66d7z852j5mhlr025dz698c44w014g4mx587amr1rvwqna" - -["github.com/ipfs/go-ds-badger"] - sumVersion = "v0.2.3" - ["github.com/ipfs/go-ds-badger".fetch] - type = "git" - url = "https://github.com/ipfs/go-ds-badger" - rev = "adacbc25f4d03986029ed0a8bc79cc6bdfe8e05d" - sha256 = "09qdv2syk138d2rqm8wrj3w6m0j6b4dzw6ixc9sair2b1i9pl420" - -["github.com/ipfs/go-ds-leveldb"] - sumVersion = "v0.4.2" - ["github.com/ipfs/go-ds-leveldb".fetch] - type = "git" - url = "https://github.com/ipfs/go-ds-leveldb" - rev = "8e15c83822a3f95d32b3065e93f361429370fa6e" - sha256 = "0idwhpm9xw0qm5q7aqjjlzan2abph92n8cvc26c8fbjzzsfgw6iz" - -["github.com/ipfs/go-ipfs-delay"] - sumVersion = "v0.0.0-20181109222059-70721b86a9a8" - ["github.com/ipfs/go-ipfs-delay".fetch] - type = "git" - url = "https://github.com/ipfs/go-ipfs-delay" - rev = "70721b86a9a82e1fb77dbdfe9db3f10407fe2e87" - sha256 = "1jxpk0snsqw76il51l0z3lyr7w67m7ac0lb60cy59jvrk85j6lr2" - -["github.com/ipfs/go-ipfs-util"] - sumVersion = "v0.0.2" - ["github.com/ipfs/go-ipfs-util".fetch] - type = "git" - url = "https://github.com/ipfs/go-ipfs-util" - rev = "f4952d1c5a6a9431d6a4d5ea57c4818e6d199464" - sha256 = "1d7lc2cc2rpjsxfqv0x4sayk4w04cfqnwn708n04i0d6gsx21gpi" - -["github.com/ipfs/go-ipns"] - sumVersion = "v0.0.2" - ["github.com/ipfs/go-ipns".fetch] - type = "git" - url = "https://github.com/ipfs/go-ipns" - rev = "1ac4f05db7f99d7989aec3adbdae0055e041967c" - sha256 = "1a28wqr8nc196qyb7r381v0hncd6m3fcdif975vyph7pi95bvnv6" - -["github.com/ipfs/go-log"] - sumVersion = "v1.0.4" - ["github.com/ipfs/go-log".fetch] - type = "git" - url = "https://github.com/ipfs/go-log" - rev = "d51b60035b5ede7017d0a5101899ebf08c0bcf3d" - sha256 = "0ngadn9scngpwjpjx9hdsc4rqaj3bcbypv7dgwby1r29bjfnjl2q" - -["github.com/ipfs/go-log/v2"] - sumVersion = "v2.1.1" - ["github.com/ipfs/go-log/v2".fetch] - type = "git" - url = "https://github.com/ipfs/go-log" - rev = "9a8513887238baacd9b861518fa38be499e4b560" - sha256 = "0rlpgbi9f9bxbix9vy6l3q5jmmp24cy89y7cpqjcpxx4ypc8ddqg" - -["github.com/jackpal/gateway"] - sumVersion = "v1.0.5" - ["github.com/jackpal/gateway".fetch] - type = "git" - url = "https://github.com/jackpal/gateway" - rev = "cbcf4e3f3baee7952fc386c8b2534af4d267c875" - sha256 = "1ird5xmizj632l3dq24s2xgb8w1dn6v8xznlqz252gvngyr2gjl1" - -["github.com/jackpal/go-nat-pmp"] - sumVersion = "v1.0.2" - ["github.com/jackpal/go-nat-pmp".fetch] - type = "git" - url = "https://github.com/jackpal/go-nat-pmp" - rev = "059203efa1edd7130293a583541b8308e7c640c4" - sha256 = "1p2yrzfbkazc9nisr2iqjwzhb6q16zj6finyxxn2ikk7iiighl1g" - -["github.com/jbenet/go-cienv"] - sumVersion = "v0.1.0" - ["github.com/jbenet/go-cienv".fetch] - type = "git" - url = "https://github.com/jbenet/go-cienv" - rev = "856fd20ff669251745b22ee64eaa32e5763f0c3c" - sha256 = "1qyfjvr8n5chpb5zi6r9cf0danrwds3k5lbf7vp7ygcl6wnm0vmv" - -["github.com/jbenet/go-temp-err-catcher"] - sumVersion = "v0.1.0" - ["github.com/jbenet/go-temp-err-catcher".fetch] - type = "git" - url = "https://github.com/jbenet/go-temp-err-catcher" - rev = "fa11adda5e7cccb838a208007c9ea79dda63c0c0" - sha256 = "0n482jhh6jwq43jj21xkq8grqzx78hjh7f44p0q3n01zp1dsh97r" - -["github.com/jbenet/goprocess"] - sumVersion = "v0.1.4" - ["github.com/jbenet/goprocess".fetch] - type = "git" - url = "https://github.com/jbenet/goprocess" - rev = "23d20c20149e1f362afda26f4500cb9d6393f0ad" - sha256 = "1z4a5skx9kh2c727pc6zz0vhf9v8acd320s7z0f1kwy3y1nbdhjk" - -["github.com/jedisct1/go-minisign"] - sumVersion = "v0.0.0-20190909160543-45766022959e" - ["github.com/jedisct1/go-minisign".fetch] - type = "git" - url = "https://github.com/jedisct1/go-minisign" - rev = "45766022959ee057eee31300cdc5f45a8c51ea7f" - sha256 = "02rc52v29wyzias9aw4a7kxsfspf27an3kf0pb9pn4kp0br5dn6v" - -["github.com/jessevdk/go-flags"] - sumVersion = "v1.4.0" - ["github.com/jessevdk/go-flags".fetch] - type = "git" - url = "https://github.com/jessevdk/go-flags" - rev = "c6ca198ec95c841fdb89fc0de7496fed11ab854e" - sha256 = "0algnnigph27spgn655zm4723yfjxjjvlf4k14z9drj3682df25a" - -["github.com/jmespath/go-jmespath"] - sumVersion = "v0.4.0" - ["github.com/jmespath/go-jmespath".fetch] - type = "git" - url = "https://github.com/jmespath/go-jmespath" - rev = "3d4fd11601ddca248480565884e34e393313cd62" - sha256 = "18zyr9nlywmwp3wpzcjxrgq9s9d2mmc6zg6xhsna00m663nkyc3n" - -["github.com/jmespath/go-jmespath/internal/testify"] - sumVersion = "v1.5.1" - relPath = "internal/testify" - ["github.com/jmespath/go-jmespath/internal/testify".fetch] - type = "git" - url = "https://github.com/jmespath/go-jmespath" - rev = "ff168ca20786696708c0f3eb2cc29d7912467599" - sha256 = "0swpmim4gn023pkzxfg8adqilz7mfka8axlsjqsxk0d2r372z75m" - -["github.com/jmhodges/levigo"] - sumVersion = "v1.0.0" - ["github.com/jmhodges/levigo".fetch] - type = "git" - url = "https://github.com/jmhodges/levigo" - rev = "853d788c5c416eaaee5b044570784a96c7a26975" - sha256 = "1lhh413mmclnkwn2lk1crwzargam2cx5w7k6zj8pgasy62c78iy4" - -["github.com/jonboulle/clockwork"] - sumVersion = "v0.1.0" - ["github.com/jonboulle/clockwork".fetch] - type = "git" - url = "https://github.com/jonboulle/clockwork" - rev = "2eee05ed794112d45db504eb05aa693efd2b8b09" - sha256 = "1pqxhsdavbp1n5grgyx2j6ylvql2fzn2cvpsgkc8li69dil7sibl" - -["github.com/jpillora/backoff"] - sumVersion = "v1.0.0" - ["github.com/jpillora/backoff".fetch] - type = "git" - url = "https://github.com/jpillora/backoff" - rev = "d80867952dff4e2fbfb4280ded4ff94d67790457" - sha256 = "0x90fif28fjyl07lmj2cnxzlgdm632v7rkra7kq1mwjdqgmy04dv" - -["github.com/jrick/logrotate"] - sumVersion = "v1.0.0" - ["github.com/jrick/logrotate".fetch] - type = "git" - url = "https://github.com/jrick/logrotate" - rev = "a93b200c26cbae3bb09dd0dc2c7c7fe1468a034a" - sha256 = "0srl6figwjqpi3nbp7br8sxpmvh4v8lzbny1b4lar4ny0156p5nl" - -["github.com/json-iterator/go"] - sumVersion = "v1.1.10" - ["github.com/json-iterator/go".fetch] - type = "git" - url = "https://github.com/json-iterator/go" - rev = "a1ca0830781e007c66b225121d2cdb3a649421f6" - sha256 = "134zwc2pmf8nd90r8065wsl6vv1mwjl23bs70i08dzhw5h98drr4" - -["github.com/jstemmer/go-junit-report"] - sumVersion = "v0.9.1" - ["github.com/jstemmer/go-junit-report".fetch] - type = "git" - url = "https://github.com/jstemmer/go-junit-report" - rev = "cc1f095d5cc5eca2844f5c5ea7bb37f6b9bf6cac" - sha256 = "1knip80yir1cdsjlb3rzy0a4w3kl4ljpiciaz6hjzwqlfhnv7bkw" - -["github.com/jsternberg/zap-logfmt"] - sumVersion = "v1.0.0" - ["github.com/jsternberg/zap-logfmt".fetch] - type = "git" - url = "https://github.com/jsternberg/zap-logfmt" - rev = "ac4bd917e18a4548ce6e0e765b29a4e7f397b0b6" - sha256 = "0pqp2nsqvsq8kqc7l14340lrvl03715s12bag63kdbi25s8fcdkx" - -["github.com/jtolds/gls"] - sumVersion = "v4.20.0+incompatible" - ["github.com/jtolds/gls".fetch] - type = "git" - url = "https://github.com/jtolds/gls" - rev = "b4936e06046bbecbb94cae9c18127ebe510a2cb9" - sha256 = "1k7xd2q2ysv2xsh373qs801v6f359240kx0vrl0ydh7731lngvk6" - -["github.com/julienschmidt/httprouter"] - sumVersion = "v1.3.0" - ["github.com/julienschmidt/httprouter".fetch] - type = "git" - url = "https://github.com/julienschmidt/httprouter" - rev = "4eec211fa4e8df74ed978dc5681612131854144f" - sha256 = "1a6sy0ysqknsjssjh7qg1dqn21xmj9a36c57nrk7srfmab4ffmk1" - -["github.com/jung-kurt/gofpdf"] - sumVersion = "v1.0.3-0.20190309125859-24315acbbda5" - ["github.com/jung-kurt/gofpdf".fetch] - type = "git" - url = "https://github.com/jung-kurt/gofpdf" - rev = "24315acbbda57c4f6b80c8441fd108087dd7e305" - sha256 = "1hyb2vbyz8xwzhinqwlan0fxbdsgfjj975i9ca4bhfzzqqwq9pmk" - -["github.com/jwilder/encoding"] - sumVersion = "v0.0.0-20170811194829-b4e1701a28ef" - ["github.com/jwilder/encoding".fetch] - type = "git" - url = "https://github.com/jwilder/encoding" - rev = "b4e1701a28efcc637d9afcca7d38e495fe909a09" - sha256 = "195js5njz86k096p3ggglgpc7rw3801mpqzdfwfr3miflhnp7nwg" - -["github.com/kami-zh/go-capturer"] - sumVersion = "v0.0.0-20171211120116-e492ea43421d" - ["github.com/kami-zh/go-capturer".fetch] - type = "git" - url = "https://github.com/kami-zh/go-capturer" - rev = "e492ea43421da7381e5200a2e22753bfc31347c2" - sha256 = "05nrxgywff2s7gc284w8ldmplgn2ir1sqzfjhdzfl062rphcw8mn" - -["github.com/karalabe/usb"] - sumVersion = "v0.0.0-20190919080040-51dc0efba356" - ["github.com/karalabe/usb".fetch] - type = "git" - url = "https://github.com/karalabe/usb" - rev = "51dc0efba3568b598359930901dc6647e9b2c6a1" - sha256 = "0rshv04w5f60zv3l9f0zqyhimpwrbzm7dir8jbkdpnszicq1dx3m" - -["github.com/keybase/go-keychain"] - sumVersion = "v0.0.0-20190712205309-48d3d31d256d" - ["github.com/keybase/go-keychain".fetch] - type = "git" - url = "https://github.com/keybase/go-keychain" - rev = "48d3d31d256d9922a90b14c518c4b685f321fab2" - sha256 = "1vb4irkbj5s4v8n8dqngmg2w2fbnaz568z731yqryspvvmrki2a1" - -["github.com/kisielk/errcheck"] - sumVersion = "v1.2.0" - ["github.com/kisielk/errcheck".fetch] - type = "git" - url = "https://github.com/kisielk/errcheck" - rev = "e14f8d59a22d460d56c5ee92507cd94c78fbf274" - sha256 = "0am6g10ipdxw84byscm7shda654882wjcbinq5c4696m6mhi2qrd" - -["github.com/kisielk/gotool"] - sumVersion = "v1.0.0" - ["github.com/kisielk/gotool".fetch] - type = "git" - url = "https://github.com/kisielk/gotool" - rev = "80517062f582ea3340cd4baf70e86d539ae7d84d" - sha256 = "14af2pa0ssyp8bp2mvdw184s5wcysk6akil3wzxmr05wwy951iwn" - -["github.com/kkdai/bstream"] - sumVersion = "v1.0.0" - ["github.com/kkdai/bstream".fetch] - type = "git" - url = "https://github.com/kkdai/bstream" - rev = "a8d27c5aa8eedad6b6683069d64b96ece63696db" - sha256 = "02brc58hhkkfhgb4yxjv3wshq355w533q7d49qrlfkhk265qph7w" - -["github.com/klauspost/compress"] - sumVersion = "v1.4.0" - ["github.com/klauspost/compress".fetch] - type = "git" - url = "https://github.com/klauspost/compress" - rev = "b939724e787a27c0005cabe3f78e7ed7987ac74f" - sha256 = "1y7951q0ji894d111lqqbacq64cxyi2dxsni5sqi9488zsasgw8s" - -["github.com/klauspost/cpuid"] - sumVersion = "v0.0.0-20170728055534-ae7887de9fa5" - ["github.com/klauspost/cpuid".fetch] - type = "git" - url = "https://github.com/klauspost/cpuid" - rev = "ae7887de9fa5d2db4eaa8174a7eff2c1ac00f2da" - sha256 = "178apw89g8nsd7w6mbdylxn956h3iig6rbw3bkivp6lplhb5dvq4" - -["github.com/klauspost/crc32"] - sumVersion = "v0.0.0-20161016154125-cb6bfca970f6" - ["github.com/klauspost/crc32".fetch] - type = "git" - url = "https://github.com/klauspost/crc32" - rev = "cb6bfca970f6908083f26f39a79009d608efd5cd" - sha256 = "0q4yr4isgmph1yf1vq527lpmid7vqv56q7vxh3gkp5679fb90q6n" - -["github.com/klauspost/pgzip"] - sumVersion = "v1.0.2-0.20170402124221-0bf5dcad4ada" - ["github.com/klauspost/pgzip".fetch] - type = "git" - url = "https://github.com/klauspost/pgzip" - rev = "0bf5dcad4ada2814c3c00f996a982270bb81a506" - sha256 = "0dgp2iljvhibzxia1g3lsfg4bjmfh4kf0bfrmfi7sd49hwhrvk7s" - -["github.com/konsorten/go-windows-terminal-sequences"] - sumVersion = "v1.0.3" - ["github.com/konsorten/go-windows-terminal-sequences".fetch] - type = "git" - url = "https://github.com/konsorten/go-windows-terminal-sequences" - rev = "edb144dfd453055e1e49a3d8b410a660b5a87613" - sha256 = "1yrsd4s8vhjnxhwbigirymz89dn6qfjnhn28i33vvvdgf96j6ypl" - -["github.com/koron/go-ssdp"] - sumVersion = "v0.0.0-20191105050749-2e1c40ed0b5d" - ["github.com/koron/go-ssdp".fetch] - type = "git" - url = "https://github.com/koron/go-ssdp" - rev = "2e1c40ed0b5d1dca945828aeef493cc8d47efdf1" - sha256 = "0ja3mg2bdf6k30y0grlz6h7bi3w58gm3mpx4wdz94m1kl0qkf28k" - -["github.com/kr/fs"] - sumVersion = "v0.1.0" - ["github.com/kr/fs".fetch] - type = "git" - url = "https://github.com/kr/fs" - rev = "1455def202f6e05b95cc7bfc7e8ae67ae5141eba" - sha256 = "11zg176x9hr9q7fsk95r6q0wf214gg4czy02slax4x56n79g6a7q" - -["github.com/kr/logfmt"] - sumVersion = "v0.0.0-20140226030751-b84e30acd515" - ["github.com/kr/logfmt".fetch] - type = "git" - url = "https://github.com/kr/logfmt" - rev = "b84e30acd515aadc4b783ad4ff83aff3299bdfe0" - sha256 = "02ldzxgznrfdzvghfraslhgp19la1fczcbzh7wm2zdc6lmpd1qq9" - -["github.com/kr/pretty"] - sumVersion = "v0.2.0" - ["github.com/kr/pretty".fetch] - type = "git" - url = "https://github.com/kr/pretty" - rev = "4e0886370c3a67530192c6a238cff68f56c141b0" - sha256 = "1ywbfzz1h3a3qd8rpkiqwi1dm4w8ls9ijb4x1b7567grns9f0vnp" - -["github.com/kr/pty"] - sumVersion = "v1.1.1" - ["github.com/kr/pty".fetch] - type = "git" - url = "https://github.com/kr/pty" - rev = "282ce0e5322c82529687d609ee670fac7c7d917c" - sha256 = "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6" - -["github.com/kr/text"] - sumVersion = "v0.2.0" - ["github.com/kr/text".fetch] - type = "git" - url = "https://github.com/kr/text" - rev = "702c74938df48b97370179f33ce2107bd7ff3b3e" - sha256 = "0hf58ypz6rxsw6nx3i856whir9lvy4sdx946wbw1nfaf2rdmr9vx" - -["github.com/kylelemons/godebug"] - sumVersion = "v1.1.0" - ["github.com/kylelemons/godebug".fetch] - type = "git" - url = "https://github.com/kylelemons/godebug" - rev = "9ff306d4fbead574800b66369df5b6144732d58e" - sha256 = "0dkk3friykg8p6wgqryx6745ahhb9z1j740k7px9dac6v5xjp78c" - -["github.com/leanovate/gopter"] - sumVersion = "v0.2.9" - ["github.com/leanovate/gopter".fetch] - type = "git" - url = "https://github.com/leanovate/gopter" - rev = "46d01ab79c55eb28e34ffad30fe65e5591a1adf8" - sha256 = "1xyj9djc8nkq0wiz0689fwhh84hykmnlr2cjzk9xcghkvzbddlhr" - -["github.com/lib/pq"] - sumVersion = "v1.0.0" - ["github.com/lib/pq".fetch] - type = "git" - url = "https://github.com/lib/pq" - rev = "4ded0e9383f75c197b3a2aaa6d590ac52df6fd79" - sha256 = "1zqnnyczaf00xi6xh53vq758v5bdlf0iz7kf22l02cal4i6px47i" - -["github.com/libp2p/go-addr-util"] - sumVersion = "v0.0.2" - ["github.com/libp2p/go-addr-util".fetch] - type = "git" - url = "https://github.com/libp2p/go-addr-util" - rev = "60fd7d35e24b7852a523453adf4be276aa63c676" - sha256 = "18mgz6mvkj21s1jixa9cn10agf0vbpsxmh7crfsq7igwcw1p18b0" - -["github.com/libp2p/go-buffer-pool"] - sumVersion = "v0.0.2" - ["github.com/libp2p/go-buffer-pool".fetch] - type = "git" - url = "https://github.com/libp2p/go-buffer-pool" - rev = "c4a5988a1e475884367015e1a2d0bd5fa4c491f4" - sha256 = "01iwby4xq9znlfhcxxvqv03smllsv42j1w3vpqg9n307s3i0pj3m" - -["github.com/libp2p/go-cidranger"] - sumVersion = "v1.1.0" - ["github.com/libp2p/go-cidranger".fetch] - type = "git" - url = "https://github.com/libp2p/go-cidranger" - rev = "1dec7f87b45b32e24d3f59548ad61647de34586d" - sha256 = "05hzlk5hx7qna5znr3q1crr0qb7h8yrv1v96pj015dh0kbdkdaba" - -["github.com/libp2p/go-conn-security-multistream"] - sumVersion = "v0.2.0" - ["github.com/libp2p/go-conn-security-multistream".fetch] - type = "git" - url = "https://github.com/libp2p/go-conn-security-multistream" - rev = "ec479ebe7692a96fa730653184a97c176a3ab145" - sha256 = "1vg040km70p5g1wq95a8h3sm5mhp6g7wz7wrpv9j2rkrw5s4p8p7" - -["github.com/libp2p/go-eventbus"] - sumVersion = "v0.2.1" - ["github.com/libp2p/go-eventbus".fetch] - type = "git" - url = "https://github.com/libp2p/go-eventbus" - rev = "ccaa483f77eb4d0881e8aafecce91595784d36b6" - sha256 = "03r2a4f1fknj6az5ac2djk7avaznib3ccmdgbxqzvgv2nyzjid5m" - -["github.com/libp2p/go-flow-metrics"] - sumVersion = "v0.0.3" - ["github.com/libp2p/go-flow-metrics".fetch] - type = "git" - url = "https://github.com/libp2p/go-flow-metrics" - rev = "e5a6a4db89199d99b2a74b8da198277a826241d8" - sha256 = "17mk6rd3j0mj1k3l9yk6yvxrs06biwpqhhf5jzqpjdxf6p2hrc0w" - -["github.com/libp2p/go-libp2p"] - sumVersion = "v0.11.0" - ["github.com/libp2p/go-libp2p".fetch] - type = "git" - url = "https://github.com/libp2p/go-libp2p" - rev = "fb3179e617bdf049734f58aa8ced2bb42de7ea5d" - sha256 = "1jdh7mh47xdycf231wysvm5gl75n6dlydydf85iv2rpqbivv8cd8" - -["github.com/libp2p/go-libp2p-asn-util"] - sumVersion = "v0.0.0-20200825225859-85005c6cf052" - ["github.com/libp2p/go-libp2p-asn-util".fetch] - type = "git" - url = "https://github.com/libp2p/go-libp2p-asn-util" - rev = "85005c6cf052fb1f83918abcaab3257111b374bd" - sha256 = "0x71brj3rggws1c9va0zlkz0vp768nhh19lv8cdf5l417fgxhpx8" - -["github.com/libp2p/go-libp2p-autonat"] - sumVersion = "v0.3.2" - ["github.com/libp2p/go-libp2p-autonat".fetch] - type = "git" - url = "https://github.com/libp2p/go-libp2p-autonat" - rev = "9f8372103d5d6004b959d6a760a023ea6e82d983" - sha256 = "0g4mssdz2lf5k74ifzrk8x1dycryyddnvfyylz1zpvc17qzssfji" - -["github.com/libp2p/go-libp2p-blankhost"] - sumVersion = "v0.2.0" - ["github.com/libp2p/go-libp2p-blankhost".fetch] - type = "git" - url = "https://github.com/libp2p/go-libp2p-blankhost" - rev = "fd136a8bbe5528e72097ebad4470a34f35d30a62" - sha256 = "0lpnwsc5vsksk3r35hl5ngyfwa7hq828ryi9mrjxmpbpqg3pc49c" - -["github.com/libp2p/go-libp2p-circuit"] - sumVersion = "v0.3.1" - ["github.com/libp2p/go-libp2p-circuit".fetch] - type = "git" - url = "https://github.com/libp2p/go-libp2p-circuit" - rev = "b202d662a7754b4671ce364e0f0723ce651e5d8a" - sha256 = "0xs4nzwd9pww0gd9jma68ajsvhghm84183x1xwghdca4d593dhzh" - -["github.com/libp2p/go-libp2p-core"] - sumVersion = "v0.6.1" - ["github.com/libp2p/go-libp2p-core".fetch] - type = "git" - url = "https://github.com/libp2p/go-libp2p-core" - rev = "98f971425855d14dd69d563d11db1e5fa37cc9f3" - sha256 = "0x8hcd13jh3239vfppvwacv9szvqflqrdgws1pw516drgp6ii04q" - -["github.com/libp2p/go-libp2p-crypto"] - sumVersion = "v0.1.0" - ["github.com/libp2p/go-libp2p-crypto".fetch] - type = "git" - url = "https://github.com/libp2p/go-libp2p-crypto" - rev = "ddb6d72b5ad0ae81bf1ee77b628eac1d7237536a" - sha256 = "0w06vkp7pamczncr8lld339wvigcl97q34avkp3z10ki0m8nxnkg" - -["github.com/libp2p/go-libp2p-discovery"] - sumVersion = "v0.5.0" - ["github.com/libp2p/go-libp2p-discovery".fetch] - type = "git" - url = "https://github.com/libp2p/go-libp2p-discovery" - rev = "e2618ed10882add884ae4eb0697d6aa22fb27e96" - sha256 = "136yn7n2mfjy9y8m5a7b5cy3jx737309h8hd3660mj4dqqspqswq" - -["github.com/libp2p/go-libp2p-kad-dht"] - sumVersion = "v0.10.0" - ["github.com/libp2p/go-libp2p-kad-dht".fetch] - type = "git" - url = "https://github.com/libp2p/go-libp2p-kad-dht" - rev = "9304f5575ea4c578d1316c2cf695a06b65c88dbe" - sha256 = "13phh97z5l954437k28n9hnpfh2m0s38qkr2rac4i0yvfkrwcbnm" - -["github.com/libp2p/go-libp2p-kbucket"] - sumVersion = "v0.4.7" - ["github.com/libp2p/go-libp2p-kbucket".fetch] - type = "git" - url = "https://github.com/libp2p/go-libp2p-kbucket" - rev = "b90e3fed3255e131058ac337a19beb2ad85da43f" - sha256 = "01hgq8k1gc25yd56368699s7nibyb4qcp78liw177kb4r3qrknja" - -["github.com/libp2p/go-libp2p-loggables"] - sumVersion = "v0.1.0" - ["github.com/libp2p/go-libp2p-loggables".fetch] - type = "git" - url = "https://github.com/libp2p/go-libp2p-loggables" - rev = "814642b01726ff6f9302e8ce9eeeb00d25409520" - sha256 = "0l6qlfgfgm76mi26fz0z40hwr33fb08f52jy3nbx600k17k5b8g5" - -["github.com/libp2p/go-libp2p-mplex"] - sumVersion = "v0.2.4" - ["github.com/libp2p/go-libp2p-mplex".fetch] - type = "git" - url = "https://github.com/libp2p/go-libp2p-mplex" - rev = "880e035a22e54f9147224e65cceb432788083cd3" - sha256 = "094h3n9ig8dxfsi56jbghn39a07xxyidk0m12ygqii8w09q81l8v" - -["github.com/libp2p/go-libp2p-nat"] - sumVersion = "v0.0.6" - ["github.com/libp2p/go-libp2p-nat".fetch] - type = "git" - url = "https://github.com/libp2p/go-libp2p-nat" - rev = "ab0e3aeb64c9a5101422707874cdccb695b119bb" - sha256 = "1hmik1fn3zlv24id5yz8hy5cmbxks5412mnsniiypgpammwlzb2b" - -["github.com/libp2p/go-libp2p-netutil"] - sumVersion = "v0.1.0" - ["github.com/libp2p/go-libp2p-netutil".fetch] - type = "git" - url = "https://github.com/libp2p/go-libp2p-netutil" - rev = "cd42ce60b36206032242a27faa1121c08ae2829e" - sha256 = "0gqf39fz5q2dqx452c65i7j0621fmr58jlcd744zr99fz84f8z77" - -["github.com/libp2p/go-libp2p-noise"] - sumVersion = "v0.1.1" - ["github.com/libp2p/go-libp2p-noise".fetch] - type = "git" - url = "https://github.com/libp2p/go-libp2p-noise" - rev = "02dc2ad5c414fb32f7233932f343b3d8257fd05f" - sha256 = "1y5p5qnq06jd4pyck5p9fjl22as5vh4v6s74za7dv51wdv9jl9cm" - -["github.com/libp2p/go-libp2p-peer"] - sumVersion = "v0.2.0" - ["github.com/libp2p/go-libp2p-peer".fetch] - type = "git" - url = "https://github.com/libp2p/go-libp2p-peer" - rev = "62676d8fb785a8fc279878cbe8e03b878f005910" - sha256 = "1163d5gvwd0dli17afd0i93bd3x1gdpgq829rhyjqpqpg6rgpxrc" - -["github.com/libp2p/go-libp2p-peerstore"] - sumVersion = "v0.2.6" - ["github.com/libp2p/go-libp2p-peerstore".fetch] - type = "git" - url = "https://github.com/libp2p/go-libp2p-peerstore" - rev = "74ed1a99746340a2a19c1c6aebd7311f84ce6a95" - sha256 = "1v1dnf9m902ibri0rbx842v4sra3irb11sq0h58rjpnnfvkja6yg" - -["github.com/libp2p/go-libp2p-pnet"] - sumVersion = "v0.2.0" - ["github.com/libp2p/go-libp2p-pnet".fetch] - type = "git" - url = "https://github.com/libp2p/go-libp2p-pnet" - rev = "c4097eb170d1cd749dd6cff5d46a3bd1530cf979" - sha256 = "0c1ml4vqpbzmjg5s9b92mp8f5g8x1nhbwi857pb54cp3zs636g4z" - -["github.com/libp2p/go-libp2p-record"] - sumVersion = "v0.1.3" - ["github.com/libp2p/go-libp2p-record".fetch] - type = "git" - url = "https://github.com/libp2p/go-libp2p-record" - rev = "35352b00cca2d904198f6ea93e0804b78a5a8117" - sha256 = "0sv8fqwfs988xm6gcj6ycphwmp9ksbr20812kb7ia40w8s7238wq" - -["github.com/libp2p/go-libp2p-routing-helpers"] - sumVersion = "v0.2.3" - ["github.com/libp2p/go-libp2p-routing-helpers".fetch] - type = "git" - url = "https://github.com/libp2p/go-libp2p-routing-helpers" - rev = "68136fb01d513ebf736a22c23a21d7058928f932" - sha256 = "1y6ms0mn2cizqlkpv68d9k98im97jbz6308zgaxmm649m526lhgs" - -["github.com/libp2p/go-libp2p-secio"] - sumVersion = "v0.2.2" - ["github.com/libp2p/go-libp2p-secio".fetch] - type = "git" - url = "https://github.com/libp2p/go-libp2p-secio" - rev = "702833a55a53fb6cb0de3362f9d6d6ed5783c046" - sha256 = "1mzfsb3h6xrsmpknknsppal9mggxdr8053w9l2zlbrxw66gzw0s4" - -["github.com/libp2p/go-libp2p-swarm"] - sumVersion = "v0.2.8" - ["github.com/libp2p/go-libp2p-swarm".fetch] - type = "git" - url = "https://github.com/libp2p/go-libp2p-swarm" - rev = "58c167a7b0c3294d416342d781465214d514e70f" - sha256 = "1h3xrahf7n9vjprz36srikjhal2y7a4mcm8y2zpz2aw6py6pqd88" - -["github.com/libp2p/go-libp2p-testing"] - sumVersion = "v0.2.0" - ["github.com/libp2p/go-libp2p-testing".fetch] - type = "git" - url = "https://github.com/libp2p/go-libp2p-testing" - rev = "99f31e589fbbf7f9fb25aafed583a90e5a6dc8f5" - sha256 = "03r9b4bhmqkypc75cvjf0pfrly8akxwcnchin66l4sv32h89vk8z" - -["github.com/libp2p/go-libp2p-tls"] - sumVersion = "v0.1.3" - ["github.com/libp2p/go-libp2p-tls".fetch] - type = "git" - url = "https://github.com/libp2p/go-libp2p-tls" - rev = "702fd537463ac5a1ef209c0b64457da0d1251b3f" - sha256 = "0dcj0amk1qx3gnijfl0ca5ydwjf6wa9kj9s8frdjfbf8pyv92fb0" - -["github.com/libp2p/go-libp2p-transport-upgrader"] - sumVersion = "v0.3.0" - ["github.com/libp2p/go-libp2p-transport-upgrader".fetch] - type = "git" - url = "https://github.com/libp2p/go-libp2p-transport-upgrader" - rev = "0c577bb483255c5046677a49624fb45c862d616b" - sha256 = "1m2kv4gldm0cb3grqwq9jxpx31p5hasgmvpkqhldx5xjfz6qffnn" - -["github.com/libp2p/go-libp2p-yamux"] - sumVersion = "v0.2.8" - ["github.com/libp2p/go-libp2p-yamux".fetch] - type = "git" - url = "https://github.com/libp2p/go-libp2p-yamux" - rev = "46dc27136701fd9795054bbb547a5450492b4c1b" - sha256 = "0snrabrv2lc3m0bi9297ny3s76rszw74mkw6hsw2c27hjc42750g" - -["github.com/libp2p/go-maddr-filter"] - sumVersion = "v0.1.0" - ["github.com/libp2p/go-maddr-filter".fetch] - type = "git" - url = "https://github.com/libp2p/go-maddr-filter" - rev = "29ae22964ec36caf9476678993c708d608be83df" - sha256 = "1i1dq6knlgr1bhkrrmc53dvqcw5x8gdw3aj5blib6lk0xgf8fr7j" - -["github.com/libp2p/go-mplex"] - sumVersion = "v0.1.3" - ["github.com/libp2p/go-mplex".fetch] - type = "git" - url = "https://github.com/libp2p/go-mplex" - rev = "30712bb879f1c2821ff8bc1b707b3f7120de593b" - sha256 = "1lzbzm3aakyfkdp4llj48pkz70817yayb0piiq0wh2csic5jnrws" - -["github.com/libp2p/go-msgio"] - sumVersion = "v0.0.6" - ["github.com/libp2p/go-msgio".fetch] - type = "git" - url = "https://github.com/libp2p/go-msgio" - rev = "7083218d76fc1304c17bd92c8e001a300cf2c7d6" - sha256 = "05l905rglf97c39zw6hla4r45y7pq6svc2b8k9wkmw522qpbn0y0" - -["github.com/libp2p/go-nat"] - sumVersion = "v0.0.5" - ["github.com/libp2p/go-nat".fetch] - type = "git" - url = "https://github.com/libp2p/go-nat" - rev = "e0453a807747b76285439bf8f89f91e7c1d23ed5" - sha256 = "1saf6vh6ggkhpicx4v1pcwg1bpw3dw4f0shnnhyxdk1wlygv87ai" - -["github.com/libp2p/go-netroute"] - sumVersion = "v0.1.3" - ["github.com/libp2p/go-netroute".fetch] - type = "git" - url = "https://github.com/libp2p/go-netroute" - rev = "55bb74ebf809dc3157b65a5a07d8f6d488d97a80" - sha256 = "0n6zg5r9g1hbdlgq6mxpi10bfcc4mxfsxaz0r1g35hn0k96mbygh" - -["github.com/libp2p/go-openssl"] - sumVersion = "v0.0.7" - ["github.com/libp2p/go-openssl".fetch] - type = "git" - url = "https://github.com/libp2p/go-openssl" - rev = "d9b640282843752442a8f28637156e13b1abd3f4" - sha256 = "06zjflfb74zkiigqslkx2d4lmmsnhczcw9mk6xxiw3pkjbq2rs00" - -["github.com/libp2p/go-reuseport"] - sumVersion = "v0.0.2" - ["github.com/libp2p/go-reuseport".fetch] - type = "git" - url = "https://github.com/libp2p/go-reuseport" - rev = "db4166559a608cb2980679d164c6f296cef8c0fe" - sha256 = "051g1m19hdi76w9hsixpbvgzfq0nyp4kh16c24mqql8biqcjfalm" - -["github.com/libp2p/go-reuseport-transport"] - sumVersion = "v0.0.4" - ["github.com/libp2p/go-reuseport-transport".fetch] - type = "git" - url = "https://github.com/libp2p/go-reuseport-transport" - rev = "fb521c6497ccfa40a30d9dad517d3f1aa779d75a" - sha256 = "0dw4ci2313bgmw04ya5w8q50h6bzh6cdwdfcj0jvw5zsysmrlcy5" - -["github.com/libp2p/go-sockaddr"] - sumVersion = "v0.1.0" - ["github.com/libp2p/go-sockaddr".fetch] - type = "git" - url = "https://github.com/libp2p/go-sockaddr" - rev = "d0ced09a2826722f0e26d7255f35aaa69dfa80b5" - sha256 = "0v5fnjgjyx4121yxzc8vq6dxnl7qs294s7bvx7162361rywhjps5" - -["github.com/libp2p/go-stream-muxer"] - sumVersion = "v0.0.1" - ["github.com/libp2p/go-stream-muxer".fetch] - type = "git" - url = "https://github.com/libp2p/go-stream-muxer" - rev = "96b8d4dc6b2577782a7c6c33776c115e3d2eacf6" - sha256 = "1swqw77jn00a7cl3lb7x5wyybhv4mkqk36z407ihid44gds7djqh" - -["github.com/libp2p/go-stream-muxer-multistream"] - sumVersion = "v0.3.0" - ["github.com/libp2p/go-stream-muxer-multistream".fetch] - type = "git" - url = "https://github.com/libp2p/go-stream-muxer-multistream" - rev = "877e544f7149ba0831a1ae7b570db17ebd2861c4" - sha256 = "0rgkxxinzw10svgax795qj785zvqid1y5w1g91hc5jpg4d066ksz" - -["github.com/libp2p/go-tcp-transport"] - sumVersion = "v0.2.1" - ["github.com/libp2p/go-tcp-transport".fetch] - type = "git" - url = "https://github.com/libp2p/go-tcp-transport" - rev = "fdcfe866abc8cbe7016797bb11f425ccaa459459" - sha256 = "15klynb8z77mfykwzkpqx14d10hyzb6yy5rr6pc62dvms4jqqssh" - -["github.com/libp2p/go-ws-transport"] - sumVersion = "v0.3.1" - ["github.com/libp2p/go-ws-transport".fetch] - type = "git" - url = "https://github.com/libp2p/go-ws-transport" - rev = "2c77fd7a50d73f40efc38f82a64cb2d88862ea22" - sha256 = "1zlan4prskd190g4nc5fyhxm6v6fcncwq05kna79idwciwmgaqwy" - -["github.com/libp2p/go-yamux"] - sumVersion = "v1.3.8" - ["github.com/libp2p/go-yamux".fetch] - type = "git" - url = "https://github.com/libp2p/go-yamux" - rev = "c4f881b41f110b6afc98f7b2848b2fb6eeb09317" - sha256 = "1qz1764kxylyw1wvcn3qckh3xqlcm8ssc2zhibsivxywlayw5q0c" - -["github.com/lightstep/lightstep-tracer-common/golang/gogo"] - sumVersion = "v0.0.0-20190605223551-bc2310a04743" - relPath = "golang/gogo" - ["github.com/lightstep/lightstep-tracer-common/golang/gogo".fetch] - type = "git" - url = "https://github.com/lightstep/lightstep-tracer-common" - rev = "bc2310a0474352fa2616bdc0a27457b146b136b4" - sha256 = "0j7qycrva0ngf38br0jy9blzjb98ksdfi87b0sb2gnpmsp6sz4l8" - -["github.com/lightstep/lightstep-tracer-go"] - sumVersion = "v0.18.1" - ["github.com/lightstep/lightstep-tracer-go".fetch] - type = "git" - url = "https://github.com/lightstep/lightstep-tracer-go" - rev = "95891af43e111d60f0ae6adaa39c2abe8caad401" - sha256 = "0jfnsv7y11d247xysc61wp8xmgn33fdl17v6g0lxxnklbw41k91y" - -["github.com/ltcsuite/ltcd"] - sumVersion = "v0.20.1-beta.0.20201210074626-c807bfe31ef0" - ["github.com/ltcsuite/ltcd".fetch] - type = "git" - url = "https://github.com/ltcsuite/ltcd" - rev = "c807bfe31ef051f98103fe4eb4e9084742eed11c" - sha256 = "0mn9k2nzr1zbx39b3ld18h1xjz9rlzajwxgh4k2fvnlkfwvi7s34" - -["github.com/ltcsuite/ltcutil"] - sumVersion = "v1.0.2-beta" - ["github.com/ltcsuite/ltcutil".fetch] - type = "git" - url = "https://github.com/ltcsuite/ltcutil" - rev = "b11902d0cdac0b152b59fe015a1cbaadae459940" - sha256 = "0brzwi27v2crl34awg0a0qcvya8j74vg2l2gz8gwigjaqix3qb4s" - -["github.com/lyft/protoc-gen-validate"] - sumVersion = "v0.0.13" - ["github.com/lyft/protoc-gen-validate".fetch] - type = "git" - url = "https://github.com/lyft/protoc-gen-validate" - rev = "4349a359d42fdfee53b85dd5c89a2f169e1dc6b2" - sha256 = "06x2mb4qa766dgrcahjlp6fb7f8dinkfk1i8zy6ibfigcrlbqjr5" - -["github.com/magiconair/properties"] - sumVersion = "v1.8.4" - ["github.com/magiconair/properties".fetch] - type = "git" - url = "https://github.com/magiconair/properties" - rev = "0e5c09062c2daef666bd279e2d2d9f25f218f2be" - sha256 = "0q7d55z0v8y55dyy8nhgdnswf5zkgj3i87irbk294nvzhx01bnxd" - -["github.com/mailru/easyjson"] - sumVersion = "v0.0.0-20180823135443-60711f1a8329" - ["github.com/mailru/easyjson".fetch] - type = "git" - url = "https://github.com/mailru/easyjson" - rev = "60711f1a8329503b04e1c88535f419d0bb440bff" - sha256 = "0234jp6134wkihdpdwq1hvzqblgl5khc1wp6dyi2h0hgh88bhdk1" - -["github.com/mattn/go-colorable"] - sumVersion = "v0.1.1" - ["github.com/mattn/go-colorable".fetch] - type = "git" - url = "https://github.com/mattn/go-colorable" - rev = "3a70a971f94a22f2fa562ffcc7a0eb45f5daf045" - sha256 = "0l640974j804c1yyjfgyxqlsivz0yrzmbql4mhcw2azryigkp08p" - -["github.com/mattn/go-ieproxy"] - sumVersion = "v0.0.0-20190702010315-6dee0af9227d" - ["github.com/mattn/go-ieproxy".fetch] - type = "git" - url = "https://github.com/mattn/go-ieproxy" - rev = "6dee0af9227d0863f1508ce7937af3396d6605c1" - sha256 = "0kxxxi68wch3rf3iqggiv72fbf0g7s6g8wy7r34ir040j8b7k0ri" - -["github.com/mattn/go-isatty"] - sumVersion = "v0.0.12" - ["github.com/mattn/go-isatty".fetch] - type = "git" - url = "https://github.com/mattn/go-isatty" - rev = "7b513a986450394f7bbf1476909911b3aa3a55ce" - sha256 = "1dfsh27d52wmz0nmmzm2382pfrs2fcijvh6cgir7jbb4pnigr5w4" - -["github.com/mattn/go-runewidth"] - sumVersion = "v0.0.9" - ["github.com/mattn/go-runewidth".fetch] - type = "git" - url = "https://github.com/mattn/go-runewidth" - rev = "14e809f6d78fcf9f48ff9b70981472b64c05f754" - sha256 = "1mvlxcdwr0vwp8b2wqs6y7hk72y28sqh03dz5x0xkg48d4y9cplj" - -["github.com/mattn/go-sqlite3"] - sumVersion = "v1.11.0" - ["github.com/mattn/go-sqlite3".fetch] - type = "git" - url = "https://github.com/mattn/go-sqlite3" - rev = "b612a2feea6aa87c6d052d9086572551df06497e" - sha256 = "1lnrcvaij1v0fpz53j1l91c77x8gmrfnipnmw8ifd7pvhr1iskl3" - -["github.com/mattn/go-tty"] - sumVersion = "v0.0.0-20180907095812-13ff1204f104" - ["github.com/mattn/go-tty".fetch] - type = "git" - url = "https://github.com/mattn/go-tty" - rev = "13ff1204f104d52c3f7645ec027ecbcf9026429e" - sha256 = "1c9vzrq7r5skq0cz9alkix9n1cp6h7wybdwrg0f1vzvxj26qr7yq" - -["github.com/matttproud/golang_protobuf_extensions"] - sumVersion = "v1.0.1" - ["github.com/matttproud/golang_protobuf_extensions".fetch] - type = "git" - url = "https://github.com/matttproud/golang_protobuf_extensions" - rev = "c12348ce28de40eed0136aa2b644d0ee0650e56c" - sha256 = "1d0c1isd2lk9pnfq2nk0aih356j30k3h1gi2w0ixsivi5csl7jya" - -["github.com/mgutz/ansi"] - sumVersion = "v0.0.0-20170206155736-9520e82c474b" - ["github.com/mgutz/ansi".fetch] - type = "git" - url = "https://github.com/mgutz/ansi" - rev = "9520e82c474b0a04dd04f8a40959027271bab992" - sha256 = "00bz22314j26736w1f0q4jy9d9dfaml17vn890n5zqy3cmvmww1j" - -["github.com/miekg/dns"] - sumVersion = "v1.1.31" - ["github.com/miekg/dns".fetch] - type = "git" - url = "https://github.com/miekg/dns" - rev = "34cecfe1b489442934480cec58277b4b39b1a1cd" - sha256 = "1ix9rx3sjl3wv5mi7wn781dmja6blv5wsi4dgkis3rchj2dpaq21" - -["github.com/mimoo/StrobeGo"] - sumVersion = "v0.0.0-20181016162300-f8f6d4d2b643" - ["github.com/mimoo/StrobeGo".fetch] - type = "git" - url = "https://github.com/mimoo/StrobeGo" - rev = "f8f6d4d2b6435f46148e8a6dc2248939893f3ece" - sha256 = "1lgxh3p6aqfc049wn3kz1mj9prm4mqpa9m01p27ph8iw5ry5c7la" - -["github.com/minio/blake2b-simd"] - sumVersion = "v0.0.0-20160723061019-3f5f724cb5b1" - ["github.com/minio/blake2b-simd".fetch] - type = "git" - url = "https://github.com/minio/blake2b-simd" - rev = "3f5f724cb5b182a5c278d6d3d55b40e7f8c2efb4" - sha256 = "0b6jbnj62c0gmmfd4zdmh8xbg01p80f13yygir9xprqkzk6fikmd" - -["github.com/minio/highwayhash"] - sumVersion = "v1.0.1" - ["github.com/minio/highwayhash".fetch] - type = "git" - url = "https://github.com/minio/highwayhash" - rev = "86a2a969d04373bf05ca722517d30fb1c9a3e4f9" - sha256 = "0kj2hs82sphag0h25xvprvf2fz3zlinmlif89sk9jp8h518aiahf" - -["github.com/minio/sha256-simd"] - sumVersion = "v0.1.1" - ["github.com/minio/sha256-simd".fetch] - type = "git" - url = "https://github.com/minio/sha256-simd" - rev = "6de4475307716de15b286880ff321c9547086fdd" - sha256 = "1j0iqsckm97g4l79vd4mc7apbmkdar23jpzqpnpdhwpfd834j8lp" - -["github.com/mitchellh/cli"] - sumVersion = "v1.0.0" - ["github.com/mitchellh/cli".fetch] - type = "git" - url = "https://github.com/mitchellh/cli" - rev = "3d22a244be8aa6fb16ac24af0e195c08b7d973aa" - sha256 = "1i9kmr7rcf10d2hji8h4247hmc0nbairv7a0q51393aw2h1bnwg2" - -["github.com/mitchellh/go-homedir"] - sumVersion = "v1.1.0" - ["github.com/mitchellh/go-homedir".fetch] - type = "git" - url = "https://github.com/mitchellh/go-homedir" - rev = "af06845cf3004701891bf4fdb884bfe4920b3727" - sha256 = "0ydzkipf28hwj2bfxqmwlww47khyk6d152xax4bnyh60f4lq3nx1" - -["github.com/mitchellh/go-testing-interface"] - sumVersion = "v1.0.0" - ["github.com/mitchellh/go-testing-interface".fetch] - type = "git" - url = "https://github.com/mitchellh/go-testing-interface" - rev = "6d0b8010fcc857872e42fc6c931227569016843c" - sha256 = "1dl2js8di858bawg7dadlf1qjpkl2g3apziihjyf5imri3znyfpw" - -["github.com/mitchellh/gox"] - sumVersion = "v0.4.0" - ["github.com/mitchellh/gox".fetch] - type = "git" - url = "https://github.com/mitchellh/gox" - rev = "c9740af9c6574448fd48eb30a71f964014c7a837" - sha256 = "1q4fdkw904mrmh1q5z8pfd3r0gcn5dm776kldqawddy93iiwnp8r" - -["github.com/mitchellh/iochan"] - sumVersion = "v1.0.0" - ["github.com/mitchellh/iochan".fetch] - type = "git" - url = "https://github.com/mitchellh/iochan" - rev = "b6e3aadd28864e14dae41ff5c7261455b1242d24" - sha256 = "058n9bbf536f2nw3pbs7pysrg9cqvgkb28z2zf5wjyrzrknyk53g" - -["github.com/mitchellh/mapstructure"] - sumVersion = "v1.1.2" - ["github.com/mitchellh/mapstructure".fetch] - type = "git" - url = "https://github.com/mitchellh/mapstructure" - rev = "3536a929edddb9a5b34bd6861dc4a9647cb459fe" - sha256 = "03bpv28jz9zhn4947saqwi328ydj7f6g6pf1m2d4m5zdh5jlfkrr" - -["github.com/modern-go/concurrent"] - sumVersion = "v0.0.0-20180306012644-bacd9c7ef1dd" - ["github.com/modern-go/concurrent".fetch] - type = "git" - url = "https://github.com/modern-go/concurrent" - rev = "bacd9c7ef1dd9b15be4a9909b8ac7a4e313eec94" - sha256 = "0s0fxccsyb8icjmiym5k7prcqx36hvgdwl588y0491gi18k5i4zs" - -["github.com/modern-go/reflect2"] - sumVersion = "v1.0.1" - ["github.com/modern-go/reflect2".fetch] - type = "git" - url = "https://github.com/modern-go/reflect2" - rev = "94122c33edd36123c84d5368cfb2b69df93a0ec8" - sha256 = "06a3sablw53n1dqqbr2f53jyksbxdmmk8axaas4yvnhyfi55k4lf" - -["github.com/mr-tron/base58"] - sumVersion = "v1.2.0" - ["github.com/mr-tron/base58".fetch] - type = "git" - url = "https://github.com/mr-tron/base58" - rev = "cd0e5141f51dfcadb8311fd8e495eb11126a8010" - sha256 = "0ngxfpaa26p53lciz9vf2gn21l77kz8pcm2asxbv0l87g6xwqp7h" - -["github.com/mschoch/smat"] - sumVersion = "v0.0.0-20160514031455-90eadee771ae" - ["github.com/mschoch/smat".fetch] - type = "git" - url = "https://github.com/mschoch/smat" - rev = "90eadee771aeab36e8bf796039b8c261bebebe4f" - sha256 = "141saq6d4z3c7v3jw45zy4gn6wwjlyralqygjff1fzvz1gkvimk3" - -["github.com/mtibben/percent"] - sumVersion = "v0.2.1" - ["github.com/mtibben/percent".fetch] - type = "git" - url = "https://github.com/mtibben/percent" - rev = "07b18b68c1413ce9f8137a8cbd4509fac9e15f0c" - sha256 = "1iqivw8pigj259rj5yifibbvic70f9hb7k24a4sa967s4fj6agb6" - -["github.com/multiformats/go-base32"] - sumVersion = "v0.0.3" - ["github.com/multiformats/go-base32".fetch] - type = "git" - url = "https://github.com/multiformats/go-base32" - rev = "a9c2755c3d1672dbe6a7e4a5d182169fa30b6a8e" - sha256 = "1f4pjnqw4687p8l7vr1qaq6g6i9pcr80fc4pk2kpgrcwzpd1lprg" - -["github.com/multiformats/go-base36"] - sumVersion = "v0.1.0" - ["github.com/multiformats/go-base36".fetch] - type = "git" - url = "https://github.com/multiformats/go-base36" - rev = "dc4afa6ad3b0720f4a1b282776db2a59ca9c8be7" - sha256 = "1lqlcy0q9w1rsdsirbnqydvc7yyhssj6skdjk6qaax7bh6dijsj0" - -["github.com/multiformats/go-multiaddr"] - sumVersion = "v0.3.1" - ["github.com/multiformats/go-multiaddr".fetch] - type = "git" - url = "https://github.com/multiformats/go-multiaddr" - rev = "d18c05e0e1635f8941c93f266beecaedd4245b9f" - sha256 = "0nrky3dcafdjfwjrrk3m0sf3kyz4jxj7a50zlil36wc5flqvd9k8" - -["github.com/multiformats/go-multiaddr-dns"] - sumVersion = "v0.2.0" - ["github.com/multiformats/go-multiaddr-dns".fetch] - type = "git" - url = "https://github.com/multiformats/go-multiaddr-dns" - rev = "aeb5743691b968cfa3365c9da59ef872a3133c87" - sha256 = "0vw4m163lppjnw4qpvk1q9wdys1mi7nd71yraa1kcc4xd6g4llam" - -["github.com/multiformats/go-multiaddr-fmt"] - sumVersion = "v0.1.0" - ["github.com/multiformats/go-multiaddr-fmt".fetch] - type = "git" - url = "https://github.com/multiformats/go-multiaddr-fmt" - rev = "113ed87ed03cfff94f29fd95236be3ccd933fd36" - sha256 = "119qqrnhzcb9im428alssv2dz9rrj74hy0asd10bnfv2d5fd09nm" - -["github.com/multiformats/go-multiaddr-net"] - sumVersion = "v0.2.0" - ["github.com/multiformats/go-multiaddr-net".fetch] - type = "git" - url = "https://github.com/multiformats/go-multiaddr-net" - rev = "58864dc63bf0d82f78d1f64e78f913e839512ade" - sha256 = "13r89jgwsq8xwkb1ar198n2kly4lgmlc02dmwxj8dczch59249mp" - -["github.com/multiformats/go-multibase"] - sumVersion = "v0.0.3" - ["github.com/multiformats/go-multibase".fetch] - type = "git" - url = "https://github.com/multiformats/go-multibase" - rev = "e2260b5ff35e4a37375ca184662ae0b9b0a661be" - sha256 = "0n096k9y8gwq6ikwscksmnsrikfzf5hr4cfhxwy3gaya1wd0sf56" - -["github.com/multiformats/go-multihash"] - sumVersion = "v0.0.14" - ["github.com/multiformats/go-multihash".fetch] - type = "git" - url = "https://github.com/multiformats/go-multihash" - rev = "6f1ea18f1da5f7735ea31b5e2011da61c409e37f" - sha256 = "15k0c0jplh5a90r1a30hmkqs30bi1ga50r4851r95844gk5c0rhg" - -["github.com/multiformats/go-multistream"] - sumVersion = "v0.1.2" - ["github.com/multiformats/go-multistream".fetch] - type = "git" - url = "https://github.com/multiformats/go-multistream" - rev = "ff9dcd5c891b3ba194062358d52623047d85192f" - sha256 = "10g469p6ilmyvwpaqbm2vxq2mhqj64s2kb8sinlhd13vbclhw5yq" - -["github.com/multiformats/go-varint"] - sumVersion = "v0.0.6" - ["github.com/multiformats/go-varint".fetch] - type = "git" - url = "https://github.com/multiformats/go-varint" - rev = "a3ded45ab16ca9f2f2a516e68053ffa7ebd9bb0e" - sha256 = "00znw3byys6r9q66aswf8hkkbv7j14pkw3ajmq4gy1yj781klmj2" - -["github.com/mwitkow/go-conntrack"] - sumVersion = "v0.0.0-20190716064945-2f068394615f" - ["github.com/mwitkow/go-conntrack".fetch] - type = "git" - url = "https://github.com/mwitkow/go-conntrack" - rev = "2f068394615f73e460c2f3d2c158b0ad9321cadb" - sha256 = "0ymjmy12ks7smgwmrwsa5kf07d9w5kpk1dn650azlzr61b561aw7" - -["github.com/naoina/go-stringutil"] - sumVersion = "v0.1.0" - ["github.com/naoina/go-stringutil".fetch] - type = "git" - url = "https://github.com/naoina/go-stringutil" - rev = "6b638e95a32d0c1131db0e7fe83775cbea4a0d0b" - sha256 = "00831p1wn3rimybk1z8l30787kn1akv5jax5wx743nn76qcmkmc6" - -["github.com/naoina/toml"] - sumVersion = "v0.1.2-0.20170918210437-9fafd6967416" - ["github.com/naoina/toml".fetch] - type = "git" - url = "https://github.com/naoina/toml" - rev = "9fafd69674167c06933b1787ae235618431ce87f" - sha256 = "0mpvdnidgab48k7dfq1vaiz1wny8n29y7zxpipnp1zm8ibxpism0" - -["github.com/nats-io/jwt"] - sumVersion = "v0.3.2" - ["github.com/nats-io/jwt".fetch] - type = "git" - url = "https://github.com/nats-io/jwt" - rev = "0c3fc7aed8bb2534e7bfdf0968a75890402d48cd" - sha256 = "0n44ghpz6hnbd2i074ikrj72rd2vnxpg1g3nhv1ly1kr0832khx6" - -["github.com/nats-io/nats-server/v2"] - sumVersion = "v2.1.2" - ["github.com/nats-io/nats-server/v2".fetch] - type = "git" - url = "https://github.com/nats-io/nats-server" - rev = "679bedafd96f85ddfa56a4d5736517c18842047a" - sha256 = "1jxi6d0zbhisxprlynvqw3dl1lz4wwxiy9gnpaqrwx1yi3kvvg62" - -["github.com/nats-io/nats.go"] - sumVersion = "v1.9.1" - ["github.com/nats-io/nats.go".fetch] - type = "git" - url = "https://github.com/nats-io/nats.go" - rev = "6063d679d23ae5b3edb4030d5e89a6e30ea53bc6" - sha256 = "0mmbwri2k2c8q1w0fr0g5s81709lfr6wyarvaf3gibc7cig10pij" - -["github.com/nats-io/nkeys"] - sumVersion = "v0.1.3" - ["github.com/nats-io/nkeys".fetch] - type = "git" - url = "https://github.com/nats-io/nkeys" - rev = "f1930e19b436412202ab130a733187cc6f40ba7e" - sha256 = "1fip0bja471mavvp67bninpd24jviwpnh7w99kchyiy27lbxy4hp" - -["github.com/nats-io/nuid"] - sumVersion = "v1.0.1" - ["github.com/nats-io/nuid".fetch] - type = "git" - url = "https://github.com/nats-io/nuid" - rev = "4b96681fa6d28dd0ab5fe79bac63b3a493d9ee94" - sha256 = "11zbhg4kds5idsya04bwz4plj0mmiigypzppzih731ppbk2ms1zg" - -["github.com/niemeyer/pretty"] - sumVersion = "v0.0.0-20200227124842-a10e7caefd8e" - ["github.com/niemeyer/pretty".fetch] - type = "git" - url = "https://github.com/niemeyer/pretty" - rev = "a10e7caefd8e0d600cea437f5c3613aeb1553d56" - sha256 = "1jmazh4xzaa3v6g46hz60q2z7nmqs9l9cxdzmmscn3kbcs2znq4v" - -["github.com/nxadm/tail"] - sumVersion = "v1.4.4" - ["github.com/nxadm/tail".fetch] - type = "git" - url = "https://github.com/nxadm/tail" - rev = "327c577245448d8192115e77a76ea3d6aee88202" - sha256 = "1czmwqii0fc8v3ar5bwqpfanprkxg19waly405zlvcflzvj53wwc" - -["github.com/oklog/oklog"] - sumVersion = "v0.3.2" - ["github.com/oklog/oklog".fetch] - type = "git" - url = "https://github.com/oklog/oklog" - rev = "e3ad1c411c27b4bc18c5facb9331820d141a5a54" - sha256 = "1xnjxhgi0zm51skl533la50h133a245i57wqa3h7fr2lv2jqpzny" - -["github.com/oklog/run"] - sumVersion = "v1.0.0" - ["github.com/oklog/run".fetch] - type = "git" - url = "https://github.com/oklog/run" - rev = "4dadeb3030eda0273a12382bb2348ffc7c9d1a39" - sha256 = "1pbjza4claaj95fpqvvfrysvs10y7dm0pl6qr5lzh6qy1vnhmcgw" - -["github.com/oklog/ulid"] - sumVersion = "v1.3.1" - ["github.com/oklog/ulid".fetch] - type = "git" - url = "https://github.com/oklog/ulid" - rev = "02a8604050d8466dd915307496174adb9be4593a" - sha256 = "0hybwyid820n80axrk863k2py93hbqlq6hxhf84ppmz0qd0ys0gq" - -["github.com/olekukonko/tablewriter"] - sumVersion = "v0.0.5" - ["github.com/olekukonko/tablewriter".fetch] - type = "git" - url = "https://github.com/olekukonko/tablewriter" - rev = "c7d2a8a09b076b70918308a3cd95464b2ae3b5d8" - sha256 = "0zhnrih2px6jm8nxzkz8s7va3lj03bzwxim8wjba9zh7i78bp67z" - -["github.com/onsi/ginkgo"] - sumVersion = "v1.14.0" - ["github.com/onsi/ginkgo".fetch] - type = "git" - url = "https://github.com/onsi/ginkgo" - rev = "9c254cb251dc962dc20ca91d0279c870095cfcf9" - sha256 = "0nwvz0pqk2jqscq88fhppad4flrr8avkxfgbci4xklbar4g8i32v" - -["github.com/onsi/gomega"] - sumVersion = "v1.10.1" - ["github.com/onsi/gomega".fetch] - type = "git" - url = "https://github.com/onsi/gomega" - rev = "904ac6ab26e9a888bdff3467eea03b6122a1c027" - sha256 = "068mirdbwl9n9dqlvqr489h52wkd90cv1jvng4yp8kv83lhzk2dq" - -["github.com/op/go-logging"] - sumVersion = "v0.0.0-20160315200505-970db520ece7" - ["github.com/op/go-logging".fetch] - type = "git" - url = "https://github.com/op/go-logging" - rev = "970db520ece77730c7e4724c61121037378659d9" - sha256 = "1cpna2x5l071z1vrnk7zipdkka8dzwsjyx7m79xk0lr08rip0kcj" - -["github.com/opentracing-contrib/go-observer"] - sumVersion = "v0.0.0-20170622124052-a52f23424492" - ["github.com/opentracing-contrib/go-observer".fetch] - type = "git" - url = "https://github.com/opentracing-contrib/go-observer" - rev = "a52f2342449246d5bcc273e65cbdcfa5f7d6c63c" - sha256 = "1q7z458m2vh3bzml4x9vm2paffqn1jcgiydbisl0zg2asfniq7k3" - -["github.com/opentracing/basictracer-go"] - sumVersion = "v1.0.0" - ["github.com/opentracing/basictracer-go".fetch] - type = "git" - url = "https://github.com/opentracing/basictracer-go" - rev = "1b32af207119a14b1b231d451df3ed04a72efebf" - sha256 = "0hs969asib4yqj5k755zr0byz2iqvjbs6z1szcnr50q6fihigca0" - -["github.com/opentracing/opentracing-go"] - sumVersion = "v1.2.0" - ["github.com/opentracing/opentracing-go".fetch] - type = "git" - url = "https://github.com/opentracing/opentracing-go" - rev = "d34af3eaa63c4d08ab54863a4bdd0daa45212e12" - sha256 = "04rgdwl29kimp2wnm4dycnzp7941hvpj6wym85x23c6fclacm94h" - -["github.com/openzipkin-contrib/zipkin-go-opentracing"] - sumVersion = "v0.4.5" - ["github.com/openzipkin-contrib/zipkin-go-opentracing".fetch] - type = "git" - url = "https://github.com/openzipkin-contrib/zipkin-go-opentracing" - rev = "223664cff43dfd9f54659ff15dc4bd6e023d0c14" - sha256 = "0mdvx50mw17c926rhhkjg8z54v8h0jvnqahdlpij2kbxi3ncgr7q" - -["github.com/openzipkin/zipkin-go"] - sumVersion = "v0.2.2" - ["github.com/openzipkin/zipkin-go".fetch] - type = "git" - url = "https://github.com/openzipkin/zipkin-go" - rev = "c29478e51bfb2e9c93e0e9f5e015e5993a490399" - sha256 = "18c884anq0pkahmjwyhrdg247wyq33ccxp5k7fcq5gzh8g6dj92s" - -["github.com/otiai10/copy"] - sumVersion = "v1.4.2" - ["github.com/otiai10/copy".fetch] - type = "git" - url = "https://github.com/otiai10/copy" - rev = "bdad3b4eb1c7bdcfe4fdddf048ddcfd29367cf69" - sha256 = "1igbsp6cqv4x835a49qqnz9knbhabiwsnvmgnfclj4f49ljhgz5y" - -["github.com/otiai10/curr"] - sumVersion = "v1.0.0" - ["github.com/otiai10/curr".fetch] - type = "git" - url = "https://github.com/otiai10/curr" - rev = "88e2f2cffa0b5f13e90ee963a321bd1b2f715561" - sha256 = "0fpw20adq2wff7l4c87zaavj9jra4d64a8bbjixiiv3bbarim987" - -["github.com/otiai10/mint"] - sumVersion = "v1.3.2" - ["github.com/otiai10/mint".fetch] - type = "git" - url = "https://github.com/otiai10/mint" - rev = "3588d691480a831b1e78b776d3bccd9d5ce6461c" - sha256 = "0448nkhmp1ny64g2d7m5x8inz118zj03j6q0b97q3dszzs7hhan4" - -["github.com/otiai10/primes"] - sumVersion = "v0.0.0-20180210170552-f6d2a1ba97c4" - ["github.com/otiai10/primes".fetch] - type = "git" - url = "https://github.com/otiai10/primes" - rev = "f6d2a1ba97c49a781841997df0c8c3962c91b4c8" - sha256 = "186vzf6l4snxp4krw82wynfj1zpd2msqzlvavjsmn0y2a75c153z" - -["github.com/pact-foundation/pact-go"] - sumVersion = "v1.0.4" - ["github.com/pact-foundation/pact-go".fetch] - type = "git" - url = "https://github.com/pact-foundation/pact-go" - rev = "3ce08c8af46b7bc33a06efc9b8807c08806c8af2" - sha256 = "08mnyf1yb6zjqfzs1pdh44drv390lfilhh4vi4asnjk52gknqfn0" - -["github.com/pascaldekloe/goe"] - sumVersion = "v0.1.0" - ["github.com/pascaldekloe/goe".fetch] - type = "git" - url = "https://github.com/pascaldekloe/goe" - rev = "57f6aae5913c64c9bcae5dbdffd33365b5a7f138" - sha256 = "1dqd3mfb4z2vmv6pg6fhgvfc53vhndk24wcl9lj1rz02n6m279fq" - -["github.com/patrickmn/go-cache"] - sumVersion = "v2.1.0+incompatible" - ["github.com/patrickmn/go-cache".fetch] - type = "git" - url = "https://github.com/patrickmn/go-cache" - rev = "a3647f8e31d79543b2d0f0ae2fe5c379d72cedc0" - sha256 = "10020inkzrm931r4bixf8wqr9n39wcrb78vfyxmbvjavvw4zybgs" - -["github.com/paulbellamy/ratecounter"] - sumVersion = "v0.2.0" - ["github.com/paulbellamy/ratecounter".fetch] - type = "git" - url = "https://github.com/paulbellamy/ratecounter" - rev = "524851a93235ac051e3540563ed7909357fe24ab" - sha256 = "0z4c61ac6v8mpnr9z37d91h1cf8v9psja5jfdxmsf69r1b7qr4f9" - -["github.com/pborman/uuid"] - sumVersion = "v1.2.0" - ["github.com/pborman/uuid".fetch] - type = "git" - url = "https://github.com/pborman/uuid" - rev = "8b1b92947f46224e3b97bb1a3a5b0382be00d31e" - sha256 = "0f146yjqwx2mr110kl8scjhqd08hys7vr5z0d0a3lskb6yy22gfg" - -["github.com/pelletier/go-toml"] - sumVersion = "v1.8.0" - ["github.com/pelletier/go-toml".fetch] - type = "git" - url = "https://github.com/pelletier/go-toml" - rev = "16c9a8bdc086a2130a88eff98df4088e4c359bb2" - sha256 = "0fxmjm85c9h43lvqz71wr93fcc63bhj82nwby80222xx8ja63g7y" - -["github.com/performancecopilot/speed"] - sumVersion = "v3.0.0+incompatible" - ["github.com/performancecopilot/speed".fetch] - type = "git" - url = "https://github.com/performancecopilot/speed" - rev = "839069a3ed70162d3bcefb9891c8ca852d877c1c" - sha256 = "1r0l6i80xkx9dcysa7ajvs5ypqkw2k0422k0hbz28fizaq9d8y0m" - -["github.com/peterh/liner"] - sumVersion = "v1.1.1-0.20190123174540-a2c9a5303de7" - ["github.com/peterh/liner".fetch] - type = "git" - url = "https://github.com/peterh/liner" - rev = "a2c9a5303de792c7581a3b80a8f10258319bb20e" - sha256 = "1cxpr92adcyv4bimswkfg3cmpmk71zq9gpyckhc64j2p4r4mb8zr" - -["github.com/petermattis/goid"] - sumVersion = "v0.0.0-20180202154549-b0b1615b78e5" - ["github.com/petermattis/goid".fetch] - type = "git" - url = "https://github.com/petermattis/goid" - rev = "b0b1615b78e5ee59739545bb38426383b2cda4c9" - sha256 = "0ghfxn045r0bbn2vszw897lxzmhnm4k59aypjvpxl0pbzsw9ab2c" - -["github.com/philhofer/fwd"] - sumVersion = "v1.0.0" - ["github.com/philhofer/fwd".fetch] - type = "git" - url = "https://github.com/philhofer/fwd" - rev = "bb6d471dc95d4fe11e432687f8b70ff496cf3136" - sha256 = "1pg84khadh79v42y8sjsdgfb54vw2kzv7hpapxkifgj0yvcp30g2" - -["github.com/pierrec/lz4"] - sumVersion = "v2.0.5+incompatible" - ["github.com/pierrec/lz4".fetch] - type = "git" - url = "https://github.com/pierrec/lz4" - rev = "ea731401f5c95a8ba30f15787e5e0fb77c60c66b" - sha256 = "0y5rh7z01zycd59nnjpkqq0ydyjmcg9j1xw15q1i600l9j9g617p" - -["github.com/pkg/errors"] - sumVersion = "v0.9.1" - ["github.com/pkg/errors".fetch] - type = "git" - url = "https://github.com/pkg/errors" - rev = "614d223910a179a466c1767a985424175c39b465" - sha256 = "1761pybhc2kqr6v5fm8faj08x9bql8427yqg6vnfv6nhrasx1mwq" - -["github.com/pkg/profile"] - sumVersion = "v1.2.1" - ["github.com/pkg/profile".fetch] - type = "git" - url = "https://github.com/pkg/profile" - rev = "5b67d428864e92711fcbd2f8629456121a56d91f" - sha256 = "0blqmvgqvdbqmh3fp9pfdxc9w1qfshrr0zy9whj0sn372bw64qnr" - -["github.com/pkg/sftp"] - sumVersion = "v1.10.1" - ["github.com/pkg/sftp".fetch] - type = "git" - url = "https://github.com/pkg/sftp" - rev = "3edd153f213d8d4191a0ee4577c61cca19436632" - sha256 = "0iw6lijdljwh5xw5hsy0b578cr52h6vvm7hbnzlrvciwhh4sfhhp" - -["github.com/pkg/term"] - sumVersion = "v0.0.0-20180730021639-bffc007b7fd5" - ["github.com/pkg/term".fetch] - type = "git" - url = "https://github.com/pkg/term" - rev = "bffc007b7fd5a70e20e28f5b7649bb84671ef436" - sha256 = "0c9xnx7dyw7j890nm9av5fjpqjb129z7vbg3lw554vwnckc84x54" - -["github.com/pmezard/go-difflib"] - sumVersion = "v1.0.0" - ["github.com/pmezard/go-difflib".fetch] - type = "git" - url = "https://github.com/pmezard/go-difflib" - rev = "792786c7400a136282c1664665ae0a8db921c6c2" - sha256 = "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw" - -["github.com/posener/complete"] - sumVersion = "v1.1.1" - ["github.com/posener/complete".fetch] - type = "git" - url = "https://github.com/posener/complete" - rev = "98eb9847f27ba2008d380a32c98be474dea55bdf" - sha256 = "1nbdiybjizbaxbf5q0xwbq0cjqw4bl6jggvsjzrpif0w86fcjda2" - -["github.com/prometheus/client_golang"] - sumVersion = "v1.8.0" - ["github.com/prometheus/client_golang".fetch] - type = "git" - url = "https://github.com/prometheus/client_golang" - rev = "47cfdc9bb8ceaf18b12a4b7ba778b06e12d1a97a" - sha256 = "0hdfjfn49782zmqzc61jfrp4bz9gj33hrxivj9ylqh8b0cws0k1w" - -["github.com/prometheus/client_model"] - sumVersion = "v0.2.0" - ["github.com/prometheus/client_model".fetch] - type = "git" - url = "https://github.com/prometheus/client_model" - rev = "7bc5445566f0fe75b15de23e6b93886e982d7bf9" - sha256 = "0jffnz94d6ff39fr96b5w8i8yk26pwnrfggzz8jhi8k0yihg2c9d" - -["github.com/prometheus/common"] - sumVersion = "v0.15.0" - ["github.com/prometheus/common".fetch] - type = "git" - url = "https://github.com/prometheus/common" - rev = "20c99e7aa07352b599bd0517cd5ca945f4af0407" - sha256 = "1hxdvj1w6gkzca3sfca3vv4kpkq210j4n2dhqj3w9wa64clxkdyq" - -["github.com/prometheus/procfs"] - sumVersion = "v0.2.0" - ["github.com/prometheus/procfs".fetch] - type = "git" - url = "https://github.com/prometheus/procfs" - rev = "9dece15c53cd5e9fbfbd72d5108adcf526a3f486" - sha256 = "0rkpyq1grk3qyfahnfry5qkxjg5qb10yh1l8cvm8b79nqsmdyjbm" - -["github.com/prometheus/tsdb"] - sumVersion = "v0.7.1" - ["github.com/prometheus/tsdb".fetch] - type = "git" - url = "https://github.com/prometheus/tsdb" - rev = "c20450564cc42983bf923c13f3fda42de709ac13" - sha256 = "1c1da8i5byvhh4fp3vqjfb65aaksjskn3ggb8wg9hcfzjrhgpz04" - -["github.com/rakyll/statik"] - sumVersion = "v0.1.7" - ["github.com/rakyll/statik".fetch] - type = "git" - url = "https://github.com/rakyll/statik" - rev = "46bd79c4540341fe472fe71dd2ce0ccd4e635450" - sha256 = "0y0kbzma55vmyqhyrw9ssgvxn6nw7d0zg72a7nz8vp1zly4hs6va" - -["github.com/rcrowley/go-metrics"] - sumVersion = "v0.0.0-20200313005456-10cdbea86bc0" - ["github.com/rcrowley/go-metrics".fetch] - type = "git" - url = "https://github.com/rcrowley/go-metrics" - rev = "10cdbea86bc0b922507ce91d43f4f78a5bea2e8f" - sha256 = "157rfn5kf1mdn65gay38zpv6zam3sfa5a3zkx9wxk77y7w3kam19" - -["github.com/regen-network/cosmos-proto"] - sumVersion = "v0.3.1" - ["github.com/regen-network/cosmos-proto".fetch] - type = "git" - url = "https://github.com/regen-network/cosmos-proto" - rev = "f793b6157c2cfb8c1c797100e1918b2d1eb40615" - sha256 = "05sk9jhk4qz5m4vkj0wr0swhvq9niz7v7bvpxh063vz0y6mmpj05" - -["github.com/retailnext/hllpp"] - sumVersion = "v1.0.1-0.20180308014038-101a6d2f8b52" - ["github.com/retailnext/hllpp".fetch] - type = "git" - url = "https://github.com/retailnext/hllpp" - rev = "101a6d2f8b52abfc409ac188958e7e7be0116331" - sha256 = "1dyyjyrscd3d22jhh2pbn67c6nzva0v069215sjjmj313k1xzmj3" - -["github.com/rjeczalik/notify"] - sumVersion = "v0.9.2" - ["github.com/rjeczalik/notify".fetch] - type = "git" - url = "https://github.com/rjeczalik/notify" - rev = "69d839f37b13a8cb7a78366f7633a4071cb43be7" - sha256 = "0pq191pvd4icp84sg0513pf5v7xm4nmldaagjd4p8ws75l656grw" - -["github.com/rogpeppe/fastuuid"] - sumVersion = "v1.2.0" - ["github.com/rogpeppe/fastuuid".fetch] - type = "git" - url = "https://github.com/rogpeppe/fastuuid" - rev = "10c3923834d38e951ae8f627bfec2dc632c5b6cb" - sha256 = "028acdg63zkxpjz3l639nlhki2l0canr2v5jglrmwa1wpjqcfff8" - -["github.com/rogpeppe/go-internal"] - sumVersion = "v1.3.0" - ["github.com/rogpeppe/go-internal".fetch] - type = "git" - url = "https://github.com/rogpeppe/go-internal" - rev = "438578804ca6f31be148c27683afc419ce47c06e" - sha256 = "0mcdh1licgnnahwml9y2iq6xy5x9xmjw5frcnds2s3wpjyqrl216" - -["github.com/rs/cors"] - sumVersion = "v1.7.0" - ["github.com/rs/cors".fetch] - type = "git" - url = "https://github.com/rs/cors" - rev = "db0fe48135e83b5812a5a31be0eea66984b1b521" - sha256 = "1abz6jxp7bhcwwsgcz9ajkijspkc46s0chrhqspy4czskmmazygi" - -["github.com/rs/xid"] - sumVersion = "v1.2.1" - ["github.com/rs/xid".fetch] - type = "git" - url = "https://github.com/rs/xid" - rev = "15d26544def341f036c5f8dca987a4cbe575032c" - sha256 = "1vgw1dikqw273awcci6pzifs7shkl5ah4l88j1zjbnpgbiwzlx9j" - -["github.com/rs/zerolog"] - sumVersion = "v1.20.0" - ["github.com/rs/zerolog".fetch] - type = "git" - url = "https://github.com/rs/zerolog" - rev = "72acd6cfe8bbbf5c52bfc805a3889c6941499c95" - sha256 = "1g62d8pca2sg0k1qjqcppv7n68wjw2iv04x9vwswlnphg6caf6wy" - -["github.com/russross/blackfriday"] - sumVersion = "v1.5.2" - ["github.com/russross/blackfriday".fetch] - type = "git" - url = "https://github.com/russross/blackfriday" - rev = "05f3235734ad95d0016f6a23902f06461fcf567a" - sha256 = "0jzbfzcywqcrnym4gxlz6nphmm1grg6wsl4f0r9x384rn83wkj7c" - -["github.com/russross/blackfriday/v2"] - sumVersion = "v2.0.1" - ["github.com/russross/blackfriday/v2".fetch] - type = "git" - url = "https://github.com/russross/blackfriday" - rev = "d3b5b032dc8e8927d31a5071b56e14c89f045135" - sha256 = "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j" - -["github.com/ryanuber/columnize"] - sumVersion = "v0.0.0-20160712163229-9b3edd62028f" - ["github.com/ryanuber/columnize".fetch] - type = "git" - url = "https://github.com/ryanuber/columnize" - rev = "9b3edd62028f107d7cabb19353292afd29311a4e" - sha256 = "1ya1idkbb0a9fjlhkcnh5a9yvpwzwfmbyg7d56lpplwr9rqi1da4" - -["github.com/samuel/go-zookeeper"] - sumVersion = "v0.0.0-20190923202752-2cc03de413da" - ["github.com/samuel/go-zookeeper".fetch] - type = "git" - url = "https://github.com/samuel/go-zookeeper" - rev = "2cc03de413da42869e2db7ce7965d3e978d917eb" - sha256 = "11z2r73q6qk9xy3mzkhdxd7cbfqsdr0105d5m03q4r47fki46hgx" - -["github.com/sasha-s/go-deadlock"] - sumVersion = "v0.2.1-0.20190427202633-1595213edefa" - ["github.com/sasha-s/go-deadlock".fetch] - type = "git" - url = "https://github.com/sasha-s/go-deadlock" - rev = "1595213edefa28ca5047b00340c63557f9c051d0" - sha256 = "06h5g16zlfnw9wvgaqp7jfav3n3pvli6asfcx1hv44sl601wnwk0" - -["github.com/sean-/seed"] - sumVersion = "v0.0.0-20170313163322-e2103e2c3529" - ["github.com/sean-/seed".fetch] - type = "git" - url = "https://github.com/sean-/seed" - rev = "e2103e2c35297fb7e17febb81e49b312087a2372" - sha256 = "0glir8jxi1w7aga2jwdb63pp1h8q4whknili7xixsqzwyy716125" - -["github.com/segmentio/kafka-go"] - sumVersion = "v0.2.0" - ["github.com/segmentio/kafka-go".fetch] - type = "git" - url = "https://github.com/segmentio/kafka-go" - rev = "c6db9435477f3cb658e2dd0fa93e02118c870251" - sha256 = "17zdj0i429a0wmwj8rm4j0hmxsv8kbql67s5iv78hac6rcys7bj2" - -["github.com/sergi/go-diff"] - sumVersion = "v1.0.0" - ["github.com/sergi/go-diff".fetch] - type = "git" - url = "https://github.com/sergi/go-diff" - rev = "1744e2970ca51c86172c8190fadad617561ed6e7" - sha256 = "0swiazj8wphs2zmk1qgq75xza6m19snif94h2m6fi8dqkwqdl7c7" - -["github.com/shirou/gopsutil"] - sumVersion = "v3.21.4-0.20210419000835-c7a38de76ee5+incompatible" - ["github.com/shirou/gopsutil".fetch] - type = "git" - url = "https://github.com/shirou/gopsutil" - rev = "c7a38de76ee583adf3f4aa276d834e2e753be321" - sha256 = "0x9hwcjnp68idawy1w72cl37j2cdqg6pp058d6vbr57ygr689iq2" - -["github.com/shurcooL/sanitized_anchor_name"] - sumVersion = "v1.0.0" - ["github.com/shurcooL/sanitized_anchor_name".fetch] - type = "git" - url = "https://github.com/shurcooL/sanitized_anchor_name" - rev = "7bfe4c7ecddb3666a94b053b422cdd8f5aaa3615" - sha256 = "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f" - -["github.com/sirupsen/logrus"] - sumVersion = "v1.6.0" - ["github.com/sirupsen/logrus".fetch] - type = "git" - url = "https://github.com/sirupsen/logrus" - rev = "60c74ad9be0d874af0ab0daef6ab07c5c5911f0d" - sha256 = "1zf9is1yxxnna0d1pyag2m9ziy3l27zb2j92p9msm1gx5jjrvzzj" - -["github.com/smartystreets/assertions"] - sumVersion = "v0.0.0-20180927180507-b2de0cb4f26d" - ["github.com/smartystreets/assertions".fetch] - type = "git" - url = "https://github.com/smartystreets/assertions" - rev = "b2de0cb4f26d0705483a2f495d89896d0b808573" - sha256 = "1i7ldgavgl35c7gk25p7bvdr282ckng090zr4ch9mk1705akx09y" - -["github.com/smartystreets/goconvey"] - sumVersion = "v1.6.4" - ["github.com/smartystreets/goconvey".fetch] - type = "git" - url = "https://github.com/smartystreets/goconvey" - rev = "505e419363375c0dc132d3ac02632a4ee32199ca" - sha256 = "07zjxwszayal88z1j2bwnqrsa32vg8l4nivks5yfr9j8xfsw7n6m" - -["github.com/smola/gocompat"] - sumVersion = "v0.2.0" - ["github.com/smola/gocompat".fetch] - type = "git" - url = "https://github.com/smola/gocompat" - rev = "4e843fb0ee17f9eea091c0a11413696c058c30f5" - sha256 = "0wnw1076bjd3yb9pb129wxa04n5gxmdl2i8z4w8im6dj6h63sn1v" - -["github.com/snikch/goodman"] - sumVersion = "v0.0.0-20171125024755-10e37e294daa" - ["github.com/snikch/goodman".fetch] - type = "git" - url = "https://github.com/snikch/goodman" - rev = "10e37e294daa3c9a90abded60ff9924bafab3888" - sha256 = "0n6m17lmlfsynd7ja3s3w7pgpi7zdyakqbg4ahzdq9918fwddqmp" - -["github.com/soheilhy/cmux"] - sumVersion = "v0.1.4" - ["github.com/soheilhy/cmux".fetch] - type = "git" - url = "https://github.com/soheilhy/cmux" - rev = "e09e9389d85d8492d313d73d1469c029e710623f" - sha256 = "1f736g68d9vwlyfb6g0fxkr0r875369xafk30cz8kaq5niaqwv0h" - -["github.com/sony/gobreaker"] - sumVersion = "v0.4.1" - ["github.com/sony/gobreaker".fetch] - type = "git" - url = "https://github.com/sony/gobreaker" - rev = "21dbfda1fc5e89b91bd0c835a91c31fe4d461e88" - sha256 = "0iarblm3w2d0p997jsw9bkznfj0wa8d586nh37ii5gnqy41va700" - -["github.com/spacemonkeygo/openssl"] - sumVersion = "v0.0.0-20181017203307-c2dcc5cca94a" - ["github.com/spacemonkeygo/openssl".fetch] - type = "git" - url = "https://github.com/spacemonkeygo/openssl" - rev = "c2dcc5cca94ac8f7f3f0c20e20050d4cce9d9730" - sha256 = "016lhnvp4dajnhdylmngrlrqzc1j9bwsrg7s2p2cyq96yqyhlcjb" - -["github.com/spacemonkeygo/spacelog"] - sumVersion = "v0.0.0-20180420211403-2296661a0572" - ["github.com/spacemonkeygo/spacelog".fetch] - type = "git" - url = "https://github.com/spacemonkeygo/spacelog" - rev = "2296661a0572a51438413369004fa931c2641923" - sha256 = "0i3crkfw4795272qwd5x30v3zpqdy9vb57309yhi38jsm0y83byy" - -["github.com/spaolacci/murmur3"] - sumVersion = "v1.1.0" - ["github.com/spaolacci/murmur3".fetch] - type = "git" - url = "https://github.com/spaolacci/murmur3" - rev = "f09979ecbc725b9e6d41a297405f65e7e8804acc" - sha256 = "1lv3zyz3jy2d76bhvvs8svygx66606iygdvwy5cwc0p5z8yghq25" - -["github.com/spf13/afero"] - sumVersion = "v1.6.0" - ["github.com/spf13/afero".fetch] - type = "git" - url = "https://github.com/spf13/afero" - rev = "bc94f58beda5dbff6f74599fcb1f1717c5b1c111" - sha256 = "0yi8p0yxiidpcg4cagxg2iyqcaapsng89rak4qyxmgails2fqg37" - -["github.com/spf13/cast"] - sumVersion = "v1.3.1" - ["github.com/spf13/cast".fetch] - type = "git" - url = "https://github.com/spf13/cast" - rev = "1ffadf551085444af981432dd0f6d1160c11ec64" - sha256 = "0lb84788glr0qzrq2ifi36rgvp96qrgywvxrr3ggq5hrbr38hgn1" - -["github.com/spf13/cobra"] - sumVersion = "v1.1.1" - ["github.com/spf13/cobra".fetch] - type = "git" - url = "https://github.com/spf13/cobra" - rev = "86f8bfd7fef868a174e1b606783bd7f5c82ddf8f" - sha256 = "0qx2wm34sm92amxackxl1vlwxlhvrpcwr1h474601szb1c49mlk1" - -["github.com/spf13/jwalterweatherman"] - sumVersion = "v1.1.0" - ["github.com/spf13/jwalterweatherman".fetch] - type = "git" - url = "https://github.com/spf13/jwalterweatherman" - rev = "94f6ae3ed3bceceafa716478c5fbf8d29ca601a1" - sha256 = "1ywmkwci5zyd88ijym6f30fj5c0k2yayxarkmnazf5ybljv50q7b" - -["github.com/spf13/pflag"] - sumVersion = "v1.0.5" - ["github.com/spf13/pflag".fetch] - type = "git" - url = "https://github.com/spf13/pflag" - rev = "2e9d26c8c37aae03e3f9d4e90b7116f5accb7cab" - sha256 = "0gpmacngd0gpslnbkzi263f5ishigzgh6pbdv9hp092rnjl4nd31" - -["github.com/spf13/viper"] - sumVersion = "v1.7.1" - ["github.com/spf13/viper".fetch] - type = "git" - url = "https://github.com/spf13/viper" - rev = "3826be313591f83193f048520482a7b3cf17d506" - sha256 = "1bci9wcqj8ghczwnj7wdlqzzbkm24fxpcl580vnrfc67yr5ppi01" - -["github.com/src-d/envconfig"] - sumVersion = "v1.0.0" - ["github.com/src-d/envconfig".fetch] - type = "git" - url = "https://github.com/src-d/envconfig" - rev = "0280e33525f5d88edb71638a80b31724153225ba" - sha256 = "1x2r66gr02rammmmsi561m9siv13vima2z0lz3rbig77ifrpv0w3" - -["github.com/status-im/keycard-go"] - sumVersion = "v0.0.0-20190316090335-8537d3370df4" - ["github.com/status-im/keycard-go".fetch] - type = "git" - url = "https://github.com/status-im/keycard-go" - rev = "8537d3370df43a30a3d450c023783d2e43432b89" - sha256 = "15kbh04282vyb59fy9rjr533aa6vlxxh0cpa66x2qw6wb0896za1" - -["github.com/streadway/amqp"] - sumVersion = "v0.0.0-20190827072141-edfb9018d271" - ["github.com/streadway/amqp".fetch] - type = "git" - url = "https://github.com/streadway/amqp" - rev = "edfb9018d2714e4ec54dbaba37dbfef2bdadf0e4" - sha256 = "07icg7x7saawzqb9lm9avw6bizs387xdi27zry03m6z5i1a22zq2" - -["github.com/streadway/handy"] - sumVersion = "v0.0.0-20190108123426-d5acb3125c2a" - ["github.com/streadway/handy".fetch] - type = "git" - url = "https://github.com/streadway/handy" - rev = "d5acb3125c2a6654d2d691e6851674a645333da1" - sha256 = "02jwalahfj2lh1snklh6i5hysjl9npx59q31ihdfrva10dssg30r" - -["github.com/stretchr/objx"] - sumVersion = "v0.2.0" - ["github.com/stretchr/objx".fetch] - type = "git" - url = "https://github.com/stretchr/objx" - rev = "ea4fe68685ee0d3cee7032121851b57e7494e8ea" - sha256 = "0pcdvakxgddaiwcdj73ra4da05a3q4cgwbpm2w75ycq4kzv8ij8k" - -["github.com/stretchr/testify"] - sumVersion = "v1.7.0" - ["github.com/stretchr/testify".fetch] - type = "git" - url = "https://github.com/stretchr/testify" - rev = "acba37e5db06f0093b465a7d47822bf13644b66c" - sha256 = "0ixgjsvafr3513pz3r6pmgk074s2dxkll0dadvl25gkf30rkmh10" - -["github.com/subosito/gotenv"] - sumVersion = "v1.2.0" - ["github.com/subosito/gotenv".fetch] - type = "git" - url = "https://github.com/subosito/gotenv" - rev = "2ef7124db659d49edac6aa459693a15ae36c671a" - sha256 = "0mav91j7r4arjkpq5zcf9j74f6pww8ic53x43wy7kg3ibw31yjs5" - -["github.com/syndtr/goleveldb"] - sumVersion = "v1.0.1-0.20210305035536-64b5b1c73954" - ["github.com/syndtr/goleveldb".fetch] - type = "git" - url = "https://github.com/syndtr/goleveldb" - rev = "64b5b1c739545ed311fb9d9924d19d188fabdc83" - sha256 = "0z4p22hpv3s9c85kw6vk6p8zc2dbkxfqvl5l89qknsc3cv9ys15r" - -["github.com/tecbot/gorocksdb"] - sumVersion = "v0.0.0-20191217155057-f0fad39f321c" - ["github.com/tecbot/gorocksdb".fetch] - type = "git" - url = "https://github.com/tecbot/gorocksdb" - rev = "f0fad39f321c61bf05fcb4a01fe259606235e712" - sha256 = "0brf99da00jf91hf7w0qqk6yj61zcya9ci7pm8d60q6zl40i87c5" - -["github.com/tendermint/btcd"] - sumVersion = "v0.1.1" - ["github.com/tendermint/btcd".fetch] - type = "git" - url = "https://github.com/tendermint/btcd" - rev = "80daadac05d1cd29571fccf27002d79667a88b58" - sha256 = "16s909z5awvqi060rdj577wzbgziyk88s53x24kv9rzc71rm99x1" - -["github.com/tendermint/crypto"] - sumVersion = "v0.0.0-20191022145703-50d29ede1e15" - ["github.com/tendermint/crypto".fetch] - type = "git" - url = "https://github.com/tendermint/crypto" - rev = "50d29ede1e15ab205c8558ad67b85596ee19d3a0" - sha256 = "0vhyxsypb2q1zpcl464hlsdpap7kc3nj6gdff53xwrln2bg1jjin" - -["github.com/tendermint/go-amino"] - sumVersion = "v0.14.1-binance.1" - vendorPath = "github.com/binance-chain/bnc-go-amino" - ["github.com/tendermint/go-amino".fetch] - type = "git" - url = "https://github.com/binance-chain/bnc-go-amino" - rev = "b3a81203066cc46107dcf5e2ae6d78260ccc7c5a" - sha256 = "123bk76w448ns9qgnbafyjiva1ba55nblkkrw37cj3y54181k8i7" - -["github.com/tendermint/tendermint"] - sumVersion = "v0.34.8" - ["github.com/tendermint/tendermint".fetch] - type = "git" - url = "https://github.com/tendermint/tendermint" - rev = "dea73e08b3aa90377316dc66c5c181f9eb0b147a" - sha256 = "03k44w23167az2kk6ccp3139kykzkhack4w2vy0wvs2lb67xiqd9" - -["github.com/tendermint/tm-db"] - sumVersion = "v0.6.4" - ["github.com/tendermint/tm-db".fetch] - type = "git" - url = "https://github.com/tendermint/tm-db" - rev = "6f9a08cd4522fb13d8df69b1694587d5015114fc" - sha256 = "1sgjf2vaq554ybc0cwkzn17cz2ibzph2rq0dgaw21c2hym09437x" - -["github.com/tinylib/msgp"] - sumVersion = "v1.0.2" - ["github.com/tinylib/msgp".fetch] - type = "git" - url = "https://github.com/tinylib/msgp" - rev = "b2b6a672cf1e5b90748f79b8b81fc8c5cf0571a1" - sha256 = "0pypfknghg1hcjjrqz3f1riaylk6hcxn9h0qyzynb74rp0qmlxjc" - -["github.com/tklauser/go-sysconf"] - sumVersion = "v0.3.5" - ["github.com/tklauser/go-sysconf".fetch] - type = "git" - url = "https://github.com/tklauser/go-sysconf" - rev = "84855bfc5bf227d7061d3e3c3d7bd0db79284b73" - sha256 = "118a9pxk9c250619c34bg469nxv33893qjbvl25yx74ny44gris0" - -["github.com/tklauser/numcpus"] - sumVersion = "v0.2.2" - ["github.com/tklauser/numcpus".fetch] - type = "git" - url = "https://github.com/tklauser/numcpus" - rev = "4c0a03ab8b357758a4a2b1d2b1af02966b5366c4" - sha256 = "1yfn18cpd6x8is6pf5yh48rfnqq1j3g3bfxvj3rxwjs7apkl8b4w" - -["github.com/tmc/grpc-websocket-proxy"] - sumVersion = "v0.0.0-20190109142713-0ad062ec5ee5" - ["github.com/tmc/grpc-websocket-proxy".fetch] - type = "git" - url = "https://github.com/tmc/grpc-websocket-proxy" - rev = "0ad062ec5ee553a48f6dbd280b7a1b5638e8a113" - sha256 = "1anw4v9wspnw9xf2z5r9w0sszwjklyanl0l85wgg6nxak9gnrqp4" - -["github.com/tv42/httpunix"] - sumVersion = "v0.0.0-20150427012821-b75d8614f926" - ["github.com/tv42/httpunix".fetch] - type = "git" - url = "https://github.com/tv42/httpunix" - rev = "b75d8614f926c077e48d85f1f8f7885b758c6225" - sha256 = "1sd9nnyyjm7n96fa18l0shlnapld4m0yj5ij2ba0l9yaaa2byqm9" - -["github.com/tyler-smith/go-bip39"] - sumVersion = "v1.0.1-0.20181017060643-dbb3b84ba2ef" - ["github.com/tyler-smith/go-bip39".fetch] - type = "git" - url = "https://github.com/tyler-smith/go-bip39" - rev = "dbb3b84ba2ef14e894f5e33d6c6e43641e665738" - sha256 = "0wkb45rp9ki2mhnga8iamddhmpa5yr495n3p436sdql67gvs7gzz" - -["github.com/ugorji/go"] - sumVersion = "v1.1.4" - ["github.com/ugorji/go".fetch] - type = "git" - url = "https://github.com/ugorji/go" - rev = "2adff0894ba3bc2eeb9f9aea45fefd49802e1a13" - sha256 = "0ma2qvn5wqvjidpdz74x832a813qnr1cxbx6n6n125ak9b3wbn5w" - -["github.com/ugorji/go/codec"] - sumVersion = "v0.0.0-20181204163529-d75b2dcb6bc8" - relPath = "codec" - ["github.com/ugorji/go/codec".fetch] - type = "git" - url = "https://github.com/ugorji/go" - rev = "d75b2dcb6bc890b13ac61b764f5dc5e5a5591dce" - sha256 = "0di1k35gpq9bp958ywranpbskx2vdwlb38s22vl9rybm3wa5g3ps" - -["github.com/urfave/cli"] - sumVersion = "v1.22.1" - ["github.com/urfave/cli".fetch] - type = "git" - url = "https://github.com/urfave/cli" - rev = "c71fbcefd21552b70cd625b2c54466006e258ad7" - sha256 = "04ymak18flqlfcn8lycmg8r3931al8dvr8f1cg9n4yjaskmg72v8" - -["github.com/urfave/cli/v2"] - sumVersion = "v2.3.0" - ["github.com/urfave/cli/v2".fetch] - type = "git" - url = "https://github.com/urfave/cli" - rev = "09ac54c2f97f4249282baf266c54a09fab1bef58" - sha256 = "08pvn7gyfznni72xrxfh2x6xxa8ykr7l1ka278js8g8qkh71bj8l" - -["github.com/whyrusleeping/go-keyspace"] - sumVersion = "v0.0.0-20160322163242-5b898ac5add1" - ["github.com/whyrusleeping/go-keyspace".fetch] - type = "git" - url = "https://github.com/whyrusleeping/go-keyspace" - rev = "5b898ac5add1da7178a4a98e69cb7b9205c085ee" - sha256 = "0fkk7i7qxwbz1g621mm6a6inb69lr57cyc9ayyfiwhnjwfz78rbb" - -["github.com/whyrusleeping/go-logging"] - sumVersion = "v0.0.1" - ["github.com/whyrusleeping/go-logging".fetch] - type = "git" - url = "https://github.com/whyrusleeping/go-logging" - rev = "d89ec39241781fab261571aeddb2a4177bb57bf3" - sha256 = "079ckijg3f7sf3bfbi6a6xa0famsd5zg6d17vi6gm422f8652gbk" - -["github.com/whyrusleeping/mafmt"] - sumVersion = "v1.2.8" - ["github.com/whyrusleeping/mafmt".fetch] - type = "git" - url = "https://github.com/whyrusleeping/mafmt" - rev = "7aa7fad2ede4e7157818e3e7af5061f866a9ae23" - sha256 = "0sr602pbxid3ncfd8v0dgjd1a79qg3k4bzniq811jjdq9zm9jccv" - -["github.com/whyrusleeping/mdns"] - sumVersion = "v0.0.0-20190826153040-b9b60ed33aa9" - ["github.com/whyrusleeping/mdns".fetch] - type = "git" - url = "https://github.com/whyrusleeping/mdns" - rev = "b9b60ed33aa90e31b4a61eade9ed7d1d40e1cd7e" - sha256 = "00k0zrlxm93q7lpb0vgviqly0p3vycarjpr25ay3w4wd7405nxw3" - -["github.com/whyrusleeping/multiaddr-filter"] - sumVersion = "v0.0.0-20160516205228-e903e4adabd7" - ["github.com/whyrusleeping/multiaddr-filter".fetch] - type = "git" - url = "https://github.com/whyrusleeping/multiaddr-filter" - rev = "e903e4adabd70b78bc9293b6ee4f359afb3f9f59" - sha256 = "0ksd8vnp207dvphmhrazwldj8if900fnyc1pqa9pfvj04qp92640" - -["github.com/willf/bitset"] - sumVersion = "v1.1.3" - ["github.com/willf/bitset".fetch] - type = "git" - url = "https://github.com/willf/bitset" - rev = "d860f346b89450988a379d7d705e83c58d1ea227" - sha256 = "18419ip5mnblnyx2rjixad90dhjb1x2kaiidr7zk9b3qci799rh0" - -["github.com/x-cray/logrus-prefixed-formatter"] - sumVersion = "v0.5.2" - ["github.com/x-cray/logrus-prefixed-formatter".fetch] - type = "git" - url = "https://github.com/x-cray/logrus-prefixed-formatter" - rev = "bb2702d423886830dee131692131d35648c382e2" - sha256 = "0mqcdiix0bw0hj6yksiyn4rmgnzblj3x4wdzvf03y0d9vg1zr1na" - -["github.com/xiang90/probing"] - sumVersion = "v0.0.0-20190116061207-43a291ad63a2" - ["github.com/xiang90/probing".fetch] - type = "git" - url = "https://github.com/xiang90/probing" - rev = "43a291ad63a214a207fefbf03c7d9d78b703162b" - sha256 = "1z22ms16j5j42775mf31isanwx2pwr1d8wqw8006dczjv36qnz5i" - -["github.com/xlab/treeprint"] - sumVersion = "v0.0.0-20180616005107-d6fb6747feb6" - ["github.com/xlab/treeprint".fetch] - type = "git" - url = "https://github.com/xlab/treeprint" - rev = "d6fb6747feb6e7cfdc44682a024bddf87ef07ec2" - sha256 = "1ln6p8va53sxrhyy0gfanskzzc30c55l6nk1f0bin91jlr2mxn4n" - -["github.com/xordataexchange/crypt"] - sumVersion = "v0.0.3-0.20170626215501-b2862e3d0a77" - ["github.com/xordataexchange/crypt".fetch] - type = "git" - url = "https://github.com/xordataexchange/crypt" - rev = "b2862e3d0a775f18c7cfe02273500ae307b61218" - sha256 = "04q3856anpzl4gdfgmg7pbp9cx231nkz3ymq2xp27rnmmwhfxr8y" - -["github.com/yuin/goldmark"] - sumVersion = "v1.3.5" - ["github.com/yuin/goldmark".fetch] - type = "git" - url = "https://github.com/yuin/goldmark" - rev = "9f5125e104c38283b8ca0a581793abe4260dd786" - sha256 = "08rrhfji92hixiv3v0wvamwcy56f90wsw84w7lyvad7g90kbsknx" - -["github.com/zondax/hid"] - sumVersion = "v0.9.0" - ["github.com/zondax/hid".fetch] - type = "git" - url = "https://github.com/zondax/hid" - rev = "302fd402163c34626286195dfa9adac758334acc" - sha256 = "1wnpfn4bd86nz2v9dgb40xpz1ya66vahdkrhb1gj4jyyxdnnhqkh" - -["github.com/zondax/ledger-go"] - sumVersion = "v0.9.1" - vendorPath = "github.com/binance-chain/ledger-go" - ["github.com/zondax/ledger-go".fetch] - type = "git" - url = "https://github.com/binance-chain/ledger-go" - rev = "6d4c92579518a79bb50589cc1c35995f610832f5" - sha256 = "0r3iv4l8lzl4ia85pjm8ngc0c599whc7a9rfa9jfi6ls38k03zli" - -["github.com/zquestz/grab"] - sumVersion = "v0.0.0-20190224022517-abcee96e61b1" - ["github.com/zquestz/grab".fetch] - type = "git" - url = "https://github.com/zquestz/grab" - rev = "abcee96e61b1d6def96b6616dec78a8ef12793e5" - sha256 = "0w010rzkranmai0hm9wwxbdq57il7abbrshw9bcy89w5gghiz9yq" - -["gitlab.com/thorchain/bifrost/bchd-txscript"] - sumVersion = "v0.0.0-20210123055555-abb86a2e300a" - ["gitlab.com/thorchain/bifrost/bchd-txscript".fetch] - type = "git" - url = "https://gitlab.com/thorchain/bifrost/bchd-txscript.git" - rev = "abb86a2e300ab55be6b1b6fea4ec25691a79fd2c" - sha256 = "06sn75iqkcycmhwi66k4nx4fk3rmbfixv67ps5zjv3g1ard3jhv0" - -["gitlab.com/thorchain/bifrost/dogd-txscript"] - sumVersion = "v0.0.0-20210210114734-b88bfb72ff40" - ["gitlab.com/thorchain/bifrost/dogd-txscript".fetch] - type = "git" - url = "https://gitlab.com/thorchain/bifrost/dogd-txscript.git" - rev = "b88bfb72ff400ed22994a07b59d70e1c8b8290d8" - sha256 = "19wc1p7m6yllvwn9m3j4z5ga872vll2bjwipqn0m8sxbl3m8iq77" - -["gitlab.com/thorchain/bifrost/ltcd-txscript"] - sumVersion = "v0.0.0-20210123055845-c0f9cad51f13" - ["gitlab.com/thorchain/bifrost/ltcd-txscript".fetch] - type = "git" - url = "https://gitlab.com/thorchain/bifrost/ltcd-txscript.git" - rev = "c0f9cad51f133d0b4486d7c39449fb8f75cd3aa2" - sha256 = "1f6qaq1d5swp3v2hwzbsx88mvd4mzizssp2nph33ymhv78gkjsn5" - -["gitlab.com/thorchain/bifrost/txscript"] - sumVersion = "v0.0.0-20210123055850-29da989e6f5a" - ["gitlab.com/thorchain/bifrost/txscript".fetch] - type = "git" - url = "https://gitlab.com/thorchain/bifrost/txscript.git" - rev = "29da989e6f5ae91d3254c13ec0726b3120236790" - sha256 = "062dr3gjvbgiz84c3g47x6r79ym33k43dhi0xmd7396id2zi34b6" - -["gitlab.com/thorchain/binance-sdk"] - sumVersion = "v1.2.3-0.20210117202539-d569b6b9ba5d" - ["gitlab.com/thorchain/binance-sdk".fetch] - type = "git" - url = "https://gitlab.com/thorchain/binance-sdk.git" - rev = "d569b6b9ba5db157dbabe2636f4be20a87bc0bb4" - sha256 = "1a6h1y7q7n8cyx6829sja24az2airab601wvghlczp122zkd27dy" - -["gitlab.com/thorchain/tss/go-tss"] - sumVersion = "v1.5.0" - ["gitlab.com/thorchain/tss/go-tss".fetch] - type = "git" - url = "https://gitlab.com/thorchain/tss/go-tss.git" - rev = "522bb67cc285fde537f14e2d712d19bb4d5bbf73" - sha256 = "0ccrks9h18kj14jz2bmrq4rxg02i5849c8cg3qsxp5sd1jp9xaa4" - -["go.etcd.io/bbolt"] - sumVersion = "v1.3.5" - ["go.etcd.io/bbolt".fetch] - type = "git" - url = "https://github.com/etcd-io/bbolt" - rev = "232d8fc87f50244f9c808f4745759e08a304c029" - sha256 = "1h64gipvcg7060byv5wjlf524kqwj12p3v08kfh4ygv46vpm8p2r" - -["go.etcd.io/etcd"] - sumVersion = "v0.0.0-20191023171146-3cf2f69b5738" - ["go.etcd.io/etcd".fetch] - type = "git" - url = "https://github.com/etcd-io/etcd" - rev = "3cf2f69b5738fb702ba1a935590f36b52b18979b" - sha256 = "1w5jr8shn6whccksmpbcllcr1f8gjgh1dnix5rmnv3wwr5in5cgq" - -["go.opencensus.io"] - sumVersion = "v0.22.4" - ["go.opencensus.io".fetch] - type = "git" - url = "https://github.com/census-instrumentation/opencensus-go" - rev = "5fa069b99bc903d713add0295c7e0a55d34ae573" - sha256 = "10skbvs4yxjm3z10yfg5cj2mdzjsna87qk1icp9xv0iwp8wzq6h0" - -["go.opentelemetry.io/proto/otlp"] - sumVersion = "v0.7.0" - relPath = "otlp" - ["go.opentelemetry.io/proto/otlp".fetch] - type = "git" - url = "https://github.com/open-telemetry/opentelemetry-proto-go" - rev = "4fc4e99f9e4387bc9890e74f757d3994ffa384ce" - sha256 = "003p1yjh48sfgq7b2k1hxn8jdpdps17zfhn427lbfpd1z7gd2cdq" - -["go.uber.org/atomic"] - sumVersion = "v1.6.0" - ["go.uber.org/atomic".fetch] - type = "git" - url = "https://github.com/uber-go/atomic" - rev = "845920076a298bdb984fb0f1b86052e4ca0a281c" - sha256 = "0pcshhrg1ajfh04rk0sf8805isizbb2m35js5c9gbbh2cjg3c7h5" - -["go.uber.org/goleak"] - sumVersion = "v1.0.0" - ["go.uber.org/goleak".fetch] - type = "git" - url = "https://github.com/uber-go/goleak" - rev = "16be2abb5bbf96c9dd6a759592a32e5aa04cb15e" - sha256 = "1vb7nhzisrag13cv898m876pzsrw2g1m8f35vk2644y2sfjdzsxr" - -["go.uber.org/multierr"] - sumVersion = "v1.5.0" - ["go.uber.org/multierr".fetch] - type = "git" - url = "https://github.com/uber-go/multierr" - rev = "b587143a48b62b01d337824eab43700af6ffe222" - sha256 = "0xgfmyzwfr3l0gi3024g6hj1x1pbq2c9aszgww43drvb0myqzh5w" - -["go.uber.org/tools"] - sumVersion = "v0.0.0-20190618225709-2cfd321de3ee" - ["go.uber.org/tools".fetch] - type = "git" - url = "https://github.com/uber-go/tools" - rev = "2cfd321de3ee5d5f8a5fda2521d1703478334d98" - sha256 = "0kcsg9pd3vyp5v9dz8xzd9lkpbqrlhr1rv6hg38afq6ifziw319i" - -["go.uber.org/zap"] - sumVersion = "v1.15.0" - ["go.uber.org/zap".fetch] - type = "git" - url = "https://github.com/uber-go/zap" - rev = "feeb9a050b31b40eec6f2470e7599eeeadfe5bdd" - sha256 = "15av5vjpxkvadbzisdbjqk6z860gnd3lvi6qslwl0ixi8gk23jr0" - -["golang.org/x/crypto"] - sumVersion = "v0.0.0-20211209193657-4570a0811e8b" - ["golang.org/x/crypto".fetch] - type = "git" - url = "https://go.googlesource.com/crypto" - rev = "4570a0811e8b3d7c89573c13d00777b1f8b01a54" - sha256 = "1w6916267jf00zx8j1d93902y02nmyrm4hgxd38vl6qigfils9bi" - -["golang.org/x/exp"] - sumVersion = "v0.0.0-20200331195152-e8c3332aa8e5" - ["golang.org/x/exp".fetch] - type = "git" - url = "https://go.googlesource.com/exp" - rev = "e8c3332aa8e5b8e6acb4707c3a7e5979052b20aa" - sha256 = "085mbasmshl64f2d0awrf5k0iyh1aij888cp9aa12ldzp36404rw" - -["golang.org/x/image"] - sumVersion = "v0.0.0-20190802002840-cff245a6509b" - ["golang.org/x/image".fetch] - type = "git" - url = "https://go.googlesource.com/image" - rev = "cff245a6509b8c4de022d0d5b9037c503c5989d6" - sha256 = "0hiznlkiaay30acwvvyq8g6bm32r7bc6gv47pygrcxqpapasbz84" - -["golang.org/x/lint"] - sumVersion = "v0.0.0-20210508222113-6edffad5e616" - ["golang.org/x/lint".fetch] - type = "git" - url = "https://go.googlesource.com/lint" - rev = "6edffad5e6160f5949cdefc81710b2706fbcd4f6" - sha256 = "1n7lrr3282q3li4f06afms444qy13rfd316za0drqihakwyki2jk" - -["golang.org/x/mobile"] - sumVersion = "v0.0.0-20190719004257-d2bd2a29d028" - ["golang.org/x/mobile".fetch] - type = "git" - url = "https://go.googlesource.com/mobile" - rev = "d2bd2a29d028cb94031e5e81788b19b371d00eb8" - sha256 = "1nv6vvhnjr01nx9y06q46ww87dppdwpbqrlsfg1xf2587wxl8xiv" - -["golang.org/x/mod"] - sumVersion = "v0.5.0" - ["golang.org/x/mod".fetch] - type = "git" - url = "https://go.googlesource.com/mod" - rev = "0f08993efd8a8ec67e75bcccf86b0e1569b0ab0a" - sha256 = "0pl0jc5jvg7hxj4z66zg6kglnq5g7li09f3k9klwvyr4jx5dw88k" - -["golang.org/x/net"] - sumVersion = "v0.0.0-20211112202133-69e39bad7dc2" - ["golang.org/x/net".fetch] - type = "git" - url = "https://go.googlesource.com/net" - rev = "69e39bad7dc2bbb411fa35755c46020969029fa7" - sha256 = "0yvg72fb037yh4xvjyfgrr8nsbz7nfiiksvq0a5922z255anamy6" - -["golang.org/x/oauth2"] - sumVersion = "v0.0.0-20200107190931-bf48bf16ab8d" - ["golang.org/x/oauth2".fetch] - type = "git" - url = "https://go.googlesource.com/oauth2" - rev = "bf48bf16ab8d622ce64ec6ce98d2c98f916b6303" - sha256 = "1sirdib60zwmh93kf9qrx51r8544k1p9rs5mk0797wibz3m4mrdg" - -["golang.org/x/sync"] - sumVersion = "v0.0.0-20210220032951-036812b2e83c" - ["golang.org/x/sync".fetch] - type = "git" - url = "https://go.googlesource.com/sync" - rev = "036812b2e83c0ddf193dd5a34e034151da389d09" - sha256 = "1gl202py3s4gl6arkaxlf8qa6f0jyyg2f95m6f89qnfmr416h85b" - -["golang.org/x/sys"] - sumVersion = "v0.0.0-20210903071746-97244b99971b" - ["golang.org/x/sys".fetch] - type = "git" - url = "https://go.googlesource.com/sys" - rev = "97244b99971b253e564db131f988a3fde9c556ca" - sha256 = "08b7iaj5ahr6g09wxagh2l9ndpgmnmsmlghkp33rwhwjkn5scxig" - -["golang.org/x/term"] - sumVersion = "v0.0.0-20201126162022-7de9c90e9dd1" - ["golang.org/x/term".fetch] - type = "git" - url = "https://go.googlesource.com/term" - rev = "7de9c90e9dd184706b838f536a1cbf40a296ddb7" - sha256 = "1ba252xmv6qsvf1w1gcy98mngrj0vd4inbjw0lsklqvva65nljna" - -["golang.org/x/text"] - sumVersion = "v0.3.7" - ["golang.org/x/text".fetch] - type = "git" - url = "https://go.googlesource.com/text" - rev = "383b2e75a7a4198c42f8f87833eefb772868a56f" - sha256 = "0xkw0qvfjyifdqd25y7nxdqkdh92inymw3q7841nricc9s01p4jy" - -["golang.org/x/time"] - sumVersion = "v0.0.0-20201208040808-7e3f01d25324" - ["golang.org/x/time".fetch] - type = "git" - url = "https://go.googlesource.com/time" - rev = "7e3f01d253248a0a5694eb5b7376dfea18b6397e" - sha256 = "19l0c6nc74gxn9l3qvgk791kbaik4h9w5wv0ayyr3bgw4hb48pgm" - -["golang.org/x/tools"] - sumVersion = "v0.1.5" - ["golang.org/x/tools".fetch] - type = "git" - url = "https://go.googlesource.com/tools" - rev = "ef97713d99aa4e69742aa68fd45a63247b5d3ea0" - sha256 = "1wzbbcja1q0gn8ahxvzvpl4nzj2icwmc0pppgipmx5rdnngqw80l" - -["golang.org/x/xerrors"] - sumVersion = "v0.0.0-20200804184101-5ec99f83aff1" - ["golang.org/x/xerrors".fetch] - type = "git" - url = "https://go.googlesource.com/xerrors" - rev = "5ec99f83aff198f5fbd629d6c8d8eb38a04218ca" - sha256 = "1dbzc3gmf2haazpv7cgmv97rq40g2xzwbglc17vas8dwhgwgwrzb" - -["gonum.org/v1/gonum"] - sumVersion = "v0.6.0" - ["gonum.org/v1/gonum".fetch] - type = "git" - url = "https://github.com/gonum/gonum" - rev = "b72f7aa23a47a7d95df7d3d5248af26c33327925" - sha256 = "1cvk8j4fk9w5visjr8mx3n3vr2z2b3m6gir7vx6sr2mfn24ndfcl" - -["gonum.org/v1/netlib"] - sumVersion = "v0.0.0-20190313105609-8cb42192e0e0" - ["gonum.org/v1/netlib".fetch] - type = "git" - url = "https://github.com/gonum/netlib" - rev = "8cb42192e0e0b08ed60c6c306a63d0b2ea460e51" - sha256 = "0p4kgkrjhjzy98qy2a64qr9s5vi4vs7mmvfq4iaqg1iccp47blmx" - -["gonum.org/v1/plot"] - sumVersion = "v0.0.0-20190515093506-e2840ee46a6b" - ["gonum.org/v1/plot".fetch] - type = "git" - url = "https://github.com/gonum/plot" - rev = "e2840ee46a6b612972d746f9fea9920d329a0605" - sha256 = "0373vn32i6cjch0kw7sncskyj9ngqj2qk5jn9529zblknz0yss50" - -["google.golang.org/api"] - sumVersion = "v0.15.0" - ["google.golang.org/api".fetch] - type = "git" - url = "https://github.com/googleapis/google-api-go-client" - rev = "aa5d4e47691e7ae1aebb5221ff8e4beea23fad72" - sha256 = "1ljhwv5xsgsbqia70f35q19vwrsm47sh08ljbwdyfa867ff17qdh" - -["google.golang.org/appengine"] - sumVersion = "v1.6.5" - ["google.golang.org/appengine".fetch] - type = "git" - url = "https://github.com/golang/appengine" - rev = "971852bfffca25b069c31162ae8f247a3dba083b" - sha256 = "05hbq4cs7bqw0zl17bx8rzdkszid3nyl92100scg3jjrg70dhm7w" - -["google.golang.org/genproto"] - sumVersion = "v0.0.0-20211208223120-3a66f561d7aa" - ["google.golang.org/genproto".fetch] - type = "git" - url = "https://github.com/googleapis/go-genproto" - rev = "3a66f561d7aa4010d9715ecf4c19b19e81e19f3c" - sha256 = "1021gpy2753zffim3sh2mi723pvnnpl8mpabsyp18k1880zgxham" - -["google.golang.org/grpc"] - sumVersion = "v1.40.0" - ["google.golang.org/grpc".fetch] - type = "git" - url = "https://github.com/grpc/grpc-go" - rev = "41e044e1c82fcf6a5801d6cbd7ecf952505eecb1" - sha256 = "0n63k9j3grwc8di3k2fkxqbdyzw0pwrcs9vpmwrnga6hdwg9d5hv" - -["google.golang.org/protobuf"] - sumVersion = "v1.27.1" - ["google.golang.org/protobuf".fetch] - type = "git" - url = "https://go.googlesource.com/protobuf" - rev = "b92717ecb630d4a4824b372bf98c729d87311a4d" - sha256 = "0aszb7cv8fq1m8akgd4kjyg5q7g5z9fdqnry6057ygq9r8r2yif2" - -["gopkg.in/alecthomas/kingpin.v2"] - sumVersion = "v2.2.6" - ["gopkg.in/alecthomas/kingpin.v2".fetch] - type = "git" - url = "https://gopkg.in/alecthomas/kingpin.v2" - rev = "947dcec5ba9c011838740e680966fd7087a71d0d" - sha256 = "0mndnv3hdngr3bxp7yxfd47cas4prv98sqw534mx7vp38gd88n5r" - -["gopkg.in/check.v1"] - sumVersion = "v1.0.0-20200902074654-038fdea0a05b" - ["gopkg.in/check.v1".fetch] - type = "git" - url = "https://gopkg.in/check.v1" - rev = "038fdea0a05bc030b0bfda479dc2e08d2220ec74" - sha256 = "060kpz01bfglrd7przzgq8a1fqf1x0hlkmdj6isindzwx3kfhnm4" - -["gopkg.in/cheggaaa/pb.v1"] - sumVersion = "v1.0.25" - ["gopkg.in/cheggaaa/pb.v1".fetch] - type = "git" - url = "https://gopkg.in/cheggaaa/pb.v1" - rev = "2af8bbdea9e99e83b3ac400d8f6b6d1b8cbbf338" - sha256 = "0vxqiw6f3xyv0zy3g4lksf8za0z8i0hvfpw92hqimsy84f79j3dp" - -["gopkg.in/errgo.v2"] - sumVersion = "v2.1.0" - ["gopkg.in/errgo.v2".fetch] - type = "git" - url = "https://gopkg.in/errgo.v2" - rev = "f768c5ab0476c50e978b039312180859c10fe8c0" - sha256 = "065mbihiy7q67wnql0bzl9y1kkvck5ivra68254zbih52jxwrgr2" - -["gopkg.in/fsnotify.v1"] - sumVersion = "v1.4.7" - ["gopkg.in/fsnotify.v1".fetch] - type = "git" - url = "https://gopkg.in/fsnotify.v1" - rev = "c2828203cd70a50dcccfb2761f8b1f8ceef9a8e9" - sha256 = "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g" - -["gopkg.in/gcfg.v1"] - sumVersion = "v1.2.3" - ["gopkg.in/gcfg.v1".fetch] - type = "git" - url = "https://gopkg.in/gcfg.v1" - rev = "61b2c08bc8f6068f7c5ca684372f9a6cb1c45ebe" - sha256 = "165f9wincwnkblp8x6m1f4ch4m8k4gvy5v4x4gqdpmf59kqv5y7s" - -["gopkg.in/ini.v1"] - sumVersion = "v1.52.0" - ["gopkg.in/ini.v1".fetch] - type = "git" - url = "https://gopkg.in/ini.v1" - rev = "32cf4f7e9c77f151e18b53067b55549b4d1d411d" - sha256 = "06cadqn5hs3v4cf1a736by9gr3izfdh9y03bmrvk8nl5lkqak9sg" - -["gopkg.in/natefinch/npipe.v2"] - sumVersion = "v2.0.0-20160621034901-c1b8fa8bdcce" - ["gopkg.in/natefinch/npipe.v2".fetch] - type = "git" - url = "https://gopkg.in/natefinch/npipe.v2" - rev = "c1b8fa8bdccecb0b8db834ee0b92fdbcfa606dd6" - sha256 = "1qplrvhks05pay169d9lph3hl7apdam4vj1kx3yzik7cphx6b24f" - -["gopkg.in/olebedev/go-duktape.v3"] - sumVersion = "v3.0.0-20200619000410-60c24ae608a6" - ["gopkg.in/olebedev/go-duktape.v3".fetch] - type = "git" - url = "https://gopkg.in/olebedev/go-duktape.v3" - rev = "60c24ae608a642bf894bed9eb53627d2384bedca" - sha256 = "13qirm5nqk6isv9n0wdi18k9wc8h1d7n6zwflhziwix7ghnr7a1q" - -["gopkg.in/resty.v1"] - sumVersion = "v1.12.0" - ["gopkg.in/resty.v1".fetch] - type = "git" - url = "https://gopkg.in/resty.v1" - rev = "fa5875c0caa5c260ab78acec5a244215a730247f" - sha256 = "062mn735rqzhha5ag07z4gz08hxzrfm2yx067jfmaaxmb6797lmp" - -["gopkg.in/src-d/go-cli.v0"] - sumVersion = "v0.0.0-20181105080154-d492247bbc0d" - ["gopkg.in/src-d/go-cli.v0".fetch] - type = "git" - url = "https://gopkg.in/src-d/go-cli.v0" - rev = "d492247bbc0df2be12b7767179b14ea23430964f" - sha256 = "02sikimsxxfdis5y7p90sdqhw1pgd320v2hdjih8zpa0xxpvjqfk" - -["gopkg.in/src-d/go-log.v1"] - sumVersion = "v1.0.1" - ["gopkg.in/src-d/go-log.v1".fetch] - type = "git" - url = "https://gopkg.in/src-d/go-log.v1" - rev = "289c0569da6b085f689b7b133944816c3428ed64" - sha256 = "0lr2y488l0y10x2x9899apq77kmlna0jngmgn3drmr0wxxbd1rai" - -["gopkg.in/tomb.v1"] - sumVersion = "v1.0.0-20141024135613-dd632973f1e7" - ["gopkg.in/tomb.v1".fetch] - type = "git" - url = "https://gopkg.in/tomb.v1" - rev = "dd632973f1e7218eb1089048e0798ec9ae7dceb8" - sha256 = "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv" - -["gopkg.in/urfave/cli.v1"] - sumVersion = "v1.20.0" - ["gopkg.in/urfave/cli.v1".fetch] - type = "git" - url = "https://gopkg.in/urfave/cli.v1" - rev = "cfb38830724cc34fedffe9a2a29fb54fa9169cd1" - sha256 = "0y6f4sbzkiiwrxbl15biivj8c7qwxnvm3zl2dd3mw4wzg4x10ygj" - -["gopkg.in/warnings.v0"] - sumVersion = "v0.1.2" - ["gopkg.in/warnings.v0".fetch] - type = "git" - url = "https://gopkg.in/warnings.v0" - rev = "ec4a0fea49c7b46c2aeb0b51aac55779c607e52b" - sha256 = "1kzj50jn708cingn7a13c2wdlzs6qv89dr2h4zj8d09647vlnd81" - -["gopkg.in/yaml.v2"] - sumVersion = "v2.4.0" - ["gopkg.in/yaml.v2".fetch] - type = "git" - url = "https://gopkg.in/yaml.v2" - rev = "7649d4548cb53a614db133b2a8ac1f31859dda8c" - sha256 = "1pbmrpj7gcws34g8vwna4i2nhm9p6235piww36436xhyaa10cldr" - -["gopkg.in/yaml.v3"] - sumVersion = "v3.0.0-20200615113413-eeeca48fe776" - ["gopkg.in/yaml.v3".fetch] - type = "git" - url = "https://gopkg.in/yaml.v3" - rev = "eeeca48fe7764f320e4870d231902bf9c1be2c08" - sha256 = "06m3kx5mp6vwfcpjl04c39r1dpbakg2la9ql1jw3zvpi6jk7iwbk" - -["gotest.tools"] - sumVersion = "v2.2.0+incompatible" - ["gotest.tools".fetch] - type = "git" - url = "https://github.com/gotestyourself/gotest.tools" - rev = "7c797b5133e5460410dbb22ba779bf35e6975dea" - sha256 = "0yif3gdyckmf8i54jq0xn00kflla5rhib9sarw66ngnbl7bn9kyl" - -["honnef.co/go/tools"] - sumVersion = "v0.1.3" - ["honnef.co/go/tools".fetch] - type = "git" - url = "https://github.com/dominikh/go-tools" - rev = "5a1275af4f46a845a0ec1e8b2b6539bdb991f63a" - sha256 = "17li8jbw3cpn59kpcl3j3r2an4wkx3fc81xn0j4xgbjpkxh9493n" - -["rsc.io/binaryregexp"] - sumVersion = "v0.2.0" - ["rsc.io/binaryregexp".fetch] - type = "git" - url = "https://github.com/rsc/binaryregexp" - rev = "857b9542aaa89cfa42a1477b43fa1f24192fe921" - sha256 = "1kar0myy85waw418zslviwx8846zj0m9cmqkxjx0fvgjdi70nc4b" - -["rsc.io/pdf"] - sumVersion = "v0.1.1" - ["rsc.io/pdf".fetch] - type = "git" - url = "https://github.com/rsc/pdf" - rev = "48d040297cebccc9e8dc43927e1b8036ecd33bfe" - sha256 = "01qjjwa8nn5a2jzd360xqg5zc8s0i2fpwcn2w2g6y2jgn9wl8x84" - -["sigs.k8s.io/yaml"] - sumVersion = "v1.1.0" - ["sigs.k8s.io/yaml".fetch] - type = "git" - url = "https://github.com/kubernetes-sigs/yaml" - rev = "fd68e9863619f6ec2fdd8625fe1f02e7c877e480" - sha256 = "1p7hvjdr5jsyk7nys1g1pmgnf3ys6n320i6hds85afppk81k01kb" - -["sourcegraph.com/sourcegraph/appdash"] - sumVersion = "v0.0.0-20190731080439-ebfcffb1b5c0" - ["sourcegraph.com/sourcegraph/appdash".fetch] - type = "git" - url = "https://github.com/sourcegraph/appdash" - rev = "ebfcffb1b5c00031ce797183546746715a3cfe87" - sha256 = "1xlff68pa7jchg1xr2nkrkk94mrd0ba2z38968j7swlfyf8rkk3d" diff --git a/resources/thor/last-synced.narHash b/resources/thor/last-synced.narHash deleted file mode 100644 index 471bfa9c..00000000 --- a/resources/thor/last-synced.narHash +++ /dev/null @@ -1 +0,0 @@ -sha256-CLs7ep88XTClLsdsUQ3oPQGRSQeBv7TF2JID6kKvxJ8= diff --git a/sync-go-modules/default.nix b/sync-go-modules/default.nix deleted file mode 100644 index 3fa40bd2..00000000 --- a/sync-go-modules/default.nix +++ /dev/null @@ -1,37 +0,0 @@ -{ pkgs, go-source-inputs }: -pkgs.writeTextFile -{ - name = "syncGoModulesCheck"; - text = '' - #!/usr/bin/env bash - set -euo pipefail - TOKENS="${go-source-inputs}" - for GO_SRC in $TOKENS; - do - PACKAGE_NAME=$(echo "$GO_SRC" | ${pkgs.gawk}/bin/awk -F: '{print $1}') - REST=$(echo "$GO_SRC" | ${pkgs.gawk}/bin/awk -F: '{print $2}') - SRC_NAME=$(echo "$REST" | ${pkgs.gawk}/bin/awk -F/ '{print $1}') - - NAR_HASH=$(${pkgs.jq}/bin/jq -r ".nodes[\"$SRC_NAME\"].locked.narHash" < flake.lock ) - LAST_SYNCED="resources/$PACKAGE_NAME/last-synced.narHash" - - if [ -f "$LAST_SYNCED" ] - then continue - else - echo "$PACKAGE_NAME has not been synced, please run \"syncGoModules\" from within the nix shell" - exit 1 - fi - if [ "$NAR_HASH" != "$(cat "$LAST_SYNCED")" ] - then - echo "$PACKAGE_NAME's go modules are out of sync, please run \"syncGoModules\" from within the nix shell" - exit 1 - else - continue - fi - done - ''; - executable = true; - checkPhase = '' - ${pkgs.shellcheck}/bin/shellcheck $out - ''; -} diff --git a/sync-go-modules/go-source-inputs.nix b/sync-go-modules/go-source-inputs.nix deleted file mode 100644 index 4d7cee86..00000000 --- a/sync-go-modules/go-source-inputs.nix +++ /dev/null @@ -1,46 +0,0 @@ -{ inputs }: -# In this case inputs is mostly used in order to reference go sources (suffixed by src in this file). -# For reference check the inputs attrset in flake.nix! -with inputs; -let go-project-srcs = - { - gaia6 = { inputName = "gaia6-src"; storePath = "${gaia6-src}"; }; - gaia5 = { inputName = "gaia5-src"; storePath = "${gaia5-src}"; }; - gaia4 = { inputName = "gaia4-src"; storePath = "${gaia4-src}"; }; - stoml = { - inputName = "stoml-src"; - storePath = "${stoml-src}"; - }; - sconfig = { - inputName = "sconfig-src"; - storePath = "${sconfig-src}"; - }; - cosmovisor = { - inputName = "cosmos-sdk-src"; - storePath = "${cosmos-sdk-src}/cosmovisor"; - }; - cosmos-sdk = { inputName = "cosmos-sdk-src"; storePath = "${cosmos-sdk-src}"; }; - osmosis = { - inputName = "osmosis-src"; - storePath = "${osmosis-src}"; - }; - iris = { - inputName = "iris-src"; - storePath = "${iris-src}"; - }; - regen = { - inputName = "regen-src"; - storePath = "${regen-src}"; - }; - evmos = { - inputName = "evmos-src"; - storePath = "${evmos-src}"; - }; - relayer = { inputName = "relayer-src"; storePath = "${relayer-src}"; }; - # thor = { inputName = "thor-src"; storePath = "${thor-src}"; }; - # juno = { inputName = "juno-src"; storePath = "${juno-src}"; }; - }; -in -with builtins; -concatStringsSep " " - (attrValues (builtins.mapAttrs (name: value: "${name}:${value.inputName}${value.storePath}") go-project-srcs)) diff --git a/sync-go-modules/sync.hs b/sync-go-modules/sync.hs deleted file mode 100755 index 446309de..00000000 --- a/sync-go-modules/sync.hs +++ /dev/null @@ -1,160 +0,0 @@ -#! /usr/bin/env nix-shell -#! nix-shell --impure -p ghcid -p "haskellPackages.ghcWithPackages (pkgs: with pkgs; [turtle bytestring text aeson colourista unordered-containers pretty-simple foldl string-interpolate])" -i runhaskell - -{-# LANGUAGE DeriveAnyClass #-} -{-# LANGUAGE DeriveGeneric #-} -{-# LANGUAGE OverloadedStrings #-} -{-# LANGUAGE QuasiQuotes #-} -{-# LANGUAGE RecordWildCards #-} -{-# LANGUAGE TypeApplications #-} - -import Colourista -import Control.Applicative -import qualified Control.Foldl as FLD -import Control.Monad -import Data.Aeson -import Data.Bifunctor -import qualified Data.ByteString.Lazy as BSL -import Data.Either -import Data.Foldable (foldMap) -import qualified Data.HashMap.Strict as HM -import Data.Monoid -import Data.String.Interpolate -import qualified Data.Text as T -import GHC.Generics -import Text.Pretty.Simple (pPrint) -import Turtle -import qualified Turtle.Bytes as TB -import Prelude - -data GoSource = GoSource {sourceName :: Text, inputName :: Text, storePath :: Text} deriving (Show) - -data GoSourceDetailed = GoSourceDetailed - { detailedSourceName :: Text, - detailedInputName :: Text, - detailedStorePath :: Text, - detailedLockDetails :: LockDetails - } - deriving (Show) - -newtype Nodes = Nodes {nodes :: Object} deriving (Generic, FromJSON, Show) - -newtype NodeDetails = NodeDetails {locked :: LockDetails} deriving (Generic, FromJSON, Show) - -data LockType = Github | Other Text deriving (Show) - -instance FromJSON LockType where - parseJSON (String "github") = pure Github - parseJSON (String t) = pure $ Other t - parseJSON v = fail $ "Failed to parse LockType from JSON, expected a String but got: " <> show v - -data LockDetails = LockDetails - { ldNarHash :: Text, - ldOwner :: Text, - ldRepo :: Text, - ldRev :: Text, - ldType :: LockType - } - deriving (Show) - -instance FromJSON LockDetails where - parseJSON = withObject "LockDetails" $ \v -> - LockDetails - <$> v .: "narHash" - <*> v .: "owner" - <*> v .: "repo" - <*> v .: "rev" - <*> v .: "type" - -main :: IO () -main = sh $ do - inputs <- stdin - flakeLock <- TB.strict . TB.input $ "flake.lock" - let goSources = parseInputs <$> T.words (lineToText inputs) - - when (any (\GoSource {..} -> T.null storePath) goSources) $ - liftIO $ do - errorMessage "One or more go sources are missing nix store paths" - pPrint goSources - exit $ ExitFailure 126 - - (missingSrcs, foundSrcs) <- - partitionEithers - <$> case eitherDecode . BSL.fromStrict $ flakeLock of - Left e -> do - liftIO $ errorMessage "Could not parse flake.lock file! It appears to be in an invalid state." - liftIO . pPrint $ "aeson failed with this message: \n" <> e - liftIO . exit $ ExitFailure 126 - Right (Nodes nodes) -> - pure $ - goSources <&> \GoSource {..} -> - GoSourceDetailed sourceName inputName storePath - <$> (nodesLookup inputName nodes >>= (fmap locked . resultToEitherText . fromJSON @NodeDetails)) - - when (not . null $ missingSrcs) $ - liftIO $ do - forM missingSrcs (\err -> errorMessage err) - exit $ ExitFailure 126 - - syncedSources <- forM foundSrcs $ updateGoModules - - liftIO $ do - putStrLn "\n" - putStrLn $ formatWith [bold] "Done syncing go modules:" - forM syncedSources notifyUpdated - - exit $ ExitSuccess - -parseInputs :: Text -> GoSource -parseInputs = - (\(sourceName, (inputName, storePath)) -> GoSource {..}) - . fmap (T.breakOn "/" . T.drop 1) - . T.breakOn ":" - -data HasSyncedModules = Updated | Cached deriving (Show) - -updateGoModules :: GoSourceDetailed -> Shell (HasSyncedModules, Text) -updateGoModules GoSourceDetailed {..} = do - hasNarFile <- getAny <$> fold ((\p -> Any $ p == narFile) <$> ls goSrcDir) FLD.mconcat - if hasNarFile - then do - lastUpdatedHash <- liftIO $ lineToText <$> (single . input) narFile - if lastUpdatedHash == ldNarHash - then pure (Cached, detailedSourceName) - else syncModules - else syncModules - where - LockDetails {..} = detailedLockDetails - goSrcDir = "./resources/" <> fromText detailedSourceName - narFile = goSrcDir <> "last-synced.narHash" - syncModules = do - sourceHome <- pwd - tmp <- mktempdir sourceHome "./tmp" - cd tmp - cptreeL (fromText detailedStorePath) "./" - proc "gomod2nix" [] mempty - cd sourceHome - mktree goSrcDir - mv (tmp <> "gomod2nix.toml") (goSrcDir <> "go-modules.toml") - output narFile (pure $ unsafeTextToLine ldNarHash) - pure (Updated, detailedSourceName) - -notifyUpdated :: (HasSyncedModules, Text) -> IO () -notifyUpdated (Updated, name) = - successMessage $ name <> "'s go modules were updated." -notifyUpdated (Cached, name) = - skipMessage $ name <> " has up to date go modules." - -negateAny :: Any -> Any -negateAny (Any True) = Any False -negateAny (Any False) = Any True - -resultToEitherText :: Result a -> Either Text a -resultToEitherText (Success a) = Right a -resultToEitherText (Error str) = Left $ T.pack str - -nodesLookup :: Text -> Object -> Either Text Value -nodesLookup name nodes = - case HM.lookup name nodes of - Nothing -> Left $ "Couldn't find " <> name <> " in nodes" - Just a -> Right a From 40f096e0d154b8896845b265cf298fb6c2981aa1 Mon Sep 17 00:00:00 2001 From: Jonathan Lorimer Date: Thu, 17 Feb 2022 17:57:53 -0500 Subject: [PATCH 2/9] fix check --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index fd00e8bf..1e0b9f99 100644 --- a/flake.nix +++ b/flake.nix @@ -77,7 +77,7 @@ # nix flake check checks = (import ./checks.nix) { - inherit inputs pkgs system; + inherit inputs system; packages = resources.packages; }; From 66216403e950785b514ea077196ab4350b5c42a0 Mon Sep 17 00:00:00 2001 From: Jonathan Lorimer Date: Fri, 18 Feb 2022 19:58:47 -0500 Subject: [PATCH 3/9] add gaia6-ordered --- flake.lock | 26 ++++++++++++++++++++++---- flake.nix | 6 +++++- resources.nix | 2 +- resources/gaia/default.nix | 10 +++++++++- 4 files changed, 37 insertions(+), 7 deletions(-) diff --git a/flake.lock b/flake.lock index f6db9cb2..45f22980 100644 --- a/flake.lock +++ b/flake.lock @@ -98,19 +98,36 @@ "type": "github" } }, + "gaia6-ordered-src": { + "flake": false, + "locked": { + "lastModified": 1645031158, + "narHash": "sha256-uwNYYXhU+FhZ+9bXHfmPQTKMR+usP1wI6DVeaZa+ys4=", + "owner": "informalsystems", + "repo": "gaia", + "rev": "34e6f66a3d729a36f51c9a7f5ffd211bcd1cd90c", + "type": "github" + }, + "original": { + "owner": "informalsystems", + "ref": "v6.0.1-ordered", + "repo": "gaia", + "type": "github" + } + }, "gaia6-src": { "flake": false, "locked": { - "lastModified": 1645118548, - "narHash": "sha256-an1JVPCMcJgQYi+inx4MrAcwYjHTVFvDzw865pJc6C8=", + "lastModified": 1645184577, + "narHash": "sha256-a24C1sooMj8mVGYYV2wL7P3kM7xj/MVzfeggj186PQo=", "owner": "cosmos", "repo": "gaia", - "rev": "05f3795f196dd32e9233db97ed8742f8559cb483", + "rev": "8f5dd7549fd21b99099e100da043bd8919d37ac3", "type": "github" }, "original": { "owner": "cosmos", - "ref": "v6.0.2", + "ref": "v6.0.3", "repo": "gaia", "type": "github" } @@ -290,6 +307,7 @@ "flake-utils": "flake-utils", "gaia4-src": "gaia4-src", "gaia5-src": "gaia5-src", + "gaia6-ordered-src": "gaia6-ordered-src", "gaia6-src": "gaia6-src", "ibc-rs-src": "ibc-rs-src", "iris-src": "iris-src", diff --git a/flake.nix b/flake.nix index 1e0b9f99..de458b6a 100644 --- a/flake.nix +++ b/flake.nix @@ -28,8 +28,11 @@ relayer-src.flake = false; # Chain Sources + gaia6-ordered-src.flake = false; + gaia6-ordered-src.url = github:informalsystems/gaia/v6.0.1-ordered; + gaia6-src.flake = false; - gaia6-src.url = github:cosmos/gaia/v6.0.2; + gaia6-src.url = github:cosmos/gaia/v6.0.3; gaia5-src.flake = false; gaia5-src.url = github:cosmos/gaia/v5.0.8; @@ -91,6 +94,7 @@ gaia4 = mkApp { name = "gaia"; drv = packages.gaia4; exePath = "/bin/gaiad"; }; gaia5 = mkApp { name = "gaia"; drv = packages.gaia5; exePath = "/bin/gaiad"; }; gaia6 = mkApp { name = "gaia"; drv = packages.gaia6; exePath = "/bin/gaiad"; }; + gaia6-ordered = mkApp { name = "gaia"; drv = packages.gaia6-ordered; exePath = "/bin/gaiad"; }; cosmovisor = mkApp { name = "cosmovisor"; drv = packages.cosmovisor; }; simd = mkApp { name = "simd"; drv = packages.simd; }; stoml = mkApp { name = "stoml"; drv = packages.stoml; }; diff --git a/resources.nix b/resources.nix index e0dd12f7..1ba9f52e 100644 --- a/resources.nix +++ b/resources.nix @@ -95,7 +95,7 @@ let }; ts-relayer = ((import ./resources/ts-relayer) { inherit ts-relayer-src pkgs eval-pkgs; }).ts-relayer; ts-relayer-setup = ((import ./resources/ts-relayer) { inherit ts-relayer-src pkgs eval-pkgs; }).ts-relayer-setup; - } // (import ./resources/gaia { inherit pkgs gaia4-src gaia5-src gaia6-src; }); + } // (import ./resources/gaia { inherit pkgs gaia4-src gaia5-src gaia6-src gaia6-ordered-src; }); # Dev shells devShells = { diff --git a/resources/gaia/default.nix b/resources/gaia/default.nix index 33fa8eb6..cfdd0273 100644 --- a/resources/gaia/default.nix +++ b/resources/gaia/default.nix @@ -1,4 +1,4 @@ -{ pkgs, gaia4-src, gaia5-src, gaia6-src }: +{ pkgs, gaia4-src, gaia5-src, gaia6-src, gaia6-ordered-src }: let parser = import ../goModParser.nix; in @@ -47,5 +47,13 @@ builtins.mapAttrs src = gaia6-src; ledgerSupport = false; }; + + gaia6-ordered = { + vendorSha256 = "sha256-Jtxa9SAj69iQWUbaM5YSxS8n3Sob7L/3Cf2j0SU5Q+s="; + version = "v6.0.1-ordered"; + src = gaia6-ordered-src; + ledgerSupport = false; + }; + } From 24b2e43a814b9f447e401a057980c4da8c3dec8e Mon Sep 17 00:00:00 2001 From: Jonathan Lorimer Date: Fri, 18 Feb 2022 20:03:59 -0500 Subject: [PATCH 4/9] update gaia6 --- resources/gaia/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/gaia/default.nix b/resources/gaia/default.nix index cfdd0273..52a3edcc 100644 --- a/resources/gaia/default.nix +++ b/resources/gaia/default.nix @@ -42,8 +42,8 @@ builtins.mapAttrs }; gaia6 = { - vendorSha256 = "sha256-CNxWgIWf+8wB2CAUk+WadnIb3fi1UYftPea5sWtk/Rs="; - version = "v6.0.2"; + vendorSha256 = "sha256-a0ps1vlnXIzke5JHqXyav+Jrp9j3d4ohtBq4AWy+uUI="; + version = "v6.0.3"; src = gaia6-src; ledgerSupport = false; }; From 96df2df7657a7bcd53fd319d1f45564868c5bd1d Mon Sep 17 00:00:00 2001 From: Jonathan Lorimer Date: Fri, 18 Feb 2022 20:54:26 -0500 Subject: [PATCH 5/9] trying to fix CI --- .github/workflows/ci.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1bf42b7d..9cf0f128 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,10 +8,8 @@ jobs: uses: actions/checkout@v2.3.1 - name: Install Nix ❄️ - uses: cachix/install-nix-action@v13 + uses: cachix/install-nix-action@v15 with: - install_url: https://nixos-nix-install-tests.cachix.org/serve/i6laym9jw3wg9mw6ncyrk6gjx4l34vvx/install - install_options: '--tarball-url-prefix https://nixos-nix-install-tests.cachix.org/serve' extra_nix_config: | experimental-features = nix-command flakes From 7abefe5382226b685d2f992b1576df12cbc04482 Mon Sep 17 00:00:00 2001 From: Jonathan Lorimer Date: Mon, 21 Feb 2022 18:59:16 -0500 Subject: [PATCH 6/9] remove gaia6-ordered --- flake.nix | 4 ---- resources.nix | 2 +- resources/gaia/default.nix | 9 +-------- 3 files changed, 2 insertions(+), 13 deletions(-) diff --git a/flake.nix b/flake.nix index de458b6a..8d7194f9 100644 --- a/flake.nix +++ b/flake.nix @@ -28,9 +28,6 @@ relayer-src.flake = false; # Chain Sources - gaia6-ordered-src.flake = false; - gaia6-ordered-src.url = github:informalsystems/gaia/v6.0.1-ordered; - gaia6-src.flake = false; gaia6-src.url = github:cosmos/gaia/v6.0.3; @@ -94,7 +91,6 @@ gaia4 = mkApp { name = "gaia"; drv = packages.gaia4; exePath = "/bin/gaiad"; }; gaia5 = mkApp { name = "gaia"; drv = packages.gaia5; exePath = "/bin/gaiad"; }; gaia6 = mkApp { name = "gaia"; drv = packages.gaia6; exePath = "/bin/gaiad"; }; - gaia6-ordered = mkApp { name = "gaia"; drv = packages.gaia6-ordered; exePath = "/bin/gaiad"; }; cosmovisor = mkApp { name = "cosmovisor"; drv = packages.cosmovisor; }; simd = mkApp { name = "simd"; drv = packages.simd; }; stoml = mkApp { name = "stoml"; drv = packages.stoml; }; diff --git a/resources.nix b/resources.nix index 1ba9f52e..e0dd12f7 100644 --- a/resources.nix +++ b/resources.nix @@ -95,7 +95,7 @@ let }; ts-relayer = ((import ./resources/ts-relayer) { inherit ts-relayer-src pkgs eval-pkgs; }).ts-relayer; ts-relayer-setup = ((import ./resources/ts-relayer) { inherit ts-relayer-src pkgs eval-pkgs; }).ts-relayer-setup; - } // (import ./resources/gaia { inherit pkgs gaia4-src gaia5-src gaia6-src gaia6-ordered-src; }); + } // (import ./resources/gaia { inherit pkgs gaia4-src gaia5-src gaia6-src; }); # Dev shells devShells = { diff --git a/resources/gaia/default.nix b/resources/gaia/default.nix index 52a3edcc..4ceccacd 100644 --- a/resources/gaia/default.nix +++ b/resources/gaia/default.nix @@ -1,4 +1,4 @@ -{ pkgs, gaia4-src, gaia5-src, gaia6-src, gaia6-ordered-src }: +{ pkgs, gaia4-src, gaia5-src, gaia6-src }: let parser = import ../goModParser.nix; in @@ -48,12 +48,5 @@ builtins.mapAttrs ledgerSupport = false; }; - gaia6-ordered = { - vendorSha256 = "sha256-Jtxa9SAj69iQWUbaM5YSxS8n3Sob7L/3Cf2j0SU5Q+s="; - version = "v6.0.1-ordered"; - src = gaia6-ordered-src; - ledgerSupport = false; - }; - } From 54f73d8c55fc841833543932bcc312aabf09ccd7 Mon Sep 17 00:00:00 2001 From: Jonathan Lorimer Date: Mon, 21 Feb 2022 18:59:57 -0500 Subject: [PATCH 7/9] remove gaia6-ordered from flake.lock --- flake.lock | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/flake.lock b/flake.lock index 45f22980..cce04970 100644 --- a/flake.lock +++ b/flake.lock @@ -98,23 +98,6 @@ "type": "github" } }, - "gaia6-ordered-src": { - "flake": false, - "locked": { - "lastModified": 1645031158, - "narHash": "sha256-uwNYYXhU+FhZ+9bXHfmPQTKMR+usP1wI6DVeaZa+ys4=", - "owner": "informalsystems", - "repo": "gaia", - "rev": "34e6f66a3d729a36f51c9a7f5ffd211bcd1cd90c", - "type": "github" - }, - "original": { - "owner": "informalsystems", - "ref": "v6.0.1-ordered", - "repo": "gaia", - "type": "github" - } - }, "gaia6-src": { "flake": false, "locked": { @@ -307,7 +290,6 @@ "flake-utils": "flake-utils", "gaia4-src": "gaia4-src", "gaia5-src": "gaia5-src", - "gaia6-ordered-src": "gaia6-ordered-src", "gaia6-src": "gaia6-src", "ibc-rs-src": "ibc-rs-src", "iris-src": "iris-src", From 03019a8b386595d78037235e1b240b5e1d9101f5 Mon Sep 17 00:00:00 2001 From: Jonathan Lorimer Date: Tue, 22 Feb 2022 10:09:33 -0500 Subject: [PATCH 8/9] add gaia minor versions --- flake.lock | 22 ++++++++++++++++++++-- flake.nix | 11 ++++++++--- resources.nix | 2 +- resources/gaia/default.nix | 13 ++++++++++--- 4 files changed, 39 insertions(+), 9 deletions(-) diff --git a/flake.lock b/flake.lock index cce04970..0615e506 100644 --- a/flake.lock +++ b/flake.lock @@ -98,7 +98,24 @@ "type": "github" } }, - "gaia6-src": { + "gaia6_0_2-src": { + "flake": false, + "locked": { + "lastModified": 1645118548, + "narHash": "sha256-an1JVPCMcJgQYi+inx4MrAcwYjHTVFvDzw865pJc6C8=", + "owner": "cosmos", + "repo": "gaia", + "rev": "05f3795f196dd32e9233db97ed8742f8559cb483", + "type": "github" + }, + "original": { + "owner": "cosmos", + "ref": "v6.0.2", + "repo": "gaia", + "type": "github" + } + }, + "gaia6_0_3-src": { "flake": false, "locked": { "lastModified": 1645184577, @@ -290,7 +307,8 @@ "flake-utils": "flake-utils", "gaia4-src": "gaia4-src", "gaia5-src": "gaia5-src", - "gaia6-src": "gaia6-src", + "gaia6_0_2-src": "gaia6_0_2-src", + "gaia6_0_3-src": "gaia6_0_3-src", "ibc-rs-src": "ibc-rs-src", "iris-src": "iris-src", "naersk": "naersk", diff --git a/flake.nix b/flake.nix index 8d7194f9..b4d1a4da 100644 --- a/flake.nix +++ b/flake.nix @@ -28,8 +28,11 @@ relayer-src.flake = false; # Chain Sources - gaia6-src.flake = false; - gaia6-src.url = github:cosmos/gaia/v6.0.3; + gaia6_0_2-src.flake = false; + gaia6_0_2-src.url = github:cosmos/gaia/v6.0.2; + + gaia6_0_3-src.flake = false; + gaia6_0_3-src.url = github:cosmos/gaia/v6.0.3; gaia5-src.flake = false; gaia5-src.url = github:cosmos/gaia/v5.0.8; @@ -90,7 +93,9 @@ gaia = mkApp { name = "gaia"; drv = packages.gaia5; exePath = "/bin/gaiad"; }; gaia4 = mkApp { name = "gaia"; drv = packages.gaia4; exePath = "/bin/gaiad"; }; gaia5 = mkApp { name = "gaia"; drv = packages.gaia5; exePath = "/bin/gaiad"; }; - gaia6 = mkApp { name = "gaia"; drv = packages.gaia6; exePath = "/bin/gaiad"; }; + gaia6 = mkApp { name = "gaia"; drv = packages.gaia6_0_3; exePath = "/bin/gaiad"; }; + gaia6_0_2 = mkApp { name = "gaia"; drv = packages.gaia6_0_2; exePath = "/bin/gaiad"; }; + gaia6_0_3 = mkApp { name = "gaia"; drv = packages.gaia6_0_3; exePath = "/bin/gaiad"; }; cosmovisor = mkApp { name = "cosmovisor"; drv = packages.cosmovisor; }; simd = mkApp { name = "simd"; drv = packages.simd; }; stoml = mkApp { name = "stoml"; drv = packages.stoml; }; diff --git a/resources.nix b/resources.nix index e0dd12f7..3f91e586 100644 --- a/resources.nix +++ b/resources.nix @@ -95,7 +95,7 @@ let }; ts-relayer = ((import ./resources/ts-relayer) { inherit ts-relayer-src pkgs eval-pkgs; }).ts-relayer; ts-relayer-setup = ((import ./resources/ts-relayer) { inherit ts-relayer-src pkgs eval-pkgs; }).ts-relayer-setup; - } // (import ./resources/gaia { inherit pkgs gaia4-src gaia5-src gaia6-src; }); + } // (import ./resources/gaia { inherit pkgs gaia4-src gaia5-src gaia6_0_2-src gaia6_0_3-src; }); # Dev shells devShells = { diff --git a/resources/gaia/default.nix b/resources/gaia/default.nix index 4ceccacd..2e287c86 100644 --- a/resources/gaia/default.nix +++ b/resources/gaia/default.nix @@ -1,4 +1,4 @@ -{ pkgs, gaia4-src, gaia5-src, gaia6-src }: +{ pkgs, gaia4-src, gaia5-src, gaia6_0_2-src, gaia6_0_3-src }: let parser = import ../goModParser.nix; in @@ -41,10 +41,17 @@ builtins.mapAttrs ledgerSupport = false; }; - gaia6 = { + gaia6_0_3 = { vendorSha256 = "sha256-a0ps1vlnXIzke5JHqXyav+Jrp9j3d4ohtBq4AWy+uUI="; version = "v6.0.3"; - src = gaia6-src; + src = gaia6_0_3-src; + ledgerSupport = false; + }; + + gaia6_0_2 = { + vendorSha256 = "sha256-CNxWgIWf+8wB2CAUk+WadnIb3fi1UYftPea5sWtk/Rs="; + version = "v6.0.2"; + src = gaia6_0_2-src; ledgerSupport = false; }; From bd6062c47569cc7e97f176b4f0c2931e3ee6cfef Mon Sep 17 00:00:00 2001 From: Jonathan Lorimer Date: Tue, 22 Feb 2022 10:10:32 -0500 Subject: [PATCH 9/9] use gaia6 for gaia attr --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index b4d1a4da..a8da1c2d 100644 --- a/flake.nix +++ b/flake.nix @@ -90,7 +90,7 @@ # nix run .# apps = { hermes = mkApp { name = "hermes"; drv = packages.hermes; }; - gaia = mkApp { name = "gaia"; drv = packages.gaia5; exePath = "/bin/gaiad"; }; + gaia = mkApp { name = "gaia"; drv = packages.gaia6_0_3; exePath = "/bin/gaiad"; }; gaia4 = mkApp { name = "gaia"; drv = packages.gaia4; exePath = "/bin/gaiad"; }; gaia5 = mkApp { name = "gaia"; drv = packages.gaia5; exePath = "/bin/gaiad"; }; gaia6 = mkApp { name = "gaia"; drv = packages.gaia6_0_3; exePath = "/bin/gaiad"; };