feature-flag 0.1.0

Server-side feature flag evaluation for async Rust: targeting rules, sticky percentage rollouts, hot reload, zero RNG.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.85"
name = "feature-flag"
version = "0.1.0"
authors = ["Miz Causevic <miz@kineticgain.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Server-side feature flag evaluation for async Rust: targeting rules, sticky percentage rollouts, hot reload, zero RNG."
homepage = "https://kineticgain.com/"
documentation = "https://docs.rs/feature-flag"
readme = "README.md"
keywords = [
    "feature-flags",
    "rollout",
    "targeting",
    "tokio",
    "config",
]
categories = [
    "asynchronous",
    "config",
    "development-tools",
]
license = "MIT"
repository = "https://github.com/mizcausevic-dev/feature-flag-rs"

[lib]
name = "feature_flag"
path = "src/lib.rs"

[[example]]
name = "evaluate"
path = "examples/evaluate.rs"

[[test]]
name = "evaluator"
path = "tests/evaluator.rs"

[[test]]
name = "hot_reload"
path = "tests/hot_reload.rs"

[[test]]
name = "model"
path = "tests/model.rs"

[[bench]]
name = "evaluate"
path = "benches/evaluate.rs"
harness = false

[dependencies.parking_lot]
version = "0.12"

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.sha2]
version = "0.10"

[dependencies.thiserror]
version = "1.0"

[dependencies.tokio]
version = "1.38"
features = [
    "sync",
    "fs",
    "time",
    "rt",
    "macros",
]

[dev-dependencies.criterion]
version = "0.5"
features = ["async_tokio"]

[dev-dependencies.tempfile]
version = "3.10"

[dev-dependencies.tokio]
version = "1.38"
features = [
    "full",
    "test-util",
]