featureflag 0.0.1

Runtime feature flagging for Rust
docs.rs failed to build featureflag-0.0.1
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: featureflag-0.0.3

Feature flagging facade for Rust.

This library provides a flexible and extensible way to control feature flags in Rust applications.

The core trait of this library is the [Evaluator], which is used to evaluate feature flags at runtime.

The [context!] macro and [Context] type can be in evaluators to provide contextual information for feature flag evaluation, such as user ID and session ID.

The [is_enabled!] macro is the primary way to check if a feature is enabled. This macro takes a feature name and a default value, and returns a boolean indicating whether the feature is enabled or not. Alternatively, the [feature!] macro can be used to store a [Feature] is a variable or constant, or the [Feature::new] or [Feature::new_with_default_fn] methods can be used directly to create new feature flags at runtime.