This commit is contained in:
mtgmonkey
2025-07-29 09:46:44 -04:00
commit 147702a8fa
14 changed files with 1020 additions and 0 deletions

33
Cargo.toml Normal file
View File

@@ -0,0 +1,33 @@
[package]
name = "oxidos"
version = "0.1.0"
edition = "2024"
[lib]
crate-type = ["staticlib"]
[dependencies]
lazy_static = { version = "1.5.0", features = ["spin_no_std"] }
spin = { version = "0.10.0", default-features = false, features = ["spin_mutex"] }
[dev-dependencies]
addr2line = "=0.25.0"
cfg-if = "=1.0.1"
dlmalloc = "=0.2.10"
fortanix-sgx-abi = "=0.6.1"
getopts = "=0.2.23"
hashbrown = "=0.15.4"
hermit-abi = "=0.5.2"
object = "=0.37.1"
r-efi = "=5.3.0"
r-efi-alloc = "=2.1.0"
rustc-demangle = "=0.1.25"
rustc-literal-escaper = "=0.0.5"
unwinding = "=0.2.7"
wasi = "0.11.0"
[profile.release]
panic="abort"
[profile.dev]
panic="abort"