26 lines
841 B
TOML
26 lines
841 B
TOML
[package]
|
|
name = "badapple-uefi"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
authors = ["Your Name <you@example.com>"]
|
|
description = "UEFI payload that plays the Bad Apple animation (video + audio) using the uefi-rs crate"
|
|
|
|
[dependencies]
|
|
uefi = { version = "0.35", default-features = false, features = ["alloc", "global_allocator", "panic_handler", "logger", "qemu"] }
|
|
bitvec = { version = "1", default-features = false, features = ["alloc"] }
|
|
micromath = { version = "2", default-features = false }
|
|
log = "0.4"
|
|
spin = { version = "0.9", default-features = false, features = ["mutex", "spin_mutex"] }
|
|
|
|
[target.'cfg(target_arch = "x86_64")'.dependencies]
|
|
x86_64 = { version = "0.15", default-features = false }
|
|
|
|
[profile.dev]
|
|
opt-level = "s"
|
|
|
|
[profile.release]
|
|
opt-level = "z"
|
|
codegen-units = 1
|
|
lto = true
|
|
strip = true
|