[package] name = "incremental-query" version = "0.2.0" edition = "2021" description = "implementation of an incremental compilation algorithm similar to rustc's" authors = ["Jonathan Dönszelmann "] license = "MIT OR Apache-2.0" repository = "https://github.com/jdonszelmann/incremental-query" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [workspace] members = ["incremental-query-macros"] [dependencies] siphasher = "1.0.1" bumpalo = "3.16.0" tracing = "0.1.40" incremental-query-macros = { version = "0.2", path = "incremental-query-macros" } [dev-dependencies] tracing-subscriber = { version = "0.3.18", features = ["fmt", "env-filter"] } rand = "0.8.5"