From 2e2c69224ea2f4e7781752998d8d8782792dcec5 Mon Sep 17 00:00:00 2001 From: Jelte Fennema-Nio Date: Mon, 3 Feb 2025 20:38:45 +0100 Subject: [PATCH] Add Rust Playground metadata derive_more is being pulled into the playground due to being a dependency of some other crate in the top 100 crates, probably . This adds metadata so that it gets installed with all features once selectors updates to derive_more 2.0 --- Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 7349f6bf..c9b445fe 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -44,6 +44,9 @@ github = { repository = "JelteF/derive_more", workflow = "CI" } features = ["full"] rustdoc-args = ["--cfg", "docsrs"] +[package.metadata.playground] +features = ["full", "std"] + [lints.rust] unexpected_cfgs = { level = "warn", check-cfg = ["cfg(ci)", "cfg(nightly)"] }