spellkit 0.4.0

Cross-platform native spell checking for Rust (NSSpellChecker, Windows Spell Checker, Hunspell).
Documentation
[package]
name = "spellkit"
description = "Cross-platform native spell checking for Rust (NSSpellChecker, Windows Spell Checker, Hunspell)."
keywords = ["spellcheck", "spellchecker", "hunspell", "nsspellchecker"]
categories = ["os", "text-processing"]
documentation = "https://docs.rs/spellkit"
homepage = "https://github.com/rtmongold/spellkit"
repository = "https://github.com/rtmongold/spellkit"
version = "0.4.0"
authors = [
    "Andy Russell <arussell123@gmail.com>",
    "Robert Mongold <rtmongold@gmail.com>"
]
edition = "2024"
rust-version = "1.85"
license = "MIT OR Apache-2.0"
readme = "README.md"

[target.'cfg(target_os="macos")'.dependencies]
objc2 = "0.6"
objc2-foundation = { version = "0.3", features = ["NSString", "NSArray", "NSRange"] }
objc2-app-kit = { version = "0.3", features = ["NSSpellChecker"] }

[target.'cfg(windows)'.dependencies.windows]
version = "0.62"
features = [
    "Win32_Foundation",
    "Win32_Globalization",
    "Win32_System_Com",
]

[target.'cfg(all(unix, not(target_os = "macos")))'.dependencies]
hunspell-sys = "0.3.1"

[dependencies]
cfg-if = "1.0.4"