-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
executable file
·32 lines (27 loc) · 963 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
[package]
name = "gpio-expander"
version = "0.1.0"
edition = "2021"
authors = ["Roman Samusevich <[email protected]>"]
description = "A platform-independent driver for interacting with the products GPIO Port Expander (Troyka Module), Troyka HAT and Slot Expander Expansion Board"
repository = "https://github.com/amperka/gpio-expander-rs"
readme = "readme.md"
license = "MIT/Apache-2.0"
categories = ["embedded", "hardware-support", "no-std"]
keywords = ["amperka", "troyka-hat", "embedded-hal", "embedded-hal-impl", "hal"]
autoexamples = false
[dependencies]
embedded-hal = { version = "^0.2", features = ["unproven"] }
shared-bus = "^0.2"
[dev_dependencies]
rppal = { version = "^0.13", features = ["hal"] }
embedded-hal-mock = "^0.8"
[[example]]
name = "troykahat-adc"
path = "examples/troykahat-adc.rs"
[[example]]
name = "troykahat-blink"
path = "examples/troykahat-blink.rs"
[[example]]
name = "troykahat-pwm-blink"
path = "examples/troykahat-pwm-blink.rs"