blob: ab25a71f531d662e5eea3ab627a4233505c8e594 (
plain)
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
|
[workspace]
resolver = "3"
members = ["crates/*"]
[workspace.dependencies]
rust-threadx-cortex-m = { path = "crates/cortex-m" }
rust-threadx-qemu = { path = "crates/qemu" }
rust-threadx-stdio-imxrt-usbd = { path = "crates/stdio-imxrt-usbd" }
rust-threadx-stdio-semihosting = { path = "crates/stdio-semihosting" }
cortex-m = { version = "0.7" }
cortex-m-rt = { version = "0.7" }
cortex-m-semihosting = { version = "0.5" }
lm3s6965 = "0.2"
imxrt-ral = { version = "0.6.2", features = ["rt"] }
imxrt-rt = { version = "0.1.8", features = ["device"] }
[patch.crates-io]
cortex-m = { git = "https://github.com/rust-embedded/cortex-m", rev = "8c62cc47314445346851b0d0664f9cc34c50b24d" }
imxrt-ral = {
git = "https://github.com/mciantyre/imxrt-ral",
branch = "rust-threadx",
}
imxrt-rt = {
git = "https://github.com/mciantyre/imxrt-rt",
branch = "rust-threadx",
}
teensy4-fcb = {
git = "https://github.com/mciantyre/teensy4-rs",
branch = "rust-threadx",
}
teensy4-bsp = {
git = "https://github.com/mciantyre/teensy4-rs",
branch = "rust-threadx",
}
|