[package] name = "heph" description = "Heph is an actor framework based on asynchronous functions." version = "0.4.0" authors = ["Thomas de Zeeuw "] 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] # Feature that enables the `test` module. 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"] } # Optional dependencies, enabled by features. # Required by the `test` feature. 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 = [ #"http", # Stuck on 2021-11-01, also enable in Makefile. "remote", "rt", "tools", "benches/timers_container", ]