my fork of dmp
Getting ready to publish
Anubhab Bandyopadhyay 2024-08-16
parent 094f4dc · commit 67a920a
-rw-r--r--Cargo.toml13
1 files changed, 12 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 0b1e356..ef1a82a 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -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"