-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (27 loc) · 896 Bytes
/
Copy pathCargo.toml
File metadata and controls
32 lines (27 loc) · 896 Bytes
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
[package]
name = "spellbound"
description = "Bindings to your friendly neighborhood spellchecker."
keywords = ["spellcheck", "spellchecker", "hunspell"]
categories = ["os", "text-processing"]
documentation = "https://docs.rs/spellbound"
repository = "https://github.com/rtmongold/spellbound"
version = "0.2.0"
authors = [
"Andy Russell <arussell123@gmail.com>",
"Robert Mongold <rtmongold@gmail.com>"
]
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "README.md"
[target.'cfg(target_os="macos")'.dependencies]
cocoa = "0.20.0"
objc = "0.2"
[target.'cfg(windows)'.dependencies.winapi]
version = "0.3"
features = ["combaseapi", "objbase", "spellcheck"]
[target.'cfg(all(unix, not(target_os = "macos")))'.dependencies]
hunspell-sys = "0.3.1"
[dependencies]
cfg-if = "0.1.6"
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(feature, values("cargo-clippy"))'] }