[package] name = "xactor" version = "0.7.11" authors = ["sunli "] description = "Xactor is a rust actors framework based on async-std" edition = "2018" publish = true license = "MIT" documentation = "https://docs.rs/xactor/" homepage = "https://github.com/sunli829/xactor" repository = "https://github.com/sunli829/xactor" keywords = ["actor", "futures", "async", "xactor", "async-std"] categories = ["network-programming", "asynchronous"] readme = "README.md" [dependencies] futures = "0.3.8" async-trait = "0.1.42" async-std = { version = "1.8.0", features = ["attributes"], optional = true } tokio = { version = "1.0.1", features = ["rt-multi-thread", "macros", "time"], optional = true } once_cell = "1.5.2" anyhow = "1.0.37" xactor-derive = { path = "xactor-derive", version = "0.7"} fnv = "1.0.7" slab = "0.4.2" [workspace] members = [ "xactor-derive" ] [features] runtime-tokio = ["tokio"] runtime-async-std = ["async-std"] default = ["runtime-async-std"]