init
This commit is contained in:
commit
cc9f6b58e1
21 changed files with 1538 additions and 0 deletions
26
Cargo.toml
Normal file
26
Cargo.toml
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
[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
|
||||
Loading…
Add table
Add a link
Reference in a new issue