1[package]
2name = "dissimilar"
3version = "1.0.10"
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[package.metadata.docs.rs]
15targets = ["x86_64-unknown-linux-gnu"]
16rustdoc-args = [
17 "--generate-link-to-definition",
18 "--extern-html-root-url=core=https://doc.rust-lang.org",
19 "--extern-html-root-url=alloc=https://doc.rust-lang.org",
20 "--extern-html-root-url=std=https://doc.rust-lang.org",
21]
22