diff --git a/Cargo.lock b/Cargo.lock index 729e0397748f1..e64302b3cbcd2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2506,7 +2506,7 @@ dependencies = [ "httparse", "httpdate", "itoa", - "pin-project 1.0.4", + "pin-project 1.0.10", "socket2", "tokio 0.2.25", "tower-service", @@ -3075,7 +3075,7 @@ dependencies = [ "libp2p-yamux", "parity-multiaddr", "parking_lot 0.11.1", - "pin-project 1.0.4", + "pin-project 1.0.10", "smallvec 1.6.1", "wasm-timer", ] @@ -3100,7 +3100,7 @@ dependencies = [ "multistream-select", "parity-multiaddr", "parking_lot 0.11.1", - "pin-project 1.0.4", + "pin-project 1.0.10", "prost", "prost-build", "rand 0.7.3", @@ -3323,7 +3323,7 @@ checksum = "6ce3374f3b28162db9d3442c9347c4f14cb01e8290052615c7d341d40eae0599" dependencies = [ "futures 0.3.12", "log", - "pin-project 1.0.4", + "pin-project 1.0.10", "rand 0.7.3", "salsa20", "sha3", @@ -3854,7 +3854,7 @@ dependencies = [ "bytes 1.0.1", "futures 0.3.12", "log", - "pin-project 1.0.4", + "pin-project 1.0.10", "smallvec 1.6.1", "unsigned-varint 0.6.0", ] @@ -5869,11 +5869,11 @@ dependencies = [ [[package]] name = "pin-project" -version = "1.0.4" +version = "1.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "95b70b68509f17aa2857863b6fa00bf21fc93674c7a8893de2f469f6aa7ca2f2" +checksum = "58ad3879ad3baf4e44784bc6a718a8698867bb991f8ce24d1bcbe2cfb4c3a75e" dependencies = [ - "pin-project-internal 1.0.4", + "pin-project-internal 1.0.10", ] [[package]] @@ -5889,9 +5889,9 @@ dependencies = [ [[package]] name = "pin-project-internal" -version = "1.0.4" +version = "1.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "caa25a6393f22ce819b0f50e0be89287292fda8d425be38ee0ca14c4931d9e71" +checksum = "744b6f092ba29c3650faf274db506afd39944f48420f6c86b17cfe0ee1cb36bb" dependencies = [ "proc-macro2", "quote", @@ -7305,7 +7305,7 @@ dependencies = [ "log", "parity-scale-codec", "parking_lot 0.11.1", - "pin-project 1.0.4", + "pin-project 1.0.10", "rand 0.7.3", "sc-block-builder", "sc-client-api", @@ -7477,7 +7477,7 @@ dependencies = [ "nohash-hasher", "parity-scale-codec", "parking_lot 0.11.1", - "pin-project 1.0.4", + "pin-project 1.0.10", "prost", "prost-build", "quickcheck", @@ -7724,7 +7724,7 @@ dependencies = [ "parity-scale-codec", "parity-util-mem", "parking_lot 0.11.1", - "pin-project 1.0.4", + "pin-project 1.0.10", "rand 0.7.3", "sc-block-builder", "sc-chain-spec", @@ -7855,7 +7855,7 @@ dependencies = [ "libp2p", "log", "parking_lot 0.11.1", - "pin-project 1.0.4", + "pin-project 1.0.10", "rand 0.7.3", "serde", "serde_json", diff --git a/client/finality-grandpa/Cargo.toml b/client/finality-grandpa/Cargo.toml index 7ae5666c7bc84..fc186c05ea32e 100644 --- a/client/finality-grandpa/Cargo.toml +++ b/client/finality-grandpa/Cargo.toml @@ -45,7 +45,7 @@ sp-finality-grandpa = { version = "3.0.0", path = "../../primitives/finality-gra prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.9.0"} sc-block-builder = { version = "0.9.0", path = "../block-builder" } finality-grandpa = { version = "0.14.0", features = ["derive-codec"] } -pin-project = "1.0.4" +pin-project = "1.0.10" linked-hash-map = "0.5.2" [dev-dependencies] diff --git a/client/network/Cargo.toml b/client/network/Cargo.toml index 3d8c33eae0f25..b72c9f435ccb5 100644 --- a/client/network/Cargo.toml +++ b/client/network/Cargo.toml @@ -40,7 +40,7 @@ lru = "0.6.5" log = "0.4.8" nohash-hasher = "0.2.0" parking_lot = "0.11.1" -pin-project = "1.0.4" +pin-project = "1.0.10" prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.9.0", path = "../../utils/prometheus" } prost = "0.7" rand = "0.7.2" diff --git a/client/service/Cargo.toml b/client/service/Cargo.toml index c6119695ace71..ad0fc86af861e 100644 --- a/client/service/Cargo.toml +++ b/client/service/Cargo.toml @@ -36,7 +36,7 @@ log = "0.4.11" futures-timer = "3.0.1" wasm-timer = "0.2" exit-future = "0.2.0" -pin-project = "1.0.4" +pin-project = "1.0.10" hash-db = "0.15.2" serde = "1.0.101" serde_json = "1.0.41" diff --git a/client/telemetry/Cargo.toml b/client/telemetry/Cargo.toml index 0d29fbca6f9b9..eccbcecddd704 100644 --- a/client/telemetry/Cargo.toml +++ b/client/telemetry/Cargo.toml @@ -20,7 +20,7 @@ futures = "0.3.9" wasm-timer = "0.2.5" libp2p = { version = "0.35.1", default-features = false, features = ["dns", "tcp-async-io", "wasm-ext", "websocket"] } log = "0.4.8" -pin-project = "1.0.4" +pin-project = "1.0.10" rand = "0.7.2" serde = { version = "1.0.101", features = ["derive"] } take_mut = "0.2.2"