[package] name = "git-hooks-manager" version = "0.4.2" authors = ["Paul Ollivier "] edition = "2018" description = "An attempt to make sharing git hooks among team members easier" readme = "README.adoc" repository = "https://github.com/paulollivier/git-hooks" license-file = "LICENSE.md" categories = ["command-line-utilities", "development-tools"] keywords = ["git", "teamwork"] [[bin]] name = "git-hooks" path = "src/main.rs" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] regex = "1.4.2" serde = { version = "1", features = ["derive"] } serde_yaml = "0.8" log = "0.4.11" pretty_env_logger = "0.4.0" anyhow = "1.0.34" clap = "2" shlex = "0.1.1" walkdir = "2.3.1" self_update = "0.22.0" [dev-dependencies] tempdir = "0.3.7"