rcore-tutorial/os/Cargo.toml

23 lines
733 B
TOML
Raw Normal View History

2020-11-10 23:02:38 +08:00
[package]
name = "os"
version = "0.1.0"
authors = ["Yifan Wu <shinbokuow@163.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2020-11-19 18:01:16 +08:00
riscv = { git = "https://github.com/rcore-os/riscv", features = ["inline-asm"] }
lazy_static = { version = "1.4.0", features = ["spin_no_std"] }
buddy_system_allocator = "0.6"
2020-12-03 10:40:30 +08:00
spin = "0.7.0"
2020-12-04 17:23:35 +08:00
bitflags = "1.2.1"
2020-12-04 17:53:14 +08:00
xmas-elf = "0.7.0"
2020-12-16 10:18:38 +08:00
virtio-drivers = { git = "https://github.com/rcore-os/virtio-drivers" }
k210-pac = { git = "https://github.com/wyfcyx/k210-pac" }
k210-hal = { git = "https://github.com/wyfcyx/k210-hal" }
k210-soc = { git = "https://github.com/wyfcyx/k210-soc" }
[features]
board_qemu = []
board_k210 = []