2021-09-28 05:04:26 +00:00
|
|
|
[package]
|
|
|
|
name = "distant-ssh2"
|
|
|
|
description = "Library to enable native ssh-2 protocol for use with distant sessions"
|
|
|
|
categories = ["network-programming"]
|
2022-08-19 02:38:10 +00:00
|
|
|
version = "0.18.0"
|
2021-09-28 05:04:26 +00:00
|
|
|
authors = ["Chip Senkbeil <chip@senkbeil.org>"]
|
2022-08-08 06:10:32 +00:00
|
|
|
edition = "2021"
|
2021-09-28 05:04:26 +00:00
|
|
|
homepage = "https://github.com/chipsenkbeil/distant"
|
|
|
|
repository = "https://github.com/chipsenkbeil/distant"
|
|
|
|
readme = "README.md"
|
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
|
2022-05-14 17:57:11 +00:00
|
|
|
[features]
|
|
|
|
default = ["libssh", "ssh2"]
|
|
|
|
libssh = ["wezterm-ssh/libssh-rs", "wezterm-ssh/vendored-openssl-libssh-rs"]
|
|
|
|
ssh2 = ["wezterm-ssh/ssh2", "wezterm-ssh/vendored-openssl-ssh2"]
|
|
|
|
|
2021-09-28 05:04:26 +00:00
|
|
|
[dependencies]
|
|
|
|
async-compat = "0.2.1"
|
2022-08-08 06:10:32 +00:00
|
|
|
async-once-cell = "0.4.2"
|
2022-08-08 16:51:18 +00:00
|
|
|
async-trait = "0.1.57"
|
2022-08-08 06:10:32 +00:00
|
|
|
derive_more = { version = "0.99.17", default-features = false, features = ["display", "error"] }
|
2022-08-19 02:38:10 +00:00
|
|
|
distant-core = { version = "=0.18.0", path = "../distant-core" }
|
2022-08-08 16:51:18 +00:00
|
|
|
futures = "0.3.21"
|
2022-08-08 06:10:32 +00:00
|
|
|
hex = "0.4.3"
|
2022-08-08 16:51:18 +00:00
|
|
|
log = "0.4.17"
|
|
|
|
rand = { version = "0.8.5", features = ["getrandom"] }
|
|
|
|
rpassword = "7.0.0"
|
|
|
|
shell-words = "1.1.0"
|
|
|
|
smol = "1.2.5"
|
|
|
|
tokio = { version = "1.20.1", features = ["full"] }
|
|
|
|
wezterm-ssh = { version = "0.4.0", default-features = false }
|
|
|
|
winsplit = "0.1.0"
|
2022-05-13 20:20:54 +00:00
|
|
|
|
2021-09-29 16:20:26 +00:00
|
|
|
# Optional serde support for data structures
|
2022-08-08 16:51:18 +00:00
|
|
|
serde = { version = "1.0.142", features = ["derive"], optional = true }
|
2021-09-29 16:20:26 +00:00
|
|
|
|
2021-09-28 05:04:26 +00:00
|
|
|
[dev-dependencies]
|
2022-08-08 16:51:18 +00:00
|
|
|
anyhow = "1.0.60"
|
|
|
|
assert_fs = "1.0.7"
|
2022-08-08 06:10:32 +00:00
|
|
|
dunce = "1.0.2"
|
2022-08-08 16:51:18 +00:00
|
|
|
flexi_logger = "0.23.0"
|
|
|
|
indoc = "1.0.7"
|
|
|
|
once_cell = "1.13.0"
|
|
|
|
predicates = "2.1.1"
|
|
|
|
rstest = "0.15.0"
|
2022-08-08 06:10:32 +00:00
|
|
|
which = "4.2.5"
|
2022-08-08 16:51:18 +00:00
|
|
|
whoami = "1.2.1"
|