You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
distant/distant-core/Cargo.toml

42 lines
1.3 KiB
TOML

[package]
name = "distant-core"
description = "Core library for distant, enabling operation on a remote computer through file and process manipulation"
categories = ["network-programming"]
version = "0.15.0"
authors = ["Chip Senkbeil <chip@senkbeil.org>"]
edition = "2018"
homepage = "https://github.com/chipsenkbeil/distant"
repository = "https://github.com/chipsenkbeil/distant"
readme = "README.md"
license = "MIT OR Apache-2.0"
[features]
native-ssh2 = ["rpassword", "ssh2"]
[dependencies]
bytes = "1.1.0"
chacha20poly1305 = "0.9.0"
derive_more = { version = "0.99.16", default-features = false, features = ["display", "from", "error", "is_variant"] }
futures = "0.3.16"
hex = "0.4.3"
log = "0.4.14"
once_cell = "1.8.0"
rand = { version = "0.8.4", features = ["getrandom"] }
serde = { version = "1.0.126", features = ["derive"] }
serde_cbor = "0.11.1"
serde_json = "1.0.64"
strum = { version = "0.21.0", features = ["derive"] }
tokio = { version = "1.12.0", features = ["full"] }
tokio-util = { version = "0.6.7", features = ["codec"] }
walkdir = "2.3.2"
# Optional dependencies based on features
rpassword = { version = "5.0.1", optional = true }
ssh2 = { version = "0.9.1", features = ["vendored-openssl"], optional = true }
structopt = { version = "0.3.22", optional = true }
[dev-dependencies]
assert_fs = "1.0.4"
indoc = "1.0.3"
predicates = "2.0.2"