[package] name = "faster-build" version = "0.5.0" edition = "2021" authors = ["Hilmar Wiegand "] repository = "https://github.com/happenslol/faster" readme = "README.md" license = "GPL-3.0-or-later" categories = ["command-line-utilities", "development-tools"] description = "Simple and smart language-agnostic task runner" rust-version = "1.59" [[bin]] name = "faster" path = "src/main.rs" [dependencies] anyhow = "1.0.57" serde = { version = "1.0", features = ["derive"] } serde_yaml = "0.8" glob = "0.3.0" twox-hash = "1.6.3" petgraph = "0.6.0" thiserror = "1.0.31" clap = { version = "3.1.18", features = ["derive"] } indicatif = "0.17.0-rc.10" crossbeam-channel = "0.5.4" console = { version = "0.15", default-features = false, features = ["ansi-parsing"] } lazy_static = "1.4.0" duct = "0.13.5" tar = "0.4.38" snap = "1.0.5" notify = "4.0.17" ctrlc = "3.2.2" [dev-dependencies] tempfile = "3.3.0" rand = "0.8.5"