init
This commit is contained in:
commit
2190a5c04d
18 changed files with 745 additions and 0 deletions
24
Cargo.toml
Normal file
24
Cargo.toml
Normal 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"
|
Loading…
Add table
Add a link
Reference in a new issue