1[package]2name = "nix-eval"3version.workspace = true4build = "build.rs"5edition.workspace = true6rust-version.workspace = true78[dependencies]9anyhow.workspace = true10nixlike.workspace = true11serde = { workspace = true, features = ["derive"] }12serde_json.workspace = true13thiserror.workspace = true14tracing.workspace = true1516cxx = "1.0.168"17itertools = "0.14.0"18test-log = { version = "0.2.18", features = ["trace"] }19tracing-indicatif = { version = "0.3.13", optional = true }20vte = { version = "0.15.0", features = ["ansi"] }2122[build-dependencies]23bindgen = "0.72.0"24cxx-build = "1.0.168"25pkg-config = "0.3.30"2627[features]28indicatif = ["dep:tracing-indicatif"]