From 8e3c8dbeaf05c7b69af79a19d35afc8d0ec33e80 Mon Sep 17 00:00:00 2001 From: Lucy Date: Sun, 6 Mar 2022 14:57:35 -0500 Subject: [PATCH] Activate `embedded-fs` feature when building on docs.rs This is so `EmbeddedFs` will actually show up in the online docs. --- Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 6d5cb04..1d0a344 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,3 +23,5 @@ camino = "1.0.5" embedded-fs = ["rust-embed"] export-test-macros = [] +[package.metadata.docs.rs] +features = ["embedded-fs"]