termdiff 4.2.1

Write a diff with color codes to a string
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 = "2018"
name = "termdiff"
version = "4.2.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Write a diff with color codes to a string"
readme = "README.md"
keywords = [
    "diff",
    "terminal",
    "text",
    "comparison",
]
categories = [
    "development-tools",
    "text-processing",
]
license = "CC0-1.0"
repository = "https://github.com/PurpleBooth/termdiff"

[features]
arrows = []
arrows_color = ["dep:crossterm"]
default = [
    "myers",
    "similar",
    "arrows",
    "arrows_color",
    "signs",
    "signs_color",
]
myers = []
signs = []
signs_color = ["dep:crossterm"]
similar = ["dep:similar"]

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

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

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

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

[[bench]]
name = "diff_benchmark"
path = "benches/diff_benchmark.rs"
harness = false

[dependencies.crossterm]
version = ">=0.28.0, <=0.29.0"
optional = true

[dependencies.similar]
version = "2.7.0"
features = ["inline"]
optional = true

[dev-dependencies.criterion]
version = "=0.7.0"