[package]
name = "aetherflow"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
documentation.workspace = true
readme = "../README.md"
keywords = ["actor", "concurrent", "thread-per-core", "low-latency"]
categories = ["concurrency", "asynchronous"]
description = "A high-performance, thread-per-core actor runtime for Rust. Messages move with zero-copy ownership, mailboxes are lock-free, and isolation is proven at compile time — so the hot path has no locks, no GC, and no atomic refcounts. Flow at the speed of hardware."
[dependencies]
core_affinity = "0.8"
[dev-dependencies]
tokio = { version = "1", features = ["rt", "rt-multi-thread", "sync", "time", "macros"] }
kameo = "0.21"
[[bench]]
name = "latency"
harness = false