1[package]
2name = "dissimilar"
3version = "1.0.7"
4authors = ["David Tolnay <dtolnay@gmail.com>"]
5categories = ["algorithms", "text-processing"]
6description = "Diff library with semantic cleanup, based on Google's diff-match-patch"
7documentation = "https://docs.rs/dissimilar"
8edition = "2018"
9keywords = ["diff"]
10license = "Apache-2.0" # See the readme. The whole crate is Apache licensed. Some parts are additionally MIT licensed.
11repository = "https://github.com/dtolnay/dissimilar"
12rust-version = "1.36"
13
14[lib]
15doc-scrape-examples = false
16
17[dev-dependencies]
18once_cell = "1"
19
20[package.metadata.docs.rs]
21targets = ["x86_64-unknown-linux-gnu"]
22rustdoc-args = ["--generate-link-to-definition"]
23