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

37 lines
723 B
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
2018-05-21 20:54:18 +04:00
[profile.release]
debug = true
2017-04-11 20:25:51 +04:00
[dependencies]
2017-04-19 14:07:02 +04:00
bit_field = "0.7.0"
2017-04-11 20:25:51 +04:00
rlibc = "1.0"
volatile = "0.1.0"
spin = "0.4.5"
multiboot2 = "0.5"
2018-04-17 16:55:12 +04:00
bitflags = "1.0"
2017-04-13 21:40:20 +04:00
x86_64 = "0.1.2"
once = "0.3.3"
2018-04-03 17:42:23 +04:00
linked_list_allocator = "0.5.0"
2018-04-14 16:18:59 +04:00
redox_syscall = "0.1.37"
xmas-elf = "0.6"
arrayvec = { version = "0.4.7", default-features = false }
log = "0.4"
2018-05-20 20:01:53 +04:00
lazy_static = { version = "1.0.0", features = ["spin_no_std"] }
2018-05-20 18:49:27 +04:00
simple-filesystem = { git = "https://github.com/wangrunji0408/SimpleFileSystem-Rust" }
2017-04-18 17:15:44 +04:00
2018-04-11 17:27:11 +04:00
[build-dependencies]
cc = "1.0"