-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathCargo.toml
33 lines (27 loc) · 818 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
[package]
name = "symspell"
version = "0.4.3"
license = "MIT"
authors = ["Rene Klacan <[email protected]>"]
keywords = ["spellcheck"]
description = "Spelling correction & Fuzzy search"
homepage = "https://github.com/reneklacan/symspell"
repository = "https://github.com/reneklacan/symspell"
exclude = [
"data/*",
]
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
strsim = "^0.10"
derive_builder = "^0.10"
serde = { version = "1.0", features = ["derive"], optional = true }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
unidecode = "^0.3"
[target.wasm32-unknown-unknown.dependencies]
serde = "^1.0.59"
serde_derive = "^1.0.59"
wasm-bindgen = { version = "^0.2", features = ["serde-serialize"]}
[target.wasm32-unknown-unknown.dev-dependencies]
wasm-bindgen-test = "^0.3"
[dev-dependencies]