[package] name = "rustutils-env" version = "0.1.0" edition = "2021" authors = ["Patrick M. Elsen "] license = "MIT" description = "Set environment variables and run command" [dependencies] clap = { version = "3.2.8", features = ["derive"] } rustutils-runnable = { version = "0.1.0", path = "../../runnable" } serde = { version = "1.0.139", features = ["derive"], optional = true } serde_json = { version = "1.0.82", optional = true } thiserror = "1.0.31" [features] default = ["json"] json = ["serde", "serde_json"]