[package]
edition = "2021"
name = "sdivi-cli"
version = "0.2.18"
authors = ["Geoff Godwin <geoff.godwin@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command-line interface for the Structural Divergence Indexer"
readme = "README.md"
keywords = [
"sdivi",
"code-divergence",
"metrics",
"code-analysis",
"drift",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/GeoffGodwin/sdivi-rust"
[lib]
name = "sdivi_cli"
path = "src/lib.rs"
[[bin]]
name = "sdivi"
path = "src/main.rs"
[[example]]
name = "custom_config"
path = "examples/custom_config.rs"
[[example]]
name = "embed_compute"
path = "examples/embed_compute.rs"
[[example]]
name = "embed_pipeline"
path = "examples/embed_pipeline.rs"
[[test]]
name = "boundaries_comment_loss_warning"
path = "tests/boundaries_comment_loss_warning.rs"
[[test]]
name = "boundaries_show"
path = "tests/boundaries_show.rs"
[[test]]
name = "boundaries_stub"
path = "tests/boundaries_stub.rs"
[[test]]
name = "boundary_lifecycle"
path = "tests/boundary_lifecycle.rs"
[[test]]
name = "catalog_format"
path = "tests/catalog_format.rs"
[[test]]
name = "check_format"
path = "tests/check_format.rs"
[[test]]
name = "check_thresholds"
path = "tests/check_thresholds.rs"
[[test]]
name = "exit_codes"
path = "tests/exit_codes.rs"
[[test]]
name = "historical_commit_lifecycle"
path = "tests/historical_commit_lifecycle.rs"
[[test]]
name = "init"
path = "tests/init.rs"
[[test]]
name = "lib_target"
path = "tests/lib_target.rs"
[[test]]
name = "no_color"
path = "tests/no_color.rs"
[[test]]
name = "release_publish_order"
path = "tests/release_publish_order.rs"
[[test]]
name = "show_format"
path = "tests/show_format.rs"
[[test]]
name = "snapshot_diff"
path = "tests/snapshot_diff.rs"
[[test]]
name = "stdout_stderr_split"
path = "tests/stdout_stderr_split.rs"
[[test]]
name = "trend_format"
path = "tests/trend_format.rs"
[[test]]
name = "version"
path = "tests/version.rs"
[[test]]
name = "workspace_version"
path = "tests/workspace_version.rs"
[dependencies.anyhow]
version = "1"
[dependencies.chrono]
version = "0.4"
features = [
"serde",
"clock",
]
default-features = false
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.sdivi-config]
version = "0.2.13"
features = ["loader"]
default-features = false
[dependencies.sdivi-core]
version = "0.2.13"
[dependencies.sdivi-lang-go]
version = "0.2.13"
[dependencies.sdivi-lang-java]
version = "0.2.13"
[dependencies.sdivi-lang-javascript]
version = "0.2.13"
[dependencies.sdivi-lang-python]
version = "0.2.13"
[dependencies.sdivi-lang-rust]
version = "0.2.13"
[dependencies.sdivi-lang-typescript]
version = "0.2.13"
[dependencies.sdivi-parsing]
version = "0.2.13"
[dependencies.sdivi-patterns]
version = "0.2.13"
features = ["pipeline-records"]
default-features = false
[dependencies.sdivi-pipeline]
version = "0.2.13"
[dependencies.serde_json]
version = "1"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.walkdir]
version = "2"
[dev-dependencies.assert_cmd]
version = ">=2.0, <2.1"
[dev-dependencies.predicates]
version = ">=3.0, <3.1"
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.serde_yml]
version = "0.0.12"
[dev-dependencies.tempfile]
version = ">=3.0, <3.20"