Files
rexec/Cargo.toml

28 lines
698 B
TOML
Raw Normal View History

2023-06-15 16:30:49 +03:00
[package]
name = "rexec"
2025-05-23 03:31:11 +03:00
version = "1.4.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]
2025-05-23 03:28:42 +03:00
dns-lookup = "2"
2025-04-08 18:16:01 +01:00
rayon = "1.10"
2025-05-23 03:28:42 +03:00
log = "0.4"
env_logger = "0.11"
whoami = "1"
lazy-st = "1"
2023-06-16 14:31:16 +03:00
regex = "1"
2025-05-23 03:28:42 +03:00
clap = { version = "4.5", features = ["derive"] }
colored = "3"
itertools = "0.14"
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"