-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
67 lines (53 loc) · 1.24 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[package]
name = "pixtend"
license = "MIT"
version = "0.1.0"
edition = "2021"
authors = ["Daniel Kolter <[email protected]>"]
description = "Rust library for the PiXtend V2L board"
repository = "https://github.com/DKolter/pixtend"
keywords = ["pixtend", "raspberry", "board", "io", "pi"]
categories = ["hardware-support"]
[dependencies]
deku = "0.17"
rppal = "0.19"
thiserror = "1.0"
[[example]]
name = "digital_outputs"
path = "examples/digital_outputs.rs"
[[example]]
name = "relay_outputs"
path = "examples/relay_outputs.rs"
[[example]]
name = "gpio_outputs"
path = "examples/gpio_outputs.rs"
[[example]]
name = "safe_mode"
path = "examples/safe_mode.rs"
[[example]]
name = "watchdog"
path = "examples/watchdog.rs"
[[example]]
name = "versions"
path = "examples/versions.rs"
[[example]]
name = "digital_inputs"
path = "examples/digital_inputs.rs"
[[example]]
name = "analog_inputs"
path = "examples/analog_inputs.rs"
[[example]]
name = "gpio_inputs"
path = "examples/gpio_inputs.rs"
[[example]]
name = "gpio_pullups"
path = "examples/gpio_pullups.rs"
[[example]]
name = "sensor_inputs"
path = "examples/sensor_inputs.rs"
[[example]]
name = "retain"
path = "examples/retain.rs"
[[example]]
name = "analog_outputs"
path = "examples/analog_outputs.rs"