-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (37 loc) · 867 Bytes
/
Copy pathCargo.toml
File metadata and controls
42 lines (37 loc) · 867 Bytes
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
[workspace]
members = [
"tools/xtask",
"platform/riscv64-virt",
"platform/loongarch64-bootrom",
"platform/loongarch64-virt",
"crates/hal-api",
"crates/hal-virtio",
"crates/hal-riscv64-virt",
"crates/hal-loongarch64-virt",
"crates/kernel-core",
"crates/mm",
"crates/task",
"crates/proc",
"crates/vfs",
"crates/fs-ext4",
"crates/syscall",
"crates/user-init",
]
resolver = "2"
[workspace.package]
edition = "2021"
version = "0.1.0"
license = "MIT OR Apache-2.0"
authors = ["Codex"]
[workspace.dependencies]
spin = "0.9"
ext4-view = { version = "0.9.3", default-features = false }
fdt = "0.2.0-alpha1"
virtio-drivers = "0.13.0"
[patch.crates-io]
fdt = { path = "third_party/fdt" }
virtio-drivers = { path = "third_party/virtio-drivers" }
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"