Initial commit

This commit is contained in:
2025-10-16 16:35:56 +09:00
commit e0863d808c
10 changed files with 1301 additions and 0 deletions

18
Cargo.toml Normal file
View File

@@ -0,0 +1,18 @@
[package]
name = "condexec"
version = "0.1.0"
edition = "2024"
license = "MIT"
authors = ["h7x4@nani.wtf"]
readme = "README.md"
[dependencies]
clap = { version = "4.5.49", features = ["derive"] }
clap_complete = "4.5.59"
regex = "1.12.2"
rustix = { version = "1.1.2", features = ["process"] }
[profile.release]
strip = true
lto = true
codegen-units = 1