diff options
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -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 |
