This commit is contained in:
mtgmonkey 2025-05-12 23:05:08 -04:00
commit 2190a5c04d
18 changed files with 745 additions and 0 deletions

24
Cargo.toml Normal file
View file

@ -0,0 +1,24 @@
[package]
name = "rustboot"
version = "0.1.0"
edition = "2024"
authors = ["mtgmonkey"]
[lib]
crate-type = ["staticlib"] # library that contains all dependencies
[dependencies]
rlibc = "1.0"
spin = "0.10"
volatile = "0.3" # newest functional version
x86_64 = "0.15"
[dependencies.lazy_static]
version = "1.5"
features = ["spin_no_std"]
#[profile.dev]
#panic = "abort"
#[profile.release]
#panic = "abort"