aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorNathan Perry <np@nathanperry.dev>2024-09-24 00:13:11 -0400
committerNathan Perry <np@nathanperry.dev>2024-09-26 06:50:09 -0400
commitc15509282eeb620b6ce70059ea10c4657cff7474 (patch)
tree361ab3803fdd0748565f69b5a56824ac84f2e23c /Cargo.toml
parent34f44829237f33a9940c12f57126a53f2a9c23f3 (diff)
pio i2s
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml12
1 files changed, 11 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index d93e708..837058a 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -11,6 +11,11 @@ homepage = "https://blog.npry.dev/resenv/ocularium"
repository = "https://pub.npry.dev/ocularium"
include = ["build.rs", "/src/", "Cargo.toml", "README.md", "LICENSE"]
+[workspace]
+exclude = [
+ "pio_i2s"
+]
+
[features]
disable_sd = []
@@ -19,10 +24,13 @@ veml7700_async = { git = "https://pub.npry.dev/veml7700_async" }
drogue_bme680_async = { git = "https://pub.npry.dev/drogue_bme680_async" }
lsm6dsm = { git = "https://pub.npry.dev/lsm6dsm" }
-embassy-executor = { git = "https://github.com/embassy-rs/embassy", features = ["executor-interrupt", "executor-thread", "arch-cortex-m", "nightly"] }
serde = { version = "1.0", default-features = false }
+
+embassy-executor = { git = "https://github.com/embassy-rs/embassy", features = ["executor-interrupt", "executor-thread", "arch-cortex-m", "nightly"] }
cortex-m-rt = { version = "0.7", default-features = false }
+pio = "0.2"
+
[dependencies.molybdos]
git = "https://pub.npry.dev/molybdos"
features = [
@@ -37,6 +45,7 @@ features = [
"impl_alloc",
]
+
[build-dependencies]
molybdos_build = { git = "https://pub.npry.dev/molybdos", features = ["defmt", "vergen"] }
@@ -52,6 +61,7 @@ embassy-executor = { git = "https://github.com/mammothbane/embassy" }
embassy-time = { git = "https://github.com/mammothbane/embassy" }
embassy-time-driver = { git = "https://github.com/mammothbane/embassy" }
embassy-usb = { git = "https://github.com/mammothbane/embassy" }
+embassy-rp = { git = "https://github.com/mammothbane/embassy" }
[profile.dev]
codegen-units = 1