| Crates.io | armature-features |
| lib.rs | armature-features |
| version | 0.1.2 |
| created_at | 2025-12-26 22:46:55.895606+00 |
| updated_at | 2025-12-30 22:19:43.570842+00 |
| description | Feature flags, A/B testing, and gradual rollout for Armature |
| homepage | https://pegasusheavy.github.io/armature |
| repository | https://github.com/pegasusheavy/armature |
| max_upload_size | |
| id | 2006373 |
| size | 85,158 |
Feature flags and A/B testing for the Armature framework.
[dependencies]
armature-features = "0.1"
use armature_features::FeatureFlags;
let flags = FeatureFlags::new()
.launchdarkly("sdk-key") // or custom backend
.build();
// Check feature
if flags.is_enabled("new-checkout", &user_context) {
// New checkout flow
}
// Get variant
let variant = flags.get_variant("button-color", &user_context);
MIT OR Apache-2.0