diff --git a/Cargo.lock b/Cargo.lock index 0662c3da6d6a7..766593a314605 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2340,9 +2340,9 @@ checksum = "62aca2aba2d62b4a7f5b33f3712cb1b0692779a56fb510499d5c0aa594daeaf3" [[package]] name = "handlebars" -version = "3.5.3" +version = "4.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cdb0867bbc5a3da37a753e78021d5fcf8a4db00e18dd2dd90fd36e24190e162d" +checksum = "72a0ffab8c36d0436114310c7e10b59b3307e650ddfabf6d006028e29a70c6e6" dependencies = [ "log", "pest", @@ -4328,7 +4328,7 @@ name = "node-rpc-client" version = "2.0.0" dependencies = [ "futures 0.1.31", - "hyper 0.12.36", + "hyper 0.13.10", "jsonrpc-core-client", "log", "node-primitives", @@ -7763,7 +7763,7 @@ dependencies = [ "substrate-test-runtime-client", "tempfile", "thiserror", - "unsigned-varint 0.6.0", + "unsigned-varint 0.7.0", "void", "wasm-timer", "zeroize", @@ -10470,9 +10470,9 @@ dependencies = [ [[package]] name = "tracing-subscriber" -version = "0.2.18" +version = "0.2.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aa5553bf0883ba7c9cbe493b085c29926bd41b66afc31ff72cf17ff4fb60dcd5" +checksum = "b9cbe87a2fa7e35900ce5de20220a582a9483a7063811defce79d7cbd59d4cfe" dependencies = [ "ansi_term 0.12.1", "chrono", @@ -10729,18 +10729,6 @@ version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f7fdeedbf205afadfe39ae559b75c3240f24e257d0ca27e85f85cb82aa19ac35" -[[package]] -name = "unsigned-varint" -version = "0.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "35581ff83d4101e58b582e607120c7f5ffb17e632a980b1f38334d76b36908b2" -dependencies = [ - "asynchronous-codec 0.5.0", - "bytes 1.0.1", - "futures-io", - "futures-util", -] - [[package]] name = "unsigned-varint" version = "0.7.0" @@ -10909,9 +10897,9 @@ dependencies = [ [[package]] name = "wasm-bindgen-futures" -version = "0.4.20" +version = "0.4.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3de431a2910c86679c34283a33f66f4e4abd7e0aec27b6669060148872aadf94" +checksum = "81b8b767af23de6ac18bf2168b690bed2902743ddf0fb39252e36f9e2bfc63ea" dependencies = [ "cfg-if 1.0.0", "js-sys", @@ -10950,9 +10938,9 @@ checksum = "d9a543ae66aa233d14bb765ed9af4a33e81b8b58d1584cf1b47ff8cd0b9e4489" [[package]] name = "wasm-bindgen-test" -version = "0.3.20" +version = "0.3.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f0d4da138503a4cf86801b94d95781ee3619faa8feca830569cc6b54997b8b5c" +checksum = "e972e914de63aa53bd84865e54f5c761bd274d48e5be3a6329a662c0386aa67a" dependencies = [ "console_error_panic_hook", "js-sys", @@ -10964,9 +10952,9 @@ dependencies = [ [[package]] name = "wasm-bindgen-test-macro" -version = "0.3.20" +version = "0.3.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c3199c33f06500c731d5544664c24d0c2b742b98debc6b1c6f0c6d6e8fb7c19b" +checksum = "ea6153a8f9bf24588e9f25c87223414fff124049f68d3a442a0f0eab4768a8b6" dependencies = [ "proc-macro2", "quote", diff --git a/bin/node/browser-testing/Cargo.toml b/bin/node/browser-testing/Cargo.toml index f66a0a2ea1ab3..f3f176ee52d14 100644 --- a/bin/node/browser-testing/Cargo.toml +++ b/bin/node/browser-testing/Cargo.toml @@ -14,7 +14,7 @@ serde = "1.0.106" serde_json = "1.0.48" wasm-bindgen = { version = "=0.2.73", features = ["serde-serialize"] } wasm-bindgen-futures = "0.4.18" -wasm-bindgen-test = "0.3.18" +wasm-bindgen-test = "0.3.23" futures = "0.3.9" node-cli = { path = "../cli", default-features = false, features = ["browser"], version = "2.0.0"} diff --git a/bin/node/rpc-client/Cargo.toml b/bin/node/rpc-client/Cargo.toml index 1d9819de24b6d..46a4471caf430 100644 --- a/bin/node/rpc-client/Cargo.toml +++ b/bin/node/rpc-client/Cargo.toml @@ -12,7 +12,7 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] futures = "0.1.29" -hyper = "~0.12.35" +hyper = "~0.13.10" jsonrpc-core-client = { version = "15.1.0", default-features = false, features = ["http"] } log = "0.4.8" node-primitives = { version = "2.0.0", path = "../primitives" } diff --git a/client/executor/Cargo.toml b/client/executor/Cargo.toml index 1f10c65e12f90..0337ebe3860cb 100644 --- a/client/executor/Cargo.toml +++ b/client/executor/Cargo.toml @@ -49,7 +49,7 @@ sp-tracing = { version = "3.0.0", path = "../../primitives/tracing" } sp-maybe-compressed-blob = { version = "3.0.0", path = "../../primitives/maybe-compressed-blob" } sc-tracing = { version = "3.0.0", path = "../tracing" } tracing = "0.1.25" -tracing-subscriber = "0.2.18" +tracing-subscriber = "0.2.20" paste = "1.0" regex = "1" diff --git a/client/network/Cargo.toml b/client/network/Cargo.toml index 3740ebceb6389..a51990aea63f6 100644 --- a/client/network/Cargo.toml +++ b/client/network/Cargo.toml @@ -57,7 +57,7 @@ sp-core = { version = "3.0.0", path = "../../primitives/core" } sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" } sp-utils = { version = "3.0.0", path = "../../primitives/utils" } thiserror = "1" -unsigned-varint = { version = "0.6.0", features = ["futures", "asynchronous_codec"] } +unsigned-varint = { version = "0.7.0", features = ["futures", "asynchronous_codec"] } void = "1.0.2" wasm-timer = "0.2" zeroize = "1.2.0" diff --git a/client/offchain/Cargo.toml b/client/offchain/Cargo.toml index 9aca829c70d66..2fe724e0cf6c4 100644 --- a/client/offchain/Cargo.toml +++ b/client/offchain/Cargo.toml @@ -34,7 +34,7 @@ sp-utils = { version = "3.0.0", path = "../../primitives/utils" } threadpool = "1.7" [target.'cfg(not(target_os = "unknown"))'.dependencies] -hyper = "0.13.9" +hyper = "0.13.10" hyper-rustls = "0.21.0" [dev-dependencies] diff --git a/client/tracing/Cargo.toml b/client/tracing/Cargo.toml index 1121b922494c9..888c916751a92 100644 --- a/client/tracing/Cargo.toml +++ b/client/tracing/Cargo.toml @@ -27,7 +27,7 @@ serde_json = "1.0.41" thiserror = "1.0.21" tracing = "0.1.25" tracing-log = "0.1.2" -tracing-subscriber = "0.2.18" +tracing-subscriber = "0.2.20" sp-tracing = { version = "3.0.0", path = "../../primitives/tracing" } sp-rpc = { version = "3.0.0", path = "../../primitives/rpc" } sp-block-builder = { version = "3.0.0", path = "../../primitives/block-builder" } diff --git a/primitives/tracing/Cargo.toml b/primitives/tracing/Cargo.toml index 2c4b7dc12c744..7651fcf67ba9f 100644 --- a/primitives/tracing/Cargo.toml +++ b/primitives/tracing/Cargo.toml @@ -23,7 +23,7 @@ codec = { version = "2.0.0", package = "parity-scale-codec", default-features = tracing = { version = "0.1.25", default-features = false } tracing-core = { version = "0.1.17", default-features = false } log = { version = "0.4.8", optional = true } -tracing-subscriber = { version = "0.2.18", optional = true, features = ["tracing-log"] } +tracing-subscriber = { version = "0.2.20", optional = true, features = ["tracing-log"] } parking_lot = { version = "0.10.0", optional = true } erased-serde = { version = "0.3.9", optional = true } serde = { version = "1.0.101", optional = true } diff --git a/utils/frame/benchmarking-cli/Cargo.toml b/utils/frame/benchmarking-cli/Cargo.toml index 51290e5f44ab7..5ee9499fa011c 100644 --- a/utils/frame/benchmarking-cli/Cargo.toml +++ b/utils/frame/benchmarking-cli/Cargo.toml @@ -27,7 +27,7 @@ codec = { version = "2.0.0", package = "parity-scale-codec" } structopt = "0.3.8" chrono = "0.4" serde = "1.0.116" -handlebars = "3.5.0" +handlebars = "4.1.0" Inflector = "0.11.4" [features] diff --git a/utils/prometheus/Cargo.toml b/utils/prometheus/Cargo.toml index a7f90e831620b..ad5f08d3c6f77 100644 --- a/utils/prometheus/Cargo.toml +++ b/utils/prometheus/Cargo.toml @@ -20,5 +20,5 @@ derive_more = "0.99" [target.'cfg(not(target_os = "unknown"))'.dependencies] async-std = { version = "1.6.5", features = ["unstable"] } -hyper = { version = "0.13.9", default-features = false, features = ["stream"] } +hyper = { version = "0.13.10", default-features = false, features = ["stream"] } tokio = "0.2"