[package]
name = "heph"
description = "Heph is an actor framework based on asynchronous functions."
version = "0.4.0"
authors = ["Thomas de Zeeuw <thomasdezeeuw@gmail.com>"]
license = "MIT"
documentation = "https://docs.rs/heph"
repository = "https://github.com/Thomasdezeeuw/heph"
readme = "README.md"
keywords = ["actor", "framework", "async", "functions"]
categories = ["asynchronous", "web-programming"]
include = ["/Cargo.toml", "/src/**/*.rs", "/README.md", "/LICENSE"]
edition = "2021"
[features]
test = ["getrandom"]
[dependencies]
heph-inbox = { version = "0.2.1", default-features = false }
log = { version = "0.4.16", default-features = false, features = ["kv_unstable", "kv_unstable_std"] }
getrandom = { version = "0.2.2", default-features = false, features = ["std"], optional = true }
[dev-dependencies]
getrandom = { version = "0.2.2", default-features = false, features = ["std"] }
std-logger = { version = "0.4.0", default-features = false, features = ["log-panic", "nightly"] }
[workspace]
members = [
"remote",
"rt",
"tools",
"benches/timers_container",
]