difference-rs 3.2.0

A Rust text diffing and assertion library.
Documentation
[[bin]]
doc = false
name = "difference_rs"
path = "src/main.rs"

[dependencies.getopts]
optional = true
version = "0.2"

[dependencies.serde]
features = ["derive"]
optional = true
version = "1.0"

[dev-dependencies.quickcheck]
version = "0.8"

[dev-dependencies.serde_json]
version = "1.0"

[dev-dependencies.term]
version = "0.6"

[[example]]
name = "github-style"
path = "examples/github-style.rs"

[[example]]
name = "line-by-line"
path = "examples/line-by-line.rs"

[[example]]
name = "underline-uri"
path = "examples/underline-uri.rs"

[[example]]
name = "underline-words"
path = "examples/underline-words.rs"

[features]
bin = ["getopts"]
default = []
serde = ["dep:serde"]

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

[lints.clippy.all]
level = "deny"
priority = 12

[lints.clippy.equatable_if_let]
level = "allow"
priority = 11

[lints.clippy.missing_const_for_fn]
level = "deny"
priority = 0

[lints.clippy.nursery]
level = "deny"
priority = 4

[lints.clippy.option_if_let_else]
level = "deny"
priority = 0

[lints.clippy.or_fun_call]
level = "deny"
priority = 0

[lints.clippy.pedantic]
level = "deny"
priority = 5

[lints.clippy.similar_names]
level = "allow"
priority = 11

[lints.clippy.use_self]
level = "allow"
priority = 11

[lints.clippy.wildcard_imports]
level = "deny"
priority = 11

[lints.rust]
missing_docs = "deny"

[lints.rust.unexpected_cfgs]
check-cfg = ["cfg(tarpaulin_include)"]
level = "warn"
priority = 0

[package]
authors = ["Julia Naomi <jnboeira@outlook.com>", "Johann Hofmann <mail@johann-hofmann.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["text-processing", "development-tools::testing"]
description = "A Rust text diffing and assertion library."
documentation = "https://docs.rs/difference_rs/latest/difference_rs/"
edition = "2024"
keywords = ["diff", "text", "compare", "changes", "assert"]
license = "MIT"
name = "difference-rs"
readme = "README.md"
repository = "https://github.com/naomijub/difference-rs"
version = "3.2.0"

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