xref: /DragonBoot/Cargo.toml (revision 0ec3a34a58ffc0a9c51a23a7ee5e7d803a0060cd)
1[package]
2name = "dragon_boot"
3version = "0.1.0"
4edition = "2021"
5build = "build.rs"
6
7
8# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
9
10[dependencies]
11log = "0.4.20"
12uefi = { version = "0.26.0", features = ["alloc"] }
13uefi-services = "0.23.0"
14
15[build-dependencies]
16dragon_boot_build = { path = "build-scripts/dragon_boot_build" }
17
18[workspace]
19exclude = [ "build-scripts" ]
20