Next Generation WASM Microkernel Operating System
1[package]
2name = "loader"
3version.workspace = true
4edition.workspace = true
5authors.workspace = true
6license.workspace = true
7
8[[bin]]
9name = "loader"
10harness = false
11
12[dependencies]
13loader-api.workspace = true
14spin.workspace = true
15fdt.workspace = true
16abort.workspace = true
17
18# third-party dependencies
19log.workspace = true
20cfg-if.workspace = true
21rand_chacha.workspace = true
22rand.workspace = true
23arrayvec.workspace = true
24xmas-elf.workspace = true
25fallible-iterator.workspace = true
26bitflags.workspace = true
27
28[target.'cfg(any(target_arch = "riscv64", target_arch = "riscv32"))'.dependencies]
29riscv.workspace = true
30
31[lints]
32workspace = true