my fork of dmp
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 14 |
1 files changed, 11 insertions, 3 deletions
@@ -1,6 +1,6 @@ [package] name = "diff-match-patch-rs" -version = "0.1.0-beta.4" +version = "0.2.0" edition = "2021" authors = ["Anubhab Bandyopadhyay"] repository = "https://github.com/AnubhabB/diff-match-patch-rs.git" @@ -11,11 +11,19 @@ keywords = ["diff", "match", "patch", "text-synchronization"] categories = ["algorithms", "text-processing", "text-editors", "wasm"] [dependencies] -chrono = "0" percent-encoding = "2" +[target_arch.'cfg(wasm32-unknown-unknown)'.dependencies] +chrono = "0" + [package.metadata.docs.rs] -targets = ["x86_64-unknown-linux-gnu", "wasm32-unknown-unknown"] +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]] |