[package]
edition = "2021"
name = "aetherflow"
version = "0.1.0"
authors = ["mash180sx <mash180sx@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
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."
homepage = "https://github.com/org-408/aetherflow"
documentation = "https://docs.rs/aetherflow"
readme = "README.md"
keywords = [
"actor",
"concurrent",
"thread-per-core",
"low-latency",
]
categories = [
"concurrency",
"asynchronous",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/org-408/aetherflow"
[lib]
name = "aetherflow"
path = "src/lib.rs"
[[example]]
name = "matching_engine"
path = "examples/matching_engine.rs"
[[test]]
name = "actors"
path = "tests/actors.rs"
[[bench]]
name = "latency"
path = "benches/latency.rs"
harness = false
[dependencies.core_affinity]
version = "0.8"
[dev-dependencies.kameo]
version = "0.21"
[dev-dependencies.tokio]
version = "1"
features = [
"rt",
"rt-multi-thread",
"sync",
"time",
"macros",
]