Repo of no-std crates for my personal embedded projects
1[workspace]
2resolver = "3"
3members = [
4 "sachy-battery",
5 "sachy-bthome",
6 "sachy-config",
7 "sachy-crypto",
8 "sachy-esphome",
9 "sachy-fmt",
10 "sachy-fnv",
11 "sachy-mdns",
12 "sachy-shtc3",
13 "sachy-sntp",
14]
15
16[workspace.package]
17authors = ["Sachymetsu <sachymetsu@tutamail.com>"]
18edition = "2024"
19repository = "https://tangled.org/sachy.dev/sachy-embed-core/"
20license = "MIT OR Apache-2.0"
21version = "0.1.0"
22rust-version = "1.89.0"
23
24[workspace.dependencies]
25embassy-futures = { version = "0.1" }
26embassy-time = { version = "0.5" }
27embassy-sync = { version = "0.8" }
28embassy-net = { version = "0.9" }
29defmt = { version = "1" }
30
31[patch.crates-io]
32dhkem = { git = "https://github.com/RustCrypto/KEMs", rev = "5b84cfb1c94ef4eeecd77d3281d18833d095978b" }