From 66221b660553cbad52398f062df94858c24a7866 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sat, 28 Sep 2024 16:01:02 -0600 Subject: [PATCH] inout: re-add `package.metadata.docs.rs` to Cargo.toml (#1122) We need to instruct it to build with the `block-padding` feature to ensure that's properly documented. This commit re-adds `all-features = true` --- inout/Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/inout/Cargo.toml b/inout/Cargo.toml index d0f93d26..6bd03670 100644 --- a/inout/Cargo.toml +++ b/inout/Cargo.toml @@ -14,3 +14,6 @@ readme = "README.md" [dependencies] block-padding = { version = "0.4.0-rc.1", path = "../block-padding", optional = true } hybrid-array = "0.2.0-rc.10" + +[package.metadata.docs.rs] +all-features = true