forked from qclic/sparreal-os
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (36 loc) · 1.02 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
[workspace]
resolver = "2"
members = ["app/helloworld", "app/simple_test", "crates/*", "xtask"]
[workspace.dependencies]
embedded-hal = "1.0"
nb = "1.1"
embedded-hal-nb = "1.0"
embedded-hal-async = "1.0"
embedded-io = "0.6.1"
log = { version = "0.4" }
colored = "2.1"
clap = { version = "4.5" }
ansi_rgb = { version = "0.2" }
rgb = "0.8.47"
memory_addr = "0.3"
toml = "0.8"
serde = { default-features = false, version = "1", features = [
"alloc",
"derive",
] }
tock-registers = "0.9"
goblin = "0.9"
lock_api = "0.4"
futures = { version = "0.3", default-features = false }
sparreal-kernel = { path = "crates/sparreal-kernel" }
sparreal-rt = { path = "crates/sparreal-rt" }
sparreal-macros = { path = "crates/sparreal-macros" }
page-table-arm = { path = "crates/page-table-arm" }
driver-interface = { path = "crates/driver-interface" }
bare-test = { path = "crates/bare-test" }
bare-test-macros = { path = "crates/bare-test-macros" }
arm-gic-driver = "0.3"
arm-pl011-rs = "0.2"
[workspace.package]
version = "0.1.0"
edition = "2021"