mirror of
https://github.com/iceHtwoO/novaOS.git
synced 2026-04-17 04:32:27 +00:00
25 lines
293 B
TOML
25 lines
293 B
TOML
[package]
|
|
name = "nova"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
|
|
[profile.dev]
|
|
panic = "abort"
|
|
debug = true
|
|
opt-level = 0
|
|
|
|
[profile.release]
|
|
panic = "abort"
|
|
|
|
[dependencies]
|
|
libm = "0.2.15"
|
|
heap = {path = "heap"}
|
|
NovaError = {path = "NovaError"}
|
|
|
|
[workspace]
|
|
|
|
members = [ "NovaError",
|
|
"heap"
|
|
]
|