-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathCargo.toml
21 lines (20 loc) · 811 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[package]
name = "dissimilar"
version = "1.0.9"
authors = ["David Tolnay <[email protected]>"]
categories = ["algorithms", "text-processing"]
description = "Diff library with semantic cleanup, based on Google's diff-match-patch"
documentation = "https://docs.rs/dissimilar"
edition = "2018"
keywords = ["diff"]
license = "Apache-2.0" # See the readme. The whole crate is Apache licensed. Some parts are additionally MIT licensed.
repository = "https://github.com/dtolnay/dissimilar"
rust-version = "1.36"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
rustdoc-args = [
"--generate-link-to-definition",
"--extern-html-root-url=core=https://doc.rust-lang.org",
"--extern-html-root-url=alloc=https://doc.rust-lang.org",
"--extern-html-root-url=std=https://doc.rust-lang.org",
]