aboutsummaryrefslogtreecommitdiff
path: root/host/Cargo.toml
blob: 886962c5b1a0f51693bd931ee643e68d6b9e26a0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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"