[package] name = "tasic" license = "MIT" description = "TASIC - Tokio, Async_STD, Smol, Interface Crate" repository = "https://github.com/peperworx/tasic" categories = ["concurrency"] keywords = ["async", "tasic", "tokio", "async_std", "smol"] readme = "README.md" version = "0.3.2" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] async-channel = { version = "1.9.0", optional = true } async-std = { version = "1.12.0", features = ["attributes"], optional = true } cfg-if = "1.0.0" futures = "0.3.28" smol = { version = "1.3.0", optional = true } tokio = { version = "1.29.1", features = ["full"], optional = true } [features] tokio = ["dep:tokio", "dep:async-channel"] async_std = ["dep:async-std"] smol = ["dep:smol"]