Files
blog_os/Cargo.toml
2018-10-24 09:31:42 +02:00

31 lines
643 B
TOML

[package]
authors = ["Philipp Oppermann <dev@phil-opp.com>"]
name = "blog_os"
version = "0.2.0"
[dependencies]
bootloader_precompiled = "0.2.0"
spin = "0.4.9"
volatile = "0.2.3"
uart_16550 = "0.1.0"
x86_64 = "0.2.8"
pic8259_simple = "0.1.1"
[dependencies.lazy_static]
version = "1.0"
features = ["spin_no_std"]
[dev-dependencies]
array-init = "0.0.3"
# 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.json"