forked from rust-osdev/bootloader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
45 lines (37 loc) · 896 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
35
36
37
38
39
40
41
42
43
44
45
[package]
name = "bootloader"
version = "0.6.4"
authors = ["Philipp Oppermann <[email protected]>"]
license = "MIT/Apache-2.0"
description = "An experimental pure-Rust x86 bootloader."
repository = "https://github.com/rust-osdev/bootloader"
edition = "2018"
build = "build.rs"
[dependencies]
xmas-elf = "0.6.2"
x86_64 = "0.7.2"
usize_conversions = "0.2.0"
fixedvec = "0.2.3"
[dependencies.font8x8]
version = "0.2.4"
default-features = false
features = ["unicode"]
optional = true
[build-dependencies]
llvm-tools = "0.1"
[features]
default = []
vga_320x200 = ["font8x8"]
vesa_800x600 = ["font8x8"]
recursive_page_table = []
map_physical_memory = []
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"
lto = false
debug = true
[package.metadata.bootloader]
target = "x86_64-bootloader.json"
[package.metadata.docs.rs]
features = [ "recursive_page_table", "map_physical_memory" ]