evorule-reactor 0.4.2

Reactive fact-driven state transition engine with audit chain, time machine, and WAL
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.74"
name = "evorule-reactor"
version = "0.4.2"
authors = ["EvoRule Project"]
build = "build.rs"
exclude = [
    "collect_kani_artifacts.sh",
    "run_kani_proofs.sh",
    "**/hash_snapshot.txt",
    "docs/",
    "verification/",
    "benches/",
    "include/",
    "tests/build_ffi.ps1",
    "tests/test_evorule.c",
    "hash_snapshots/",
    "proptest-regressions/",
    "rust-toolchain.toml",
    "**/*.log",
    "install_log.txt",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Reactive fact-driven state transition engine with audit chain, time machine, and WAL"
homepage = "https://gitee.com/evorule/evorule"
documentation = "https://docs.rs/evorule-reactor"
readme = "README.md"
keywords = [
    "reactive",
    "audit",
    "rules-engine",
    "wal",
    "time-machine",
]
categories = [
    "asynchronous",
    "data-structures",
    "concurrency",
]
license = "AGPL-3.0-or-later"
repository = "https://gitee.com/evorule/evorule"

[package.metadata.kani]
proofs = [
    "invariant_version_monotonic",
    "max_rounds_termination",
    "invariant_cause_queue_sync",
]

[features]
ffi = []
kani = []
persistence = []

[lib]
name = "evorule_reactor"
crate-type = [
    "lib",
    "cdylib",
]
path = "src/lib.rs"

[[example]]
name = "generate_hashed_wal"
path = "examples/generate_hashed_wal.rs"
required-features = ["persistence"]

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

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

[dependencies.async-trait]
version = "0.1"

[dependencies.blake3]
version = "1"

[dependencies.evorule-tcb]
version = "0.4.1"

[dependencies.serde_json]
version = "1.0"

[dependencies.tokio]
version = "1.0"
features = [
    "sync",
    "rt",
    "rt-multi-thread",
    "time",
    "macros",
]

[dependencies.tracing]
version = "0.1"

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

[dev-dependencies.proptest]
version = "1.4"

[dev-dependencies.tokio]
version = "1.0"
features = ["full"]

[lints.clippy]
expect_used = "deny"
module_inception = "warn"
panic = "deny"
panic_in_result_fn = "deny"
unwrap_used = "deny"

[lints.clippy.all]
level = "warn"
priority = -1

[lints.clippy.cognitive_complexity]
level = "warn"
priority = -1

[lints.clippy.too_many_lines]
level = "warn"
priority = -1

[lints.clippy.type_complexity]
level = "warn"
priority = -1

[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(kani)"]