rcore-tutorial/os/Cargo.toml

26 lines
787 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>"]
2022-06-18 15:23:16 +08:00
edition = "2021"
2020-11-10 23:02:38 +08:00
# 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"
2023-01-02 20:06:03 +08:00
bit_field = "0.10.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"
2022-02-18 13:09:03 -08:00
volatile = "0.3"
2022-09-05 02:33:37 -07:00
virtio-drivers = { git = "https://github.com/rcore-os/virtio-drivers", rev = "4ee80e5" }
2023-02-06 19:21:43 +08:00
lose-net-stack = { git = "https://github.com/yfblock/lose-net-stack", rev = "3f467dd" }
easy-fs = { path = "../easy-fs" }
2022-06-18 15:23:16 +08:00
virtio-input-decoder = "0.1.4"
embedded-graphics = "0.7.1"
tinybmp = "0.3.1"
[profile.release]
debug = true