cano 0.8.0

High-performance orchestration engine for building resilient, self-healing systems in Rust. Uses Finite State Machines (FSM) for strict, type-safe transitions.
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 = "2024"
rust-version = "1.89.0"
name = "cano"
version = "0.8.0"
authors = ["Nassor Frazier-Silva"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance orchestration engine for building resilient, self-healing systems in Rust. Uses Finite State Machines (FSM) for strict, type-safe transitions."
homepage = "https://nassor.github.io/cano/"
readme = "README.md"
keywords = [
    "ai",
    "async",
    "workflow",
    "data-processing",
    "scheduler",
]
categories = [
    "finance",
    "development-tools",
    "concurrency",
    "asynchronous",
    "science",
]
license = "MIT"
repository = "https://github.com/nassor/cano"

[features]
all = [
    "scheduler",
    "tracing",
]
scheduler = [
    "dep:chrono",
    "dep:cron",
    "tokio/signal",
]
tracing = ["dep:tracing"]

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

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

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

[[example]]
name = "scheduler_book_prepositions"
path = "examples/scheduler_book_prepositions.rs"
required-features = ["scheduler"]

[[example]]
name = "scheduler_duration_scheduling"
path = "examples/scheduler_duration_scheduling.rs"
required-features = ["scheduler"]

[[example]]
name = "scheduler_graceful_shutdown"
path = "examples/scheduler_graceful_shutdown.rs"
required-features = ["scheduler"]

[[example]]
name = "scheduler_mapreduce_books"
path = "examples/scheduler_mapreduce_books.rs"
required-features = ["scheduler"]

[[example]]
name = "scheduler_mixed_workflows"
path = "examples/scheduler_mixed_workflows.rs"
required-features = ["scheduler"]

[[example]]
name = "scheduler_scheduling"
path = "examples/scheduler_scheduling.rs"
required-features = ["scheduler"]

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

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

[[example]]
name = "tracing_demo"
path = "examples/tracing_demo.rs"
required-features = [
    "tracing",
    "scheduler",
]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

[dependencies.chrono]
version = "0.4"
features = ["serde"]
optional = true

[dependencies.cron]
version = "0.16"
optional = true

[dependencies.futures-util]
version = "0.3"

[dependencies.rand]
version = "0.10"

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

[dependencies.tracing]
version = "0.1"
optional = true

[dev-dependencies.chrono]
version = "0.4"
features = ["serde"]

[dev-dependencies.criterion]
version = "0.8"
features = [
    "html_reports",
    "async_tokio",
]

[dev-dependencies.reqwest]
version = "0.13"
features = ["json"]

[dev-dependencies.rig-core]
version = "0.34"

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

[dev-dependencies.tracing-subscriber]
version = "0.3"
features = [
    "env-filter",
    "fmt",
]

[dev-dependencies.wide]
version = "1.2"