mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-16 14:27:49 +00:00
24 lines
501 B
TOML
24 lines
501 B
TOML
[package]
|
|
authors = ["Philipp Oppermann <dev@phil-opp.com>"]
|
|
name = "blog_os"
|
|
version = "0.2.0"
|
|
|
|
[dependencies]
|
|
spin = "0.4.6"
|
|
volatile = "0.2.3"
|
|
|
|
[dependencies.lazy_static]
|
|
version = "1.0"
|
|
features = ["spin_no_std"]
|
|
|
|
# the profile used for `cargo build`
|
|
[profile.dev]
|
|
panic = "abort" # disable stack unwinding on panic
|
|
|
|
# the profile used for `cargo build --release`
|
|
[profile.release]
|
|
panic = "abort" # disable stack unwinding on panic
|
|
|
|
[package.metadata.bootimage]
|
|
default-target = "x86_64-blog_os"
|