Installing for Rust
[dependencies]
daegun = "1.0.0"That is a caret requirement, so it accepts every 1.x release without an edit. daegun isno_std with alloc; std is a default feature you can turn off.
Features
| Feature | Default | What it does |
|---|---|---|
std | yes | Links the standard library. |
threading | no | Makes handles thread safe. Implies std. |
capi | no | Builds the C ABI. Implies threading. |