forked from copper-project/copper-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (28 loc) · 833 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
[package]
name = "cu-rp-gpio"
description = "This is a simple driver example for the Raspberry Pi GPIOs for Copper."
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
keywords.workspace = true
categories.workspace = true
homepage.workspace = true
repository.workspace = true
[package.metadata.cargo-machete]
ignored = ["cu29-log", "cu29-log-runtime"] # proc macro
[dependencies]
cu29 = { workspace = true }
cu29-log = { workspace = true }
cu29-log-runtime = { workspace = true }
cu29-log-derive = { workspace = true }
bincode = { workspace = true }
serde = { workspace = true }
lazy_static = "1.5.0"
[target.'cfg(target_os = "linux")'.dependencies]
rppal = { version = "0.19.0", features = ["hal"] }
[build-dependencies]
cfg_aliases = "0.2.1"
[features]
default = []
mock = []