[package] name = "git-projects" version = "0.1.0" edition = "2021" license = "MIT OR Apache-2.0" description = "A program to see the state of git projects on a system" homepage = "https://gitlab.com/johngavingraham/git-projects" repository = "https://gitlab.com/johngavingraham/git-projects.git" readme = "README.md" keywords = ["git"] categories = ["command-line-utilities"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] clap = { version = "4.4.10", features = ["derive"] } colored = "2.0.4" directories = "5.0.1" env_logger = "0.10.1" git2 = "0.18.1" home-dir = "0.1.0" log = "0.4.20" miette = { version = "5.10.0", features = ["fancy"] } serde = { version = "1.0.193", features = ["derive"] } shellexpand = "3.1.0" toml = "0.8.8"