From b15f252d59e7aaedaf94b610bb5e362bf32913f6 Mon Sep 17 00:00:00 2001 From: hi-rustin Date: Wed, 28 Sep 2022 11:05:15 +0800 Subject: [PATCH] Remove outdated comments Signed-off-by: hi-rustin --- src/cargo/core/resolver/features.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/cargo/core/resolver/features.rs b/src/cargo/core/resolver/features.rs index 23a1a76afd24..25af117a5081 100644 --- a/src/cargo/core/resolver/features.rs +++ b/src/cargo/core/resolver/features.rs @@ -45,9 +45,6 @@ use std::rc::Rc; /// The actual discrimination happens with the `FeaturesFor` type. type PackageFeaturesKey = (PackageId, FeaturesFor); /// Map of activated features. -/// -/// The key is `(PackageId, bool)` where the bool is `true` if these -/// are features for a build dependency or proc-macro. type ActivateMap = HashMap>; /// Set of all activated features for all packages in the resolve graph.