You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 22, 2025. It is now read-only.
// CARGO_FEATURE_<name> — For each activated feature of the package being built, this environment variable will be present where <name> is the name of the feature uppercased and having - translated to _.
if let Some(uprfeature) = key.strip_prefix("CARGO_FEATURE_") {
let feature = uprfeature.to_lowercase().replace('_', "-"); // actual proper name of the enabled feature