[package] name = "cimery-incremental" version.workspace = true edition.workspace = true # ── Features ────────────────────────────────────────────────────────────────── [features] # salsa-backend: use salsa 0.16 query groups instead of manual dirty tracking. # Default: OFF (WASM-safe manual tracking). # Desktop: `cargo test -p cimery-incremental --features salsa-backend` # WASM: manual tracking remains the default target. salsa-backend = ["dep:salsa"] [dependencies] cimery-ir = { workspace = true } cimery-kernel = { workspace = true } # salsa: optional incremental query framework (ADR-002 D). # Gated because WASM compatibility requires verification per salsa release. salsa = { version = "0.16", optional = true } [dev-dependencies] cimery-core = { workspace = true }