java-diff-utils-rs 0.1.0-alpha.5

Experimental Rust port of the core diffing and patching behavior of java-diff-utils
Documentation
[package]
name = "java-diff-utils-rs"
version = "0.1.0-alpha.5"
edition = "2021"
description = "Experimental Rust port of the core diffing and patching behavior of java-diff-utils"
license = "Apache-2.0"
repository = "https://github.com/Prabhav-dev/java-diff-utils-rs"
homepage = "https://github.com/Prabhav-dev/java-diff-utils-rs"
keywords = ["diff", "patch", "myers", "unified-diff"]
categories = ["algorithms", "text-processing"]
exclude = [
    "tests/**/*",
    "benches/**/*",
    "Decision.md",
    "Bug fixes.md",
    "TESTS.md",
    "changes.md",
]

[dev-dependencies]
bincode = "1.3"
criterion = { version = "0.5", features = ["html_reports"] }

[dependencies]
regex = "1.10"
lazy_static = "1.4"
serde = { version = "1.0", features = ["derive"] }
unicode-segmentation = "1.13.3"

[[bench]]
name = "myers_diff"
harness = false

[profile.test]
opt-level = 2