my fork of dmp
Getting ready to publish
| -rw-r--r-- | Cargo.toml | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -1,7 +1,14 @@ [package] name = "diff-match-patch-rs" -version = "0.1.0" +version = "0.1.0-beta.1" edition = "2021" +authors = ["Anubhab Bandyopadhyay"] +repository = "https://github.com/AnubhabB/diff-match-patch-rs.git" +description = "A high-performance port of Myer's diff algorithm to perform the operations required for synchronizing plain text." +readme = "README.md" +license = "MIT OR Apache-2.0" +keywords = ["diff", "match", "patch", "myer's diff", "text synchronization"] +categories = ["algorithms", "text-synchronization"] [dependencies] percent-encoding = "2" @@ -12,6 +19,10 @@ serde_repr = { version = "0", optional = true } serde = ["dep:serde", "dep:serde_repr"] default = ["serde"] +[package.metadata.docs.rs] +targets = ["x86_64-unknown-linux-gnu", "wasm32-unknown-unknown"] +rustdoc-args = ["--generate-link-to-definition"] + [dev-dependencies] criterion = "0" serde_json = "1" |