1[package]2name = "remowt-ssh"3description = "SSH transport client for connecting to a remowt agent"4version.workspace = true5edition.workspace = true6license.workspace = true78[dependencies]9clap = { workspace = true, features = ["derive"] }10tracing-subscriber.workspace = true11tracing-journald.workspace = true12remowt-link-shared.workspace = true13remowt-client.workspace = true14tokio = { workspace = true, features = [15 "macros",16 "fs",17 "net",18 "io-util",19 "rt",20 "signal",21] }22nix = { workspace = true, features = ["term"] }23anyhow.workspace = true24tracing.workspace = true25remowt-ui-prompt.workspace = true