-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
34 lines (29 loc) · 944 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "diff-match-patch-rs"
version = "0.4.1"
edition = "2021"
authors = ["Anubhab Bandyopadhyay"]
homepage = "https://docs.rs/diff-match-patch-rs"
repository = "https://github.com/AnubhabB/diff-match-patch-rs.git"
description = "The fastest implementation 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", "text-synchronization"]
categories = ["algorithms", "text-processing", "text-editors", "wasm"]
[dependencies]
percent-encoding = "2"
[target.wasm32-unknown-unknown.dependencies]
chrono = "0"
[package.metadata.docs.rs]
targets = [
"aarch64-unknown-linux-gnu",
"aarch64-apple-darwin",
"x86_64-unknown-linux-gnu",
"x86_64-apple-darwin",
"wasm32-unknown-unknown"
]
rustdoc-args = ["--generate-link-to-definition"]
[[example]]
name = "efficiency"
[[example]]
name = "compat"