diffguard 0.2.0

CLI for diff-scoped governance linting in pull requests
[package]
name = "diffguard"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
rust-version.workspace = true
description = "CLI for diff-scoped governance linting in pull requests"
repository.workspace = true
homepage.workspace = true
documentation.workspace = true
keywords.workspace = true
categories.workspace = true
readme = "README.md"
[dependencies]
anyhow.workspace = true
clap.workspace = true
serde.workspace = true
serde_json.workspace = true
toml.workspace = true
chrono = { version = "0.4", features = ["serde"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
regex.workspace = true
globset.workspace = true

# local

diffguard-types = { version = "0.2", path = "../diffguard-types" }
diffguard-analytics = { version = "0.2", path = "../diffguard-analytics" }
diffguard-core = { version = "0.2", path = "../diffguard-core" }
diffguard-domain = { version = "0.2", path = "../diffguard-domain" }
diffguard-diff = { version = "0.2", path = "../diffguard-diff" }

[dev-dependencies]
assert_cmd.workspace = true
serde_json.workspace = true
tempfile.workspace = true