forked from golemparts/rppal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
29 lines (26 loc) · 1.01 KB
/
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
[package]
name = "rppal"
version = "0.12.0" # Also update html_root_url in lib.rs
edition = "2018"
authors = ["Rene van der Meer <rene@golemparts.com>"]
description = "Interface for the Raspberry Pi's GPIO, I2C, PWM, SPI and UART peripherals."
documentation = "https://docs.golemparts.com/rppal"
repository = "https://github.com/golemparts/rppal"
readme = "README.md"
license = "MIT"
categories = ["embedded", "hardware-support"]
keywords = ["raspberry", "pi", "embedded-hal", "embedded-hal-impl", "hal"]
[dependencies]
libc = "0.2.50"
lazy_static = "1.3.0"
nb = { version = "0.1.1", optional = true }
embedded-hal-0 = { version = "0.2.6", optional = true, package = "embedded-hal" }
embedded-hal = { version = "1.0.0-alpha.4", optional = true }
void = { version = "1.0.2", optional = true }
spin_sleep = { version = "1.0.0", optional = true }
[dev-dependencies]
simple-signal = "1.1.1"
[features]
default = []
hal = ["nb", "embedded-hal", "embedded-hal-0", "spin_sleep", "void"]
hal-unproven = ["nb", "embedded-hal-0/unproven", "hal"]