diff --git a/Cargo.lock b/Cargo.lock index ce0cbf671f..ab58bbdd1e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -759,7 +759,7 @@ name = "chain-vote" version = "0.1.0" source = "git+https://github.com/input-output-hk/chain-libs.git?branch=master#1626503c539d31925fcd99c2683edc4f73ee15a6" dependencies = [ - "cfg-if 0.1.10", + "cfg-if 1.0.0", "chain-core", "chain-crypto", "const_format", @@ -1838,21 +1838,26 @@ dependencies = [ [[package]] name = "gtmpl" -version = "0.6.0" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f8bc64bdceb2909623131a62d470e809c32f86b8329d82f8d31d9971349cb00a" +checksum = "9b924c0ea1149cd5cc9b208b33a4acb036ffb4b39c10048569de20616988a2b4" dependencies = [ + "anyhow", "gtmpl_value", - "itertools", "lazy_static", "percent-encoding", + "thiserror", ] [[package]] name = "gtmpl_value" -version = "0.4.0" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8995bd73dd9ff926fdfe2b146e3e571d4b488488844561c9628cf7a736d973de" +checksum = "1d61bf6605eabca491ef6db6ed194e0aa82900ccc8bdea4c56ac277102152dd5" +dependencies = [ + "anyhow", + "thiserror", +] [[package]] name = "h2" diff --git a/jcli/Cargo.toml b/jcli/Cargo.toml index ee28d24558..5977d2fe8c 100644 --- a/jcli/Cargo.toml +++ b/jcli/Cargo.toml @@ -31,7 +31,7 @@ chain-crypto = { git = "https://github.com/input-output-hk/chain-libs.git", b chain-time = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" } chain-vote = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" } jormungandr-lib = { path = "../jormungandr-lib" } -gtmpl = "0.6.0" +gtmpl = "0.7.1" ed25519-bip32 = "0.4.1" thiserror = "1.0" bytes = "1.1"