update deps

Changed files
+28 -19
futures
futures-combinators
futures-compat
futures-core
src
futures-util
lifetime-guard
+7 -7
Cargo.lock
··· 4 4 5 5 [[package]] 6 6 name = "futures" 7 - version = "0.1.0" 7 + version = "0.0.0" 8 8 dependencies = [ 9 9 "futures-combinators", 10 10 "futures-compat", ··· 15 15 16 16 [[package]] 17 17 name = "futures-combinators" 18 - version = "0.1.0" 18 + version = "0.0.0" 19 19 dependencies = [ 20 20 "futures-core", 21 21 "futures-util", ··· 23 23 24 24 [[package]] 25 25 name = "futures-compat" 26 - version = "0.1.0" 26 + version = "0.0.0" 27 27 dependencies = [ 28 28 "futures-core", 29 29 ] 30 30 31 31 [[package]] 32 32 name = "futures-core" 33 - version = "0.1.0" 33 + version = "0.0.0" 34 34 35 35 [[package]] 36 36 name = "futures-derive" 37 - version = "0.1.0" 37 + version = "0.0.0" 38 38 dependencies = [ 39 39 "proc-macro2", 40 40 "quote", ··· 43 43 44 44 [[package]] 45 45 name = "futures-util" 46 - version = "0.1.0" 46 + version = "0.0.0" 47 47 dependencies = [ 48 48 "futures-core", 49 49 ] 50 50 51 51 [[package]] 52 52 name = "lifetime-guard" 53 - version = "0.1.0" 53 + version = "0.0.0" 54 54 55 55 [[package]] 56 56 name = "proc-macro2"
+9 -1
Cargo.toml
··· 3 3 members = [ "futures", "futures-core", "futures-combinators", "futures-compat", "futures-derive", "futures-util", "lifetime-guard"] 4 4 5 5 [workspace.package] 6 - version = "0.1.0" 6 + version = "0.0.0" 7 7 rust-version = "1.87" 8 8 edition = "2024" 9 9 license = "MIT OR Apache-2.0" ··· 11 11 repository = "https://github.com/AngleSideAngle/bcsc" 12 12 homepage = "https://github.com/AngleSideAngle/bcsc" 13 13 14 + [workspace.dependencies] 15 + futures = { path = "futures", version = "0.0.0" } 16 + futures-combinators = { path = "futures-combinators", version = "0.0.0" } 17 + futures-compat = { path = "futures-compat", version = "0.0.0" } 18 + futures-core = { path = "futures-core", version = "0.0.0" } 19 + futures-derive = { path = "futures-derive", version = "0.0.0" } 20 + futures-util = { path = "futures-util", version = "0.0.0" } 21 + lifetime-guard = { path = "lifetime-guard", version = "0.0.0" }
+2 -2
futures-combinators/Cargo.toml
··· 9 9 homepage.workspace = true 10 10 11 11 [dependencies] 12 - futures-core = { path = "../futures-core" } 13 - futures-util = { path = "../futures-util" } 12 + futures-core = { workspace = true } 13 + futures-util = { workspace = true }
+1 -1
futures-compat/Cargo.toml
··· 9 9 homepage.workspace = true 10 10 11 11 [dependencies] 12 - futures-core = { path = "../futures-core" } 12 + futures-core = { workspace = true }
+1 -1
futures-core/src/task.rs
··· 1 - use std::{mem, ptr::NonNull, sync::atomic::AtomicPtr}; 1 + use std::mem; 2 2 3 3 // Task: Wake 4 4 //
+1 -1
futures-util/Cargo.toml
··· 9 9 homepage.workspace = true 10 10 11 11 [dependencies] 12 - futures-core = { path = "../futures-core" } 12 + futures-core = { workspace = true }
+5 -5
futures/Cargo.toml
··· 9 9 homepage.workspace = true 10 10 11 11 [dependencies] 12 - futures-core = { path = "../futures-core" } 13 - futures-combinators = { path = "../futures-combinators" } 14 - futures-compat = { path = "../futures-compat" } 15 - futures-derive = { path = "../futures-derive" } 16 - futures-util = { path = "../futures-util" } 12 + futures-core = { workspace = true } 13 + futures-combinators = { workspace = true } 14 + futures-compat = { workspace = true } 15 + futures-derive = { workspace = true } 16 + futures-util = { workspace = true }
-1
futures/result
··· 1 - /nix/store/yzi2mlj92m2pqix3zv5lq3v1xryjpq19-rust-workspace-unknown
+2
lifetime-guard/Cargo.toml
··· 1 1 [package] 2 2 name = "lifetime-guard" 3 + keywords = [ "weak_ptr", "value_guard", "no_std" ] 4 + categories = [ "data-structures", "no-std::no-alloc" ] 3 5 version.workspace = true 4 6 rust-version.workspace = true 5 7 edition.workspace = true