1[package]2name = "remowt-ssh"3description = "SSH transport client for connecting to a remowt agent"4version.workspace = true5edition = "2021"6license.workspace = true78[dependencies]9clap = { workspace = true, features = ["derive"] }10tracing-subscriber.workspace = true11remowt-link-shared.workspace = true12remowt-client.workspace = true13tokio = { workspace = true, features = [14 "macros",15 "fs",16 "net",17 "io-util",18 "rt",19 "signal",20] }21nix = { workspace = true, features = ["term"] }22anyhow.workspace = true23tracing.workspace = true24remowt-ui-prompt.workspace = true