| Crates.io | hunspell-sys |
| lib.rs | hunspell-sys |
| version | 0.3.1 |
| created_at | 2019-04-25 14:58:10.876498+00 |
| updated_at | 2022-10-24 22:27:23.336016+00 |
| description | Bindings to the hunspell C API. |
| homepage | |
| repository | https://github.com/euclio/hunspell-sys |
| max_upload_size | |
| id | 130149 |
| size | 2,804,165 |
Rust bindings for the hunspell C API.
By default hunspell-sys searches for a hunspell library installation with pkg-config. By default the linkage is dynamic, if static is required use static
Optionally, the bundled code of hunspell can be compiled with the cc crate and will be linked statically when the bundled feature is present. The feature static is not required for this, the bundled feature will always link the produced hunspell artifact statically.
[dependencies]
hunspell-sys = { version = "0.3.1", features = ["bundled"] }
If compiling for/on musl systems, libclang as used by bindgen-rs
must be linked statically as well, which can be achieved with feature
static_libclang.
[dependencies]
hunspell-sys = { version = "0.3.1", features = ["bundled", "static_libclang"] }