[package]
edition = "2021"
name = "bdsh"
version = "0.1.8"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Run commands on multiple hosts simultaneously via SSH with consensus output view"
homepage = "https://github.com/brianm/bdsh"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/brianm/bdsh"
[[bin]]
name = "bdsh"
path = "src/main.rs"
[[test]]
name = "ssh_test"
path = "tests/ssh_test.rs"
[[test]]
name = "watch_test"
path = "tests/watch_test.rs"
[dependencies.anyhow]
version = "1.0.86"
[dependencies.clap]
version = "4.5.13"
features = ["derive"]
[dependencies.crossterm]
version = "0.28"
[dependencies.indexmap]
version = "2"
[dependencies.names]
version = "0.14.0"
default-features = false
[dependencies.notify]
version = "8.2.0"
[dependencies.ratatui]
version = "0.30"
[dependencies.tempfile]
version = "3"
[dev-dependencies.assert_cmd]
version = "2.1.2"
[dev-dependencies.predicates]
version = "3.1.3"
[profile.dist]
lto = "thin"
inherits = "release"