git.delta.rocks / jrsonnet / refs/commits / 6fa49bc8c59c

difftreelog

source

crates/nix-eval/Cargo.toml686 Bsourcehistory
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"] }19tokio.workspace = true20tracing-indicatif = { version = "0.3.13", optional = true }21vte = { version = "0.15.0", features = ["ansi"] }2223[build-dependencies]24bindgen = "0.72.0"25cxx-build = "1.0.168"26pkg-config = "0.3.30"2728[features]29indicatif = ["dep:tracing-indicatif"]