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