-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
35 lines (32 loc) · 1000 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "firmware-controller"
description = "Controller to decouple interactions between components in a no_std environment."
version = "0.1.0"
edition = "2021"
authors = ["JUCR GmbH <[email protected]>"]
license = "MIT"
repository = "https://github.com/jucr-io/firmware-controller/"
[lib]
proc-macro = true
[dependencies]
proc-macro2 = "1"
quote = "1"
syn = { version = "2", features = ["extra-traits", "fold", "full"] }
[dev-dependencies]
heapless = { version = "0.7", default-features = false }
futures = { version = "0.3", default-features = false, features = [
"async-await",
] }
embassy-sync = { git = "https://github.com/jucr-io/embassy/" }
embassy-executor = { git = "https://github.com/jucr-io/embassy/", features = [
"task-arena-size-32768",
"arch-std",
"executor-thread",
"defmt",
"integrated-timers",
] }
embassy-time = { git = "https://github.com/jucr-io/embassy/", features = [
"defmt",
"defmt-timestamp-uptime",
"tick-hz-32_768",
] }