aetherflow 0.1.0

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.
Documentation
[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]
# Best-effort core pinning: real sched_setaffinity on Linux, graceful no-op on macOS.
core_affinity = "0.8"

[dev-dependencies]
# Stage 0 ベンチのベースライン比較用(work-stealing / 実 actor FW)。
tokio = { version = "1", features = ["rt", "rt-multi-thread", "sync", "time", "macros"] }
kameo = "0.21"

[[bench]]
name = "latency"
harness = false