[package] name = "citadel_io" version = "0.8.0" authors = ["Thomas Braun "] edition = "2021" description = "Underlying runtime for interfacing with I/O for std/wasm targets" homepage = "https://avarok.net/" repository = "https://github.com/Avarok-Cybersecurity/Citadel-Protocol" workspace = ".." readme = "../README.md" categories = ["cryptography", "network-programming", "asynchronous"] license = "MIT OR Apache-2.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] default = ["std"] std = [] wasm = [] deadlock-detection = ["parking_lot/deadlock_detection"] [dependencies] tokio = { workspace = true, features = ["net", "rt"] } [target.'cfg(not(target_family="wasm"))'.dependencies] parking_lot = { workspace = true }