ready-active-safe 0.1.3

Lifecycle engine for externally driven systems
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.75"
name = "ready-active-safe"
version = "0.1.3"
authors = [
    "Jan Piotrzkowski <https://github.com/babilonczyk>",
    "State Runtime <https://github.com/stateruntime>",
]
build = false
exclude = [
    ".github/",
    ".editorconfig",
    "CLAUDE.md",
    "CONTRIBUTING.md",
    "SECURITY.md",
    "deny.toml",
    "justfile",
    "rust-toolchain.toml",
    "rustfmt.toml",
    "scripts/",
    "docs/AGENT.md",
    "docs/RELEASE.md",
    "tests/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lifecycle engine for externally driven systems"
homepage = "https://github.com/stateruntime/ready-active-safe"
documentation = "https://docs.rs/ready-active-safe"
readme = "README.md"
keywords = [
    "lifecycle",
    "state-machine",
    "modes",
    "sans-io",
    "embedded",
]
categories = [
    "no-std",
    "rust-patterns",
]
license = "Apache-2.0"
repository = "https://github.com/stateruntime/ready-active-safe"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
default = ["full"]
full = [
    "std",
    "runtime",
    "time",
    "journal",
]
journal = ["std"]
runtime = ["std"]
std = []
time = []

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

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

[[example]]
name = "channel_runtime"
path = "examples/channel_runtime.rs"
required-features = ["runtime"]

[[example]]
name = "metrics"
path = "examples/metrics.rs"
required-features = ["runtime"]

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

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

[[example]]
name = "recovery_cycle"
path = "examples/recovery_cycle.rs"
required-features = ["runtime"]

[[example]]
name = "replay"
path = "examples/replay.rs"
required-features = [
    "runtime",
    "journal",
]

[[example]]
name = "runner"
path = "examples/runner.rs"
required-features = ["runtime"]

[dependencies]

[dev-dependencies]

[lints.clippy]
dbg_macro = "deny"
expect_used = "deny"
module_name_repetitions = "allow"
must_use_candidate = "allow"
panic = "deny"
print_stderr = "deny"
print_stdout = "deny"
todo = "deny"
unimplemented = "deny"
unwrap_used = "deny"

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

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

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

[lints.rust]
missing_debug_implementations = "warn"
missing_docs = "deny"
unreachable_pub = "warn"
unsafe_code = "forbid"

[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1