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

55 lines
1.3 KiB
TOML
Raw Normal View History

2017-04-11 17:02:21 +04:00
[package]
2018-05-20 20:01:53 +04:00
name = "rust-ucore"
2017-04-11 17:02:21 +04:00
version = "0.1.0"
2018-05-20 20:01:53 +04:00
authors = ["Runji Wang <wangrunji0408@163.com>"]
2017-04-11 17:02:21 +04:00
[lib]
crate-type = ["staticlib"]
2017-04-11 20:25:51 +04:00
2018-04-09 13:02:18 +04:00
[features]
2018-04-14 20:45:57 +04:00
use_apic = []
2018-04-09 17:20:47 +04:00
test = []
2018-04-09 13:02:18 +04:00
qemu_auto_exit = []
link_user_program = []
2018-04-09 13:02:18 +04:00
[profile.dev]
2018-07-12 16:45:22 +04:00
# MUST >= 1 : Enable RVO to avoid stack overflow
# MUST >= 2 : Avoid (u8, u8) LLVM error in RV32 (at crate 'log')
# Error: Assertion `isSimple() && "Expected a SimpleValueType!"' failed.
# BUT!
# MUST <= 1 : Avoid double fault at -O2 T_T
opt-level = 1
2018-05-21 20:54:18 +04:00
[profile.release]
debug = true
[dependencies]
2018-07-12 16:45:22 +04:00
# Fixed version for RV32
log = { git = "https://github.com/riscv-and-rust-and-decaf/log.git" }
2017-04-11 20:25:51 +04:00
rlibc = "1.0"
spin = "0.4.8"
once = "0.3.3"
xmas-elf = "0.6"
2018-04-17 16:55:12 +04:00
bitflags = "1.0"
bit_field = "0.9.0"
volatile = "0.1.0"
lazy_static = { version = "1.0.0", features = ["spin_no_std"] }
2018-07-13 08:25:39 +04:00
bit-allocator = { path = "../crate/bit-allocator" }
ucore-memory = { path = "../crate/memory" }
simple-filesystem = { git = "https://github.com/wangrunji0408/SimpleFileSystem-Rust" }
[target.x86_64-blog_os.dependencies]
multiboot2 = "0.6"
x86_64 = "0.2.6"
linked_list_allocator = "0.6"
2018-06-16 21:22:43 +04:00
redox_syscall = "0.1"
2018-06-19 20:24:07 +04:00
uart_16550 = "0.1"
2017-04-18 17:15:44 +04:00
[target.riscv32-blog_os.dependencies]
linked_list_allocator = "0.5" # due to rust version
2018-07-13 08:25:39 +04:00
riscv = { path = "../crate/riscv" }
bbl = { path = "../crate/bbl" }
2018-07-04 12:23:11 +04:00
2018-04-11 17:27:11 +04:00
[build-dependencies]
cc = "1.0"