tiny_os/Cargo.toml
2023-09-06 22:51:24 +08:00

27 lines
478 B
TOML

[package]
name = "tiny_os"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["arch_riscv64", "board_virt"]
arch_riscv64 = []
arch_arm = []
arch_x86 = []
board_default = []
board_virt = []
board_thead = []
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"
[dependencies]
sbi-rt = { version = "0.0.2", features = ["legacy"] }
uart_16550 = "0.3"
log = "0.4"