mirror of
https://forgejo.ellis.link/continuwuation/continuwuity.git
synced 2026-05-26 20:49:55 +00:00
16de2a2cc0
Also re-adds ability to inspect used features
8 lines
286 B
Rust
8 lines
286 B
Rust
//! Information about features the crates were compiled with.
|
|
//! Only available for crates that have called the `introspect_crate` macro
|
|
|
|
use std::collections::BTreeMap;
|
|
|
|
pub static ENABLED_FEATURES: std::sync::Mutex<BTreeMap<&str, &[&str]>> =
|
|
std::sync::Mutex::new(BTreeMap::new());
|