bootloader 0.9.34

An experimental pure-Rust x86 bootloader.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2018"
name = "bootloader"
version = "0.9.34"
authors = ["Philipp Oppermann <dev@phil-opp.com>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An experimental pure-Rust x86 bootloader."
readme = "README.md"
license = "MIT/Apache-2.0"
repository = "https://github.com/rust-osdev/bootloader"

[package.metadata.bootloader]
target = "x86_64-bootloader.json"
build-std = "core"

[package.metadata.docs.rs]
features = [
    "recursive_page_table",
    "map_physical_memory",
]
default-target = "x86_64-unknown-linux-gnu"

[package.metadata.release]
pre-release-commit-message = "Release version {{version}}"
publish = false

[[package.metadata.release.pre-release-replacements]]
file = "Changelog.md"
search = "# Unreleased"
replace = """
# Unreleased

# {{version}} – {{date}}"""
exactly = 1

[features]
binary = [
    "xmas-elf",
    "x86_64",
    "usize_conversions",
    "fixedvec",
    "llvm-tools",
    "toml",
    "rlibc",
]
default = []
map_physical_memory = []
recursive_page_table = []
sse = ["bit_field"]
vga_320x200 = ["font8x8"]

[lib]
name = "bootloader"
path = "src/lib.rs"

[[bin]]
name = "bootloader"
path = "src/main.rs"
required-features = ["binary"]

[dependencies.bit_field]
version = "0.10.0"
optional = true

[dependencies.fixedvec]
version = "0.2.4"
optional = true

[dependencies.font8x8]
version = "0.2.4"
features = ["unicode"]
optional = true
default-features = false

[dependencies.rlibc]
version = "1.0.0"
optional = true

[dependencies.usize_conversions]
version = "0.2.0"
optional = true

[dependencies.x86_64]
version = "0.14.7"
features = [
    "instructions",
    "inline_asm",
]
optional = true
default-features = false

[dependencies.xmas-elf]
version = "0.6.2"
optional = true

[build-dependencies.llvm-tools]
version = "0.1"
optional = true

[build-dependencies.toml]
version = "0.5.1"
optional = true

[profile.dev]
panic = "abort"

[profile.release]
lto = false
debug = 2
panic = "abort"