aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorNathan Perry <np@nathanperry.dev>2024-09-12 04:14:22 -0400
committerNathan Perry <np@nathanperry.dev>2024-09-12 04:14:28 -0400
commitdf3afac081acea1cb8fd081dfd935973a9eaeed6 (patch)
treeb6de9b6ab3881c7a14f607c69ff72fbc36791f71 /Cargo.toml
parentfa1c3226f0db6bcfb216db80e41840b48ae7610b (diff)
hopefully working
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml24
1 files changed, 23 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 3555fdd..bb479a6 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,9 +1,31 @@
[package]
name = "ocularium"
-version = "0.1.0"
+version = "0.1.0-alpha0"
edition = "2021"
+description = "firmware for tiny kite-borne sensor node"
authors = [
"Nathan Perry <np@npry.dev>"
]
+license = "MIT"
+homepage = "https://blog.npry.dev/resenv/ocularium"
+repository = "https://pub.npry.dev/ocularium"
+include = ["build.rs", "/src/", "Cargo.toml", "README.md", "LICENSE"]
[dependencies]
+molybdos = { git = "https://pub.npry.dev/molybdos", features = ["rp", "defmt", "rtt"] }
+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" }
+embedded_sdmmc_async = { git = "https://pub.npry.dev/embedded_sdmmc_async" }
+
+embassy-executor.git = "https://github.com/embassy-rs/embassy"
+
+[build-dependencies]
+molybdos_build.git = "https://pub.npry.dev/molybdos"
+
+[patch]
+"https://pub.npry.dev/molybdos".molybdos = { path = "../molybdos" }
+"https://pub.npry.dev/molybdos".molybdos_build = { path = "../molybdos/molybdos_build" }
+"https://pub.npry.dev/veml7700_async".veml7700_async = { path = "../../fork/veml7700" }
+"https://pub.npry.dev/drogue_bme680_async".drogue_bme680_async = { path = "../../fork/drogue_bme680_async" }
+"https://pub.npry.dev/lsm6dsm".lsm6dsm = { path = "../lsm6dsm" }