1[package]
2authors = ["Jorge Aparicio <jorge@japaric.io>"]
3categories = ["asynchronous", "embedded", "no-std"]
4description = "Minimal non-blocking I/O layer"
5keywords = ["await", "futures", "IO"]
6license = "MIT OR Apache-2.0"
7name = "nb"
8repository = "https://github.com/rust-embedded/nb"
9homepage = "https://github.com/rust-embedded/nb"
10documentation = "https://docs.rs/nb"
11readme = "README.md"
12version = "0.1.3" # remember to update html_root_url
13
14[features]
15unstable = []
16
17[dependencies]
18nb = "1"
19
20[dev-dependencies]
21futures = "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
26doctest = false
27