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

102 lines
3.7 KiB
TOML
Raw Normal View History

2017-04-11 17:02:21 +04:00
[package]
2019-01-03 15:37:04 +04:00
name = "rcore"
2019-03-17 21:09:12 +04:00
version = "0.2.0"
2018-11-19 13:21:06 +04:00
edition = "2018"
2018-12-28 13:51:18 +04:00
authors = [
"WangRunji <wangrunji0408@163.com>",
"Ben Pig Chu <benpichu@gmail.com>",
"dzy <daizy15@mails.tsinghua.edu.cn>",
"equation314 <equation618@gmail.com>",
"cfgbd <cfgbdv@163.com>",
"koumingyang <1761674434@qq.com>",
"lcy1996 <992195697@qq.com>",
"chenqiuhao <haohao0924@126.com>",
"maoyuchaxue <wangjt15@mails.tsinghua.edu.cn>",
"Jiajie Chen <jiegec@qq.com>",
"chyyuu <yuchen@mail.tsinghua.edu.cn>",
"Shengqi Chen <harry-chen@outlok.com>",
"Yuhao Zhou <miskcoo@gmail.com>"
2018-12-28 13:51:18 +04:00
]
2017-04-11 17:02:21 +04:00
2018-04-09 13:02:18 +04:00
[features]
default = []
2020-02-01 09:19:10 +04:00
board_qemu = []
board_u540 = ["link_user"]
board_k210 = ["link_user"]
board_rocket_chip = ["link_user"]
2018-12-01 13:37:37 +04:00
# (for aarch64 RaspberryPi3)
nographic = []
consolegraphic = []
board_raspi3 = ["bcm2837", "link_user"]
# for qemu machine
board_malta = ["link_user"]
board_mipssim = ["link_user"]
# for thinpad
board_thinpad = ["link_user"]
2019-04-16 20:45:44 +04:00
# for x86 PC
board_pc = ["link_user"]
# Hard link user program
link_user = []
# Run cmdline instead of user shell, useful for automatic testing
run_cmdline = []
2019-04-30 17:32:32 +04:00
# Add performance profiling
profile = []
2018-04-09 13:02:18 +04:00
[profile.dev]
# MUST >= 2 : Enable RVO to avoid stack overflow
opt-level = 2
[dependencies]
rlibc = "1.0"
log = "0.4"
spin = "0.5"
2019-08-02 13:34:55 +04:00
xmas-elf = "0.7"
bitflags = "1.2"
2019-08-02 13:34:55 +04:00
bit_field = "0.10"
volatile = "0.2"
2020-01-29 15:52:18 +04:00
bitvec = { version = "0.17", default-features = false, features = ["alloc"] }
2020-04-06 12:30:30 +04:00
buddy_system_allocator = "0.3.9"
2019-03-30 19:43:20 +04:00
pci = { git = "https://github.com/rcore-os/pci-rs" }
2019-03-17 21:09:12 +04:00
device_tree = { git = "https://github.com/rcore-os/device_tree-rs" }
2019-05-24 12:45:28 +04:00
isomorphic_drivers = { git = "https://github.com/rcore-os/isomorphic_drivers", features = ["log"] }
2020-03-24 18:27:21 +04:00
virtio-drivers = { git = "https://github.com/rcore-os/virtio-drivers", rev = "dfa70e14" }
lazy_static = { version = "1.4", features = ["spin_no_std"] }
smoltcp = { git = "https://github.com/rcore-os/smoltcp", rev = "5bd87c7c", default-features = false, features = ["alloc", "log", "ethernet", "proto-ipv4", "proto-igmp", "socket-icmp", "socket-udp", "socket-tcp", "socket-raw"] }
bitmap-allocator = { git = "https://github.com/rcore-os/bitmap-allocator" }
rcore-console = { git = "https://github.com/rcore-os/rcore-console", rev = "b7bacf9", default-features = false }
2019-01-03 15:37:04 +04:00
rcore-memory = { path = "../crate/memory" }
2020-06-12 04:50:07 +04:00
rcore-thread = { git = "https://github.com/rcore-os/rcore-thread", rev = "e00f5ed" }
rcore-fs = { git = "https://github.com/rcore-os/rcore-fs", rev = "1fb7c0ee" }
rcore-fs-sfs = { git = "https://github.com/rcore-os/rcore-fs", rev = "1fb7c0ee" }
rcore-fs-ramfs = { git = "https://github.com/rcore-os/rcore-fs", rev = "1fb7c0ee" }
rcore-fs-mountfs = { git = "https://github.com/rcore-os/rcore-fs", rev = "1fb7c0ee" }
rcore-fs-devfs = { git = "https://github.com/rcore-os/rcore-fs", rev = "1fb7c0ee" }
2019-08-02 13:34:55 +04:00
compression = { version = "0.1.4", default-features = false, features = ["gzip"] }
2020-05-30 19:12:25 +04:00
num = { version = "0.2.1", default-features = false }
num-traits = { version = "0.2.11", default-features = false }
num-derive = "0.3"
2020-06-12 05:10:25 +04:00
pc-keyboard = "0.5"
[target.'cfg(target_arch = "x86_64")'.dependencies]
rboot = { path = "../rboot", default-features = false }
2019-03-17 21:09:12 +04:00
apic = { git = "https://github.com/rcore-os/apic-rs" }
x86_64 = "0.11"
raw-cpuid = "7.0"
uart_16550 = "0.2"
acpi = "0.4"
aml = "0.4"
2017-04-18 17:15:44 +04:00
2018-12-20 21:50:52 +04:00
[target.'cfg(any(target_arch = "riscv32", target_arch = "riscv64"))'.dependencies]
2019-03-18 20:43:06 +04:00
riscv = { git = "https://github.com/rcore-os/riscv", features = ["inline-asm"] }
2018-07-04 12:23:11 +04:00
[target.'cfg(target_arch = "aarch64")'.dependencies]
aarch64 = { git = "https://github.com/rcore-os/aarch64", version = "3.0.0" }
bcm2837 = { git = "https://github.com/rcore-os/bcm2837", version = "2.5.1", optional = true }
2019-04-01 07:53:20 +04:00
[target.'cfg(target_arch = "mips")'.dependencies]
mips = "^0.2.0"
paste = "0.1"
2019-03-31 18:04:22 +04:00
2018-04-11 17:27:11 +04:00
[build-dependencies]
cc = "1.0"