Crates.io | features |
lib.rs | features |
version | 0.10.0 |
source | src |
created_at | 2017-03-20 20:36:32.833445 |
updated_at | 2019-05-13 16:44:42.343185 |
description | A macro to generate runtime feature toggles. |
homepage | |
repository | https://github.com/fnichol/features-rs |
max_upload_size | |
id | 9068 |
size | 27,410 |
features
is a small library that implements runtime feature toggles for
your library or program allowing behavior to be changed on boot or dynamically at runtime using
the same compiled binary artifact. This is different from cargo's feature
support which uses conditional compilation.
At its core, it is a macro (features!
) that takes a collection of feature flag names which it
uses to generate a module containing a function to enable a feature toggle (::enable()
), a
function to disable a feature toggle (::disable()
) and a function to check if a feature
toggle is enabled (::is_enabled()
).
Basic example:
#[macro_use]
extern crate bitflags;
#[macro_use]
extern crate features;
features! {
pub mod feature {
const Alpha = 0b00000001,
const Beta = 0b00000010
}
}
fn main() {
assert_eq!(false, feature::is_enabled(feature::Alpha));
assert_eq!(false, feature::is_enabled(feature::Beta));
feature::enable(feature::Beta);
assert_eq!(false, feature::is_enabled(feature::Alpha));
assert_eq!(true, feature::is_enabled(feature::Beta));
}
Multiple feature sets:
#[macro_use]
extern crate bitflags;
#[macro_use]
extern crate features;
features! {
pub mod ux {
const JsonOutput = 0b10000000,
const VerboseOutput = 0b01000000
}
}
features! {
pub mod srv {
const Http2Downloading = 0b10000000,
const BitTorrentDownloading = 0b01000000
}
}
fn main() {
// Parse CLI args, environment, read config file etc...
srv::enable(srv::BitTorrentDownloading);
ux::enable(ux::JsonOutput);
if srv::is_enabled(srv::Http2Downloading) {
println!("Downloading via http2...");
} else if srv::is_enabled(srv::BitTorrentDownloading) {
println!("Downloading via bit torrent...");
} else {
println!("Downloading the old fashioned way...");
}
if ux::is_enabled(ux::VerboseOutput) {
println!("COOL");
}
}
Here are some articles and projects which insipred the implementation of features
:
Features is licensed under the Apache License, Version 2.0 and the MIT license. Please read the LICENSE-APACHE and LICENSE-MIT for details