From 696a66a662e453967fd6984a4a92fb317b783ef0 Mon Sep 17 00:00:00 2001 From: tison Date: Fri, 20 Dec 2024 13:50:39 +0800 Subject: [PATCH] chore: docs + release Signed-off-by: tison --- mea/src/lib.rs | 1 + xtask/Cargo.toml | 3 +++ xtask/src/main.rs | 1 - 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/mea/src/lib.rs b/mea/src/lib.rs index 36d1e17..53dcd22 100644 --- a/mea/src/lib.rs +++ b/mea/src/lib.rs @@ -48,6 +48,7 @@ //! [`Condvar`]: condvar::Condvar //! [`Latch`]: latch::Latch //! [`Mutex`]: mutex::Mutex +//! [`RwLock`]: rwlock::RwLock //! [`Semaphore`]: semaphore::Semaphore //! [`WaitGroup`]: waitgroup::WaitGroup diff --git a/xtask/Cargo.toml b/xtask/Cargo.toml index adfd74d..f35fe0f 100644 --- a/xtask/Cargo.toml +++ b/xtask/Cargo.toml @@ -23,6 +23,9 @@ readme.workspace = true repository.workspace = true rust-version.workspace = true +[package.metadata.release] +release = false + [dependencies] clap = { version = "4.5.20", features = ["derive"] } which = { version = "7.0.0" } diff --git a/xtask/src/main.rs b/xtask/src/main.rs index f5d00fb..8c0ff57 100644 --- a/xtask/src/main.rs +++ b/xtask/src/main.rs @@ -64,7 +64,6 @@ struct CommandTest { impl CommandTest { fn run(self) { run_command(make_test_cmd(self.no_capture, true, &[])); - // run_command(make_test_cmd(self.no_capture, false, &[])); } }