[package] name = "depgraph" version = "0.4.0" authors = ["Richard Dodd "] include = ["README.md", "Cargo.toml", "src/**/*.rs"] description = """A library to manange files that depend on each other, and rebuild them as necessary, like a makefile""" documentation = "https://docs.rs/depgraph" homepage = "https://github.com/derekdreery/depgraph" repository = "https://github.com/derekdreery/depgraph" readme = "README.md" keywords = ["build", "make", "makefile", "dependency", "graph"] categories = ["filesystem", "development-tools::build-utils"] license = "MIT/Apache-2.0" edition = "2021" [dependencies] petgraph = "0.6" thiserror = "1.0.64" [features] default = [] petgraph_visible = [] [dev-dependencies] tempdir = "0.3.7"