diff options
Diffstat (limited to 'host/Cargo.toml')
| -rw-r--r-- | host/Cargo.toml | 22 |
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 |
