[package]
edition = "2024"
name = "githops"
version = "0.6.1"
authors = ["Vitali Haradkou <vitalics@gmail.com>"]
build = false
exclude = [
"graphui/ui/node_modules/",
"graphui/ui/src/",
"docs/",
".github/",
"*.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Git hooks manager with YAML configuration"
homepage = "https://github.com/vitalics/githops"
readme = "README.md"
keywords = [
"git",
"hooks",
"cli",
"yaml",
"devtools",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/vitalics/githops"
resolver = "2"
[lib]
name = "githops"
path = "src/lib.rs"
[[bin]]
name = "gen-schema"
path = "src/bin/gen_schema.rs"
[[bin]]
name = "githops"
path = "src/main.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.clap_complete]
version = "4"
[dependencies.colored]
version = "2"
[dependencies.dirs]
version = "5"
[dependencies.githops-core]
version = "0.6.1"
[dependencies.graphui]
version = "0.6.1"
package = "githops-graphui"
[dependencies.schemars]
version = "0.8"
features = ["derive"]
[dependencies.self_update]
version = "0.40"
features = [
"archive-tar",
"archive-zip",
"compression-flate2",
"compression-zip-deflate",
"rustls",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dev-dependencies.tempfile]
version = "3"