2021-08-28 23:15:00 +00:00
|
|
|
[package]
|
|
|
|
name = "distant-core"
|
|
|
|
description = "Core library for distant, enabling operation on a remote computer through file and process manipulation"
|
|
|
|
categories = ["network-programming"]
|
2021-10-07 04:17:07 +00:00
|
|
|
keywords = ["api", "async"]
|
2023-05-18 01:13:24 +00:00
|
|
|
version = "0.20.0-alpha.6"
|
2021-08-28 23:15:00 +00:00
|
|
|
authors = ["Chip Senkbeil <chip@senkbeil.org>"]
|
2022-08-08 06:10:32 +00:00
|
|
|
edition = "2021"
|
2021-08-28 23:15:00 +00:00
|
|
|
homepage = "https://github.com/chipsenkbeil/distant"
|
|
|
|
repository = "https://github.com/chipsenkbeil/distant"
|
|
|
|
readme = "README.md"
|
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
|
2022-08-08 06:10:32 +00:00
|
|
|
[features]
|
|
|
|
schemars = ["dep:schemars", "distant-net/schemars"]
|
|
|
|
|
2021-08-28 23:15:00 +00:00
|
|
|
[dependencies]
|
2023-04-01 03:15:25 +00:00
|
|
|
async-trait = "0.1.68"
|
|
|
|
bitflags = "2.0.2"
|
|
|
|
bytes = "1.4.0"
|
2022-08-08 06:10:32 +00:00
|
|
|
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"] }
|
2023-05-18 01:13:24 +00:00
|
|
|
distant-net = { version = "=0.20.0-alpha.6", path = "../distant-net" }
|
2023-04-01 03:15:25 +00:00
|
|
|
futures = "0.3.28"
|
|
|
|
grep = "0.2.11"
|
2021-08-28 23:15:00 +00:00
|
|
|
hex = "0.4.3"
|
2023-04-01 03:15:25 +00:00
|
|
|
ignore = "0.4.20"
|
2022-08-08 16:51:18 +00:00
|
|
|
log = "0.4.17"
|
2023-04-01 03:15:25 +00:00
|
|
|
notify = { version = "5.1.0", features = ["serde"] }
|
|
|
|
num_cpus = "1.15.0"
|
|
|
|
once_cell = "1.17.1"
|
|
|
|
portable-pty = "0.8.1"
|
2022-08-08 16:51:18 +00:00
|
|
|
rand = { version = "0.8.5", features = ["getrandom"] }
|
2023-04-01 03:15:25 +00:00
|
|
|
regex = "1.7.3"
|
|
|
|
serde = { version = "1.0.159", features = ["derive"] }
|
|
|
|
serde_bytes = "0.11.9"
|
|
|
|
serde_json = "1.0.95"
|
2022-08-08 16:51:18 +00:00
|
|
|
shell-words = "1.1.0"
|
|
|
|
strum = { version = "0.24.1", features = ["derive"] }
|
2023-04-01 03:15:25 +00:00
|
|
|
tokio = { version = "1.27.0", features = ["full"] }
|
|
|
|
tokio-util = { version = "0.7.7", features = ["codec"] }
|
|
|
|
walkdir = "2.3.3"
|
|
|
|
whoami = "1.4.0"
|
2022-08-08 16:51:18 +00:00
|
|
|
winsplit = "0.1.0"
|
2021-08-28 23:15:00 +00:00
|
|
|
|
|
|
|
# Optional dependencies based on features
|
2023-04-01 03:15:25 +00:00
|
|
|
schemars = { version = "0.8.12", optional = true }
|
2021-08-28 23:15:00 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-04-01 03:15:25 +00:00
|
|
|
assert_fs = "1.0.12"
|
|
|
|
env_logger = "0.10.0"
|
|
|
|
indoc = "2.0.1"
|
|
|
|
predicates = "3.0.2"
|
|
|
|
rstest = "0.17.0"
|
2022-11-20 02:27:49 +00:00
|
|
|
test-log = "0.2.11"
|