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

27 lines
433 B
TOML
Raw Normal View History

2017-04-11 17:02:21 +04:00
[package]
name = "blog_os"
version = "0.1.0"
authors = ["Philipp Oppermann <dev@phil-opp.com>"]
[lib]
crate-type = ["staticlib"]
2017-04-11 20:25:51 +04:00
2018-04-09 13:02:18 +04:00
[features]
2018-04-09 17:20:47 +04:00
test = []
2018-04-09 13:02:18 +04:00
qemu_auto_exit = []
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"
2017-04-13 19:51:09 +04:00
multiboot2 = "0.1.0"
2017-04-13 20:27:39 +04:00
bitflags = "0.7.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"
2017-04-18 17:15:44 +04:00
[dependencies.lazy_static]
version = "1.0.0"
2017-04-18 17:15:44 +04:00
features = ["spin_no_std"]