1
0
mirror of https://github.com/rcore-os/rCore.git synced 2024-11-23 00:16:17 +04:00
rCore/Cargo.toml
2018-06-23 19:11:41 +08:00

43 lines
834 B
TOML

[package]
name = "rust-ucore"
version = "0.1.0"
authors = ["Runji Wang <wangrunji0408@163.com>"]
[lib]
crate-type = ["staticlib"]
[features]
use_apic = []
test = []
qemu_auto_exit = []
link_user_program = []
[profile.dev]
# enable RVO to avoid stack overflow
opt-level = 1
[profile.release]
debug = true
[dependencies]
bit_field = "0.9.0"
rlibc = "1.0"
volatile = "0.1.0"
spin = "0.4.8"
multiboot2 = "0.6"
bitflags = "1.0"
x86_64 = "0.2.6"
once = "0.3.3"
linked_list_allocator = "0.6"
redox_syscall = "0.1"
xmas-elf = "0.6"
log = "0.4"
uart_16550 = "0.1"
lazy_static = { version = "1.0.0", features = ["spin_no_std"] }
simple-filesystem = { git = "https://github.com/wangrunji0408/SimpleFileSystem-Rust" }
bit-allocator = { path = "crate/bit-allocator" }
ucore-memory = { path = "crate/memory" }
[build-dependencies]
cc = "1.0"