[package] name = "distant-core" description = "Core library for distant, enabling operation on a remote computer through file and process manipulation" categories = ["network-programming"] keywords = ["api", "async"] version = "0.20.0" authors = ["Chip Senkbeil "] edition = "2021" homepage = "https://github.com/chipsenkbeil/distant" repository = "https://github.com/chipsenkbeil/distant" readme = "README.md" license = "MIT OR Apache-2.0" [dependencies] async-trait = "0.1.68" bitflags = "2.3.1" bytes = "1.4.0" derive_more = { version = "0.99.17", default-features = false, features = ["as_mut", "as_ref", "deref", "deref_mut", "display", "from", "error", "into", "into_iterator", "is_variant", "try_into"] } distant-net = { version = "=0.20.0", path = "../distant-net" } distant-protocol = { version = "=0.20.0", path = "../distant-protocol" } futures = "0.3.28" hex = "0.4.3" log = "0.4.18" num_cpus = "1.15.0" once_cell = "1.17.2" rand = { version = "0.8.5", features = ["getrandom"] } regex = "1.8.3" serde = { version = "1.0.163", features = ["derive"] } serde_bytes = "0.11.9" serde_json = "1.0.96" strum = { version = "0.24.1", features = ["derive"] } tokio = { version = "1.28.2", features = ["full"] } [dev-dependencies] env_logger = "0.10.0" test-log = "0.2.11"