[package]
edition = "2021"
name = "simple_ssh"
version = "0.1.3"
build = false
include = [
"src/**",
"Cargo.toml",
"README.md",
"LICENSE*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Simple async SSH for Rust"
homepage = "https://juliankahlert.github.io/simple_ssh"
readme = "README.md"
keywords = [
"ssh",
"async",
"scp",
"pty",
"russh",
]
categories = [
"network-programming",
"asynchronous",
]
license = "MIT"
repository = "https://github.com/juliankahlert/simple_ssh"
[features]
cli = [
"dep:clap",
"dep:futures",
"dep:vt100",
]
default = []
[lib]
name = "simple_ssh"
path = "src/lib.rs"
[[bin]]
name = "simple-scp"
path = "src/bin/simple-scp.rs"
required-features = ["cli"]
[[bin]]
name = "simple-ssh"
path = "src/bin/simple-ssh.rs"
required-features = ["cli"]
[dependencies.anyhow]
version = "1.0.97"
[dependencies.clap]
version = "4.5.56"
features = ["derive"]
optional = true
[dependencies.crossterm]
version = "0.29.0"
features = ["event-stream"]
[dependencies.env_logger]
version = "0.6"
default-features = false
[dependencies.futures]
version = "0.3"
optional = true
[dependencies.log]
version = "0.4.27"
[dependencies.russh]
version = "0.51.1"
[dependencies.russh-keys]
version = "0.49.2"
[dependencies.shell-escape]
version = "0.1"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.vt100]
version = "0.16"
optional = true
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[profile.musl]
opt-level = "s"
lto = "thin"
panic = "abort"
inherits = "release"
strip = true
[profile.release]
opt-level = "s"
lto = true
strip = true