aboutsummaryrefslogtreecommitdiff
path: root/host/Cargo.toml
diff options
context:
space:
mode:
authorNathan Perry <np@nathanperry.dev>2024-09-26 06:47:23 -0400
committerNathan Perry <np@nathanperry.dev>2024-09-26 06:55:50 -0400
commit486c11f8d1d5b6b0b10838b50ea04a78f95b38eb (patch)
tree4cb512a5ca40f33daa9689b617ee57d7e6c3a73c /host/Cargo.toml
parentc15509282eeb620b6ce70059ea10c4657cff7474 (diff)
host interface
Diffstat (limited to 'host/Cargo.toml')
-rw-r--r--host/Cargo.toml22
1 files changed, 22 insertions, 0 deletions
diff --git a/host/Cargo.toml b/host/Cargo.toml
new file mode 100644
index 0000000..886962c
--- /dev/null
+++ b/host/Cargo.toml
@@ -0,0 +1,22 @@
+[package]
+name = "ocularium_host"
+version = "0.1.0"
+edition = "2021"
+
+[dependencies]
+clap = { version = "4.5.18", features = ["derive"] }
+tokio = { version = "1.40.0", features = ["full"] }
+chrono = "0.4.38"
+tokio-serial = "5.4"
+postcard = "1.0"
+heapless = { version = "0.8", features = ["serde"] }
+eyre = "0.6"
+serde = "1.0"
+ssmarshal = { version = "1.0", features = ["std"] }
+
+embassy-executor = { git = "https://github.com/embassy-rs/embassy", features = ["arch-std"] }
+embassy-time = { git = "https://github.com/embassy-rs/embassy", features = ["std", "generic-queue"] }
+
+molybdos_lib = { git = "https://pub.npry.dev/molybdos", features = ["postcard", "serde", "std"], default-features = false }
+
+hound = "3.5" \ No newline at end of file