From 37d3e703c3553f2eae992e85b15b6023512992d1 Mon Sep 17 00:00:00 2001 From: Zekun Li Date: Mon, 2 Dec 2024 17:18:26 -0800 Subject: [PATCH] patch futures --- Cargo.lock | 27 +++++++++------------------ Cargo.toml | 9 +++++++++ 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 59c962d5ccc1d..4b2486bf5ad72 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -8400,8 +8400,7 @@ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" [[package]] name = "futures" version = "0.3.30" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0" +source = "git+https://github.com/aptos-labs/futures-rs?branch=backport#1845d7d36bc4bccbc0b57be68fbc05abd0b8bc68" dependencies = [ "futures-channel", "futures-core", @@ -8415,8 +8414,7 @@ dependencies = [ [[package]] name = "futures-channel" version = "0.3.30" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" +source = "git+https://github.com/aptos-labs/futures-rs?branch=backport#1845d7d36bc4bccbc0b57be68fbc05abd0b8bc68" dependencies = [ "futures-core", "futures-sink", @@ -8425,14 +8423,12 @@ dependencies = [ [[package]] name = "futures-core" version = "0.3.30" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" +source = "git+https://github.com/aptos-labs/futures-rs?branch=backport#1845d7d36bc4bccbc0b57be68fbc05abd0b8bc68" [[package]] name = "futures-executor" version = "0.3.30" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d" +source = "git+https://github.com/aptos-labs/futures-rs?branch=backport#1845d7d36bc4bccbc0b57be68fbc05abd0b8bc68" dependencies = [ "futures-core", "futures-task", @@ -8442,8 +8438,7 @@ dependencies = [ [[package]] name = "futures-io" version = "0.3.30" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" +source = "git+https://github.com/aptos-labs/futures-rs?branch=backport#1845d7d36bc4bccbc0b57be68fbc05abd0b8bc68" [[package]] name = "futures-lite" @@ -8476,8 +8471,7 @@ dependencies = [ [[package]] name = "futures-macro" version = "0.3.30" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" +source = "git+https://github.com/aptos-labs/futures-rs?branch=backport#1845d7d36bc4bccbc0b57be68fbc05abd0b8bc68" dependencies = [ "proc-macro2", "quote", @@ -8487,14 +8481,12 @@ dependencies = [ [[package]] name = "futures-sink" version = "0.3.30" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" +source = "git+https://github.com/aptos-labs/futures-rs?branch=backport#1845d7d36bc4bccbc0b57be68fbc05abd0b8bc68" [[package]] name = "futures-task" version = "0.3.30" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" +source = "git+https://github.com/aptos-labs/futures-rs?branch=backport#1845d7d36bc4bccbc0b57be68fbc05abd0b8bc68" [[package]] name = "futures-timer" @@ -8505,8 +8497,7 @@ checksum = "e64b03909df88034c26dc1547e8970b91f98bdb65165d6a4e9110d94263dbb2c" [[package]] name = "futures-util" version = "0.3.30" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" +source = "git+https://github.com/aptos-labs/futures-rs?branch=backport#1845d7d36bc4bccbc0b57be68fbc05abd0b8bc68" dependencies = [ "futures-channel", "futures-core", diff --git a/Cargo.toml b/Cargo.toml index b3c7a1fcfedec..47644e807048a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -916,3 +916,12 @@ serde-reflection = { git = "https://github.com/aptos-labs/serde-reflection", rev merlin = { git = "https://github.com/aptos-labs/merlin" } x25519-dalek = { git = "https://github.com/aptos-labs/x25519-dalek", branch = "zeroize_v1" } tonic = { git = "https://github.com/aptos-labs/tonic.git", rev = "0da1ba8b1751d6e19eb55be24cccf9ae933c666e" } +futures = { git = "https://github.com/aptos-labs/futures-rs", branch = "backport" } +futures-channel = { git = "https://github.com/aptos-labs/futures-rs", branch = "backport" } +futures-executor = { git = "https://github.com/aptos-labs/futures-rs", branch = "backport" } +futures-core = { git = "https://github.com/aptos-labs/futures-rs", branch = "backport" } +futures-util = { git = "https://github.com/aptos-labs/futures-rs", branch = "backport" } +futures-sink = { git = "https://github.com/aptos-labs/futures-rs", branch = "backport" } +futures-io = { git = "https://github.com/aptos-labs/futures-rs", branch = "backport" } +futures-task = { git = "https://github.com/aptos-labs/futures-rs", branch = "backport" } +futures-macro = { git = "https://github.com/aptos-labs/futures-rs", branch = "backport" }