| 1 | [package] |
| 2 | name = "dissimilar" |
| 3 | version = "1.0.10" |
| 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 | [package.metadata.docs.rs] |
| 15 | targets = ["x86_64-unknown-linux-gnu" ] |
| 16 | rustdoc-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 | |