[package]
edition = "2024"
name = "differential-engine"
version = "0.4.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core engine: git io, diff parsing, byte-exact apply, shape classes, invariants"
readme = false
license = "MIT OR Apache-2.0"
repository = "https://github.com/gogoout/differential"
[lib]
name = "differential_engine"
path = "src/lib.rs"
[[example]]
name = "group"
path = "examples/group.rs"
[[test]]
name = "golden"
path = "tests/golden.rs"
[[test]]
name = "grouping"
path = "tests/grouping.rs"
[[test]]
name = "layering"
path = "tests/layering.rs"
[[test]]
name = "parity"
path = "tests/parity.rs"
[[test]]
name = "review_state"
path = "tests/review_state.rs"
[[test]]
name = "schema_roundtrip"
path = "tests/schema_roundtrip.rs"
[[test]]
name = "synthetic"
path = "tests/synthetic.rs"
[[test]]
name = "worktree"
path = "tests/worktree.rs"
[dependencies.etcetera]
version = "0.10"
[dependencies.globset]
version = "0.4"
[dependencies.hex]
version = "0.4"
[dependencies.regex]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha1]
version = "0.10"
[dependencies.tempfile]
version = "3"
[dependencies.thiserror]
version = "2"
[dependencies.toml]
version = "0.8"
[dev-dependencies.tempfile]
version = "3"
[lints.rust]
unsafe_code = "forbid"