| 1 | [package] |
| 2 | authors = ["Jorge Aparicio <jorge@japaric.io>" ] |
| 3 | categories = ["asynchronous" , "embedded" , "no-std" ] |
| 4 | description = "Minimal non-blocking I/O layer" |
| 5 | keywords = ["await" , "futures" , "IO" ] |
| 6 | license = "MIT OR Apache-2.0" |
| 7 | name = "nb" |
| 8 | repository = "https://github.com/rust-embedded/nb" |
| 9 | homepage = "https://github.com/rust-embedded/nb" |
| 10 | documentation = "https://docs.rs/nb" |
| 11 | readme = "README.md" |
| 12 | version = "0.1.3" # remember to update html_root_url |
| 13 | |
| 14 | [features] |
| 15 | unstable = [] |
| 16 | |
| 17 | [dependencies] |
| 18 | nb = "1" |
| 19 | |
| 20 | [dev-dependencies] |
| 21 | futures = "0.1.17" |
| 22 | |
| 23 | [lib] |
| 24 | # Due to the semver-trick, doctests do not compile: |
| 25 | # error[E0465]: multiple rlib candidates for `nb` found |
| 26 | doctest = false |
| 27 | |