[package]
edition = "2021"
rust-version = "1.73"
name = "diff_match_patch"
version = "0.3.0"
authors = [
"chandan <chandanmahi1998@gmail.com>",
"ajit <ajit@distill.io>",
]
build = false
exclude = [
"oracle/",
"tests/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A fast Rust port of Neil Fraser's diff-match-patch — diff, match, and patch for plain text."
homepage = "https://github.com/distill-io/diff-match-patch.rs"
documentation = "https://docs.rs/diff_match_patch"
readme = "README.md"
keywords = [
"diff",
"diff-match-patch",
"patch",
"myers",
"text",
]
categories = [
"text-processing",
"algorithms",
]
license = "MIT"
repository = "https://github.com/distill-io/diff-match-patch.rs"
[package.metadata.docs.rs]
all-features = true
[features]
grapheme = ["dep:unicode-segmentation"]
[lib]
name = "diff_match_patch"
path = "src/lib.rs"
bench = false
[dependencies.percent-encoding]
version = "2"
[dependencies.unicode-segmentation]
version = "1"
optional = true
[dev-dependencies.serde]
version = "1"
features = ["derive"]
[dev-dependencies.serde_json]
version = "1"