From 7512fb355855db18c3521fb486a3507c64dd2e64 Mon Sep 17 00:00:00 2001 From: Nick Spinale Date: Tue, 13 Feb 2024 10:22:53 +0000 Subject: [PATCH] crates/private/meta: Add missing crates Signed-off-by: Nick Spinale --- Cargo.lock | 2 ++ crates/private/meta/Cargo.nix | 2 ++ crates/private/meta/Cargo.toml | 2 ++ crates/private/meta/src/lib.rs | 2 ++ 4 files changed, 8 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index ed73b7c0b..6d33477e3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -989,10 +989,12 @@ dependencies = [ "sel4", "sel4-async-block-io", "sel4-async-block-io-fat", + "sel4-async-io", "sel4-async-network", "sel4-async-single-threaded-executor", "sel4-async-time", "sel4-async-unsync", + "sel4-atomic-ptr", "sel4-bounce-buffer-allocator", "sel4-config", "sel4-externally-shared", diff --git a/crates/private/meta/Cargo.nix b/crates/private/meta/Cargo.nix index 23504a629..d4ff855e9 100644 --- a/crates/private/meta/Cargo.nix +++ b/crates/private/meta/Cargo.nix @@ -18,10 +18,12 @@ mk { sel4-async-block-io sel4-async-block-io-fat + sel4-async-io sel4-async-network sel4-async-single-threaded-executor sel4-async-time sel4-async-unsync + sel4-atomic-ptr sel4-bounce-buffer-allocator sel4-immediate-sync-once-cell sel4-immutable-cell diff --git a/crates/private/meta/Cargo.toml b/crates/private/meta/Cargo.toml index aaf6b992d..e116b05c9 100644 --- a/crates/private/meta/Cargo.toml +++ b/crates/private/meta/Cargo.toml @@ -26,10 +26,12 @@ log = "0.4.17" sel4 = { path = "../../sel4" } sel4-async-block-io = { path = "../../sel4-async/block-io" } sel4-async-block-io-fat = { path = "../../sel4-async/block-io/fat" } +sel4-async-io = { path = "../../sel4-async/io" } sel4-async-network = { path = "../../sel4-async/network" } sel4-async-single-threaded-executor = { path = "../../sel4-async/single-threaded-executor" } sel4-async-time = { path = "../../sel4-async/time" } sel4-async-unsync = { path = "../../sel4-async/unsync" } +sel4-atomic-ptr = { path = "../../sel4-atomic-ptr" } sel4-bounce-buffer-allocator = { path = "../../sel4-bounce-buffer-allocator" } sel4-config = { path = "../../sel4/config" } sel4-externally-shared = { path = "../../sel4-externally-shared", features = ["unstable"] } diff --git a/crates/private/meta/src/lib.rs b/crates/private/meta/src/lib.rs index c527fe9ae..21140f83b 100644 --- a/crates/private/meta/src/lib.rs +++ b/crates/private/meta/src/lib.rs @@ -82,10 +82,12 @@ definitely! { sel4 sel4_async_block_io sel4_async_block_io_fat + sel4_async_io sel4_async_network sel4_async_single_threaded_executor sel4_async_time sel4_async_unsync + sel4_atomic_ptr sel4_bounce_buffer_allocator sel4_config sel4_externally_shared