Files
rexec/Cargo.toml

30 lines
794 B
TOML
Raw Permalink Normal View History

2023-06-15 16:30:49 +03:00
[package]
name = "rexec"
2025-04-08 18:16:01 +01:00
version = "1.2.0"
2023-08-14 18:23:12 +03:00
readme = "https://github.com/house-of-vanity/rexec#readme"
2023-06-15 16:30:49 +03:00
edition = "2021"
2023-06-20 15:58:23 +03:00
description = "Parallel SSH executor"
repository = "https://github.com/house-of-vanity/rexec"
homepage = "https://github.com/house-of-vanity/rexec"
license = "WTFPL"
categories = ["command-line-utilities"]
authors = ["AB <gh@hexor.ru>"]
2023-06-15 16:30:49 +03:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
dns-lookup = "2.0.2"
2025-04-08 18:16:01 +01:00
rayon = "1.10"
2023-06-16 14:31:16 +03:00
log = "0.4.0"
env_logger = "0.10.0"
2023-06-15 16:30:49 +03:00
massh = "0.6.3"
2023-06-16 14:31:16 +03:00
whoami = "1.4.0"
lazy-st = "0.2.2"
regex = "1"
clap = { version = "4.3.4", features = ["derive"] }
colored = "2.0.0"
2023-06-16 17:38:56 +03:00
itertools = "0.10.5"
2023-06-20 01:41:07 +03:00
brace-expand = "0.1.0"
2023-08-28 16:37:34 +03:00
question = "0.2.2"
2023-08-31 21:07:33 +03:00
openssl = { version = "0.10", features = ["vendored"] }