[package] name = "distant-ssh2" description = "Library to enable native ssh-2 protocol for use with distant sessions" categories = ["network-programming"] 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" [features] default = ["flate2"] flate2 = ["russh/flate2"] openssl = ["russh/openssl"] vendored-openssl = ["russh/vendored-openssl"] [dependencies] async-once-cell = "0.5.2" async-trait = "0.1.68" derive_more = { version = "0.99.17", default-features = false, features = ["display", "error"] } distant-core = { version = "=0.20.0", path = "../distant-core" } futures = "0.3.28" hex = "0.4.3" log = "0.4.18" rand = { version = "0.8.5", features = ["getrandom"] } rpassword = "7.2.0" russh = { version = "0.37.1", default-features = false } russh-config = "0.7.0" shell-words = "1.1.0" tokio = { version = "1.28.2", features = ["full"] } typed-path = "0.3.2" winsplit = "0.1.0" # Optional serde support for data structures serde = { version = "1.0.163", features = ["derive"], optional = true } [dev-dependencies] anyhow = "1.0.71" assert_fs = "1.0.13" dunce = "1.0.4" env_logger = "0.10.0" indoc = "2.0.1" once_cell = "1.17.2" predicates = "3.0.3" rstest = "0.17.0" test-log = "0.2.11" which = "4.4.0" whoami = "1.4.0"