feat: Add the ability to set current dir and env vars

This commit is contained in:
gerald.pinder
2025-01-13 16:34:49 -05:00
parent b87fe80302
commit 403c7be922
6 changed files with 273 additions and 18 deletions

View File

@@ -3,7 +3,8 @@ name = "comlexr"
description = "Dynamically build Command objects with conditional expressions"
repository = "https://gitlab.com/wunker-bunker/comlexr"
version = "1.1.0"
edition = "2018"
edition = "2021"
rust-version = "1.60"
license = "MIT"
[lib]
@@ -12,7 +13,7 @@ proc-macro = true
[dependencies]
proc-macro2 = "1"
quote = "1"
syn = { version = "2", features = ["full"] }
syn = { version = "2", features = ["full", "derive"] }
[dev-dependencies]
rstest = "0.24"