[package] name = "yaraal" version = "0.1.0" edition = "2021" license = "MIT" description = "yet another async runtime abstraction library" repository = "https://gitlab.com/cyloncore/yaraal" readme = "README.MD" keywords = ["async"] [features] default = [] futures_executor = ["dep:futures", "dep:async-std"] tokio = ["dep:tokio"] [dependencies] tokio = { version = "1.39.3", optional = true, features = [ "rt-multi-thread", "time", ] } futures = { version = "0.3.30", optional = true, features = ["thread-pool"] } async-std = { version = "1.12.0", optional = true, features = [ "std", "unstable", ] }