[package] name = "ninja-builder" version = "0.1.0" authors = ["Nikhil Marathe "] edition = "2018" description = "Building logic for the ninja build system in Rust. Based on the paper Build Systems a la Carte." license = "Apache-2.0" homepage = "https://github.com/nikhilm/ninja-rs" repository = "https://github.com/nikhilm/ninja-rs" keywords = ["ninja", "build-system", "tooling"] categories = ["development-tools"] [dependencies] ninja-parse = { path = "../parse", version = "^0.1" } ninja-metrics = { path = "../metrics", version = "^0.2" } petgraph = "^0.5" thiserror = "^1.0" anyhow = "^1.0" futures = "0.3" async-trait = "0.1" [dependencies.tokio] version = "0.2" default-features = false features = ["sync", "rt-core", "process", "rt-util"] [dependencies.console] version = "0.11" default-features = false features = [] [dev-dependencies] insta = "^0.16.0" proptest = "0.10.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html