-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
61 lines (54 loc) · 1.92 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# This file was automatically generated.
[package]
edition = "2021"
name = "AR24-VCU"
version = "0.1.0"
[dependencies]
cortex-m = { version = "0.7.7", features = ["inline-asm", "critical-section-single-core"] }
cortex-m-rt = "0.7.3"
defmt = { version = "0.3.8", optional = true }
defmt-rtt = { version = "0.4.1", optional = true }
embassy-executor = { version = "*", features = ["arch-cortex-m", "executor-thread", "integrated-timers"] }
embassy-stm32 = { version = "0.1.0", features = ["memory-x", "rt", "defmt", "stm32g473cb", "time-driver-any", "exti", "unstable-pac"] }
embassy-futures = "0.1.1"
embassy-sync = "0.5.0"
embassy-time = { version = "*", features = ["tick-hz-32_000"] }
panic-halt = "0.2.0"
panic-probe = { version = "0.3.2", features = ["print-defmt"], optional = true }
embedded-can = "*"
[[bin]]
name = "AR24-VCU"
test = false
bench = false
[patch.crates-io]
embassy-stm32 = {git = "https://github.com/embassy-rs/embassy", rev = "000b022ae2e52e9abaabbd10110b4c583fe4344c"}
embassy-time = {git = "https://github.com/embassy-rs/embassy", rev = "000b022ae2e52e9abaabbd10110b4c583fe4344c"}
embassy-executor = {git = "https://github.com/embassy-rs/embassy", rev = "000b022ae2e52e9abaabbd10110b4c583fe4344c"}
embassy-futures = {git = "https://github.com/embassy-rs/embassy", rev = "000b022ae2e52e9abaabbd10110b4c583fe4344c"}
embassy-sync = {git = "https://github.com/embassy-rs/embassy", rev = "000b022ae2e52e9abaabbd10110b4c583fe4344c"}
[profile.dev]
debug = true
lto = true
opt-level = "z"
incremental = true
[profile.release]
debug = false
lto = true
opt-level = "z"
incremental = true
[features]
defmt = ["dep:defmt"]
defmt-rtt = ["dep:defmt-rtt"]
panic-probe = ["dep:panic-probe"]
default = ["debug"]
debug = [
"defmt",
"defmt-rtt",
"panic-probe",
"embassy-executor/defmt",
"embassy-sync/defmt",
"embassy-futures/defmt",
"embassy-time/defmt",
"embassy-time/defmt-timestamp-uptime",
"embassy-stm32/defmt",
]