forked from rust-embedded/embedded-hal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (30 loc) · 854 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
authors = [
"Jorge Aparicio <jorge@japaric.io>",
"Jonathan 'theJPster' Pallant <github@thejpster.org.uk>"
]
categories = ["asynchronous", "embedded", "hardware-support", "no-std"]
description = " A Hardware Abstraction Layer (HAL) for embedded systems "
documentation = "https://docs.rs/embedded-hal"
keywords = ["hal", "IO"]
license = "MIT OR Apache-2.0"
name = "embedded-hal"
readme = "README.md"
repository = "https://github.com/japaric/embedded-hal"
version = "0.2.4"
[dependencies.void]
default-features = false
version = "1.0.2"
[dependencies.nb]
version = "0.1.1"
[dependencies.embedded-hal]
git = "https://github.com/ryankurte/embedded-hal"
tag = "v0.3.0"
features = ["unproven"]
[dev-dependencies]
stm32f30x = "0.6.0"
futures = "0.1.17"
[features]
unproven = ["nb/unstable"]
[package.metadata.docs.rs]
features = ["unproven"]