kernel/kernel/Cargo.toml

31 lines
431 B
TOML
Raw Normal View History

[package]
name = "kernel"
version = "0.1.0"
edition = "2024"
[dependencies]
2025-01-20 14:38:40 -06:00
paste = "1.0.15"
[profile.release]
opt-level = "z"
strip = true
lto = true
codegen-units = 1
panic = "abort"
[[bin]]
name = "entrypoint"
path = "src/internal/arch/x86_asmp/entry.rs"
[[bin]]
name = "main"
path = "src/internal/main.rs"
[lib]
name = "aphrodite"
2025-01-20 14:38:40 -06:00
path = "src/include/mod.rs"
[[test]]
name = "test_aphrodite"
path = "src/include/test.rs"