descendit 0.0.2

Deterministic structural metrics and loss scoring for Rust code
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "descendit"
version = "0.0.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Deterministic structural metrics and loss scoring for Rust code"
readme = "README.md"
keywords = [
    "code-quality",
    "metrics",
    "refactoring",
    "loss-function",
    "static-analysis",
]
categories = [
    "development-tools",
    "command-line-utilities",
]
license = "Apache-2.0"
repository = "https://github.com/owen-d/monobrown"

[features]
default = [
    "semantic",
    "explore",
]
explore = [
    "dep:mb-tui",
    "dep:crossterm",
    "dep:ratatui",
]
semantic = [
    "dep:descendit-ra",
    "dep:notify",
]

[lib]
name = "descendit"
path = "src/lib.rs"

[[bin]]
name = "descendit"
path = "src/main.rs"

[[test]]
name = "benchmarks"
path = "tests/benchmarks.rs"

[[test]]
name = "counterfactual_invariants"
path = "tests/counterfactual_invariants.rs"

[[test]]
name = "integration_cli"
path = "tests/integration_cli.rs"

[[test]]
name = "scenario_invariants"
path = "tests/scenario_invariants.rs"

[[test]]
name = "sensitivity"
path = "tests/sensitivity.rs"

[dependencies.anyhow]
version = "1"

[dependencies.clap]
version = "4"
features = ["derive"]

[dependencies.crossterm]
version = "0.29.0"
features = ["event-stream"]
optional = true

[dependencies.descendit-ra]
version = "0.0.2"
optional = true

[dependencies.mb-tui]
version = "0.0.2"
optional = true

[dependencies.notify]
version = "8.2.0"
optional = true

[dependencies.proc-macro2]
version = "1.0"
features = ["span-locations"]

[dependencies.ratatui]
version = "0.30.0"
features = ["unstable-rendered-line-info"]
optional = true

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.syn]
version = "2.0"
features = [
    "full",
    "parsing",
    "visit",
]

[dependencies.walkdir]
version = "2.5.0"

[dev-dependencies.assert_cmd]
version = "2"

[dev-dependencies.insta]
version = "1.43.2"

[dev-dependencies.tempfile]
version = "3.23.0"

[lints.clippy.all]
level = "warn"
priority = -1