-
Notifications
You must be signed in to change notification settings - Fork 214
/
Copy pathCargo.toml
34 lines (31 loc) · 923 Bytes
/
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
[package]
name = "bootloader-x86_64-common"
version.workspace = true
edition = "2021"
description = "Common code for the x86_64 bootloader implementations"
license.workspace = true
repository.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bootloader_api = { workspace = true }
bootloader-boot-config = { workspace = true }
conquer-once = { version = "0.3.2", default-features = false }
spinning_top = "0.2.4"
usize_conversions = "0.2.0"
x86_64 = { version = "0.14.8" }
xmas-elf = "0.8.0"
raw-cpuid = "10.2.0"
rand = { version = "0.8.4", default-features = false }
rand_hc = "0.3.1"
uart_16550 = "0.2.18"
log = "0.4.17"
[dependencies.noto-sans-mono-bitmap]
version = "0.2.0"
default-features = false
features = [
"regular",
"size_16",
"unicode-basic-latin",
# required for the fallback char '�'
"unicode-specials",
]