From 5633dee289e3a354fac62e30b07652e6e91d7a9e Mon Sep 17 00:00:00 2001 From: Mahmoud Mazouz Date: Tue, 10 Sep 2024 08:21:53 +0000 Subject: [PATCH] Enable `shared-memory` feature on docs.rs --- zenoh/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zenoh/Cargo.toml b/zenoh/Cargo.toml index 32622509b5..32371823e1 100644 --- a/zenoh/Cargo.toml +++ b/zenoh/Cargo.toml @@ -118,10 +118,10 @@ rustc_version = { workspace = true } [lib] name = "zenoh" -# For doc generation on docs.rs, activate the "unstable" feature to generate their documentation +# For doc generation on docs.rs, activate the "unstable" and "shared-memory" feature to generate their documentation # NOTE: if you change this, also change it in .github/workflows/release.yml in "doc" job. [package.metadata.docs.rs] -features = ["unstable"] +features = ["unstable", "shared-memory"] rustdoc-args = ["--cfg", "doc_auto_cfg"] [package.metadata.deb]