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 = [
|
2020-06-06 22:45:28 +04:00
|
|
|
"Runji Wang <wangrunji0408@163.com>",
|
2018-12-28 13:51:18 +04:00
|
|
|
"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>",
|
2019-02-15 10:54:42 +04:00
|
|
|
"maoyuchaxue <wangjt15@mails.tsinghua.edu.cn>",
|
|
|
|
"Jiajie Chen <jiegec@qq.com>",
|
2019-04-03 09:53:34 +04:00
|
|
|
"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]
|
2019-05-11 21:46:55 +04:00
|
|
|
default = []
|
2020-02-01 09:19:10 +04:00
|
|
|
board_qemu = []
|
2019-05-11 21:46:55 +04:00
|
|
|
board_u540 = ["link_user"]
|
|
|
|
board_rocket_chip = ["link_user"]
|
2018-12-01 13:37:37 +04:00
|
|
|
# (for aarch64 RaspberryPi3)
|
2018-12-20 13:34:24 +04:00
|
|
|
nographic = []
|
2019-05-24 11:20:39 +04:00
|
|
|
consolegraphic = []
|
2019-10-15 18:29:07 +04:00
|
|
|
board_raspi3 = ["bcm2837"]
|
2019-04-06 17:59:16 +04:00
|
|
|
# for qemu machine
|
2019-04-05 18:57:12 +04:00
|
|
|
board_malta = ["link_user"]
|
2019-04-06 17:59:16 +04:00
|
|
|
board_mipssim = ["link_user"]
|
2019-04-16 20:45:44 +04:00
|
|
|
# for x86 PC
|
|
|
|
board_pc = ["link_user"]
|
2019-01-25 06:28:38 +04:00
|
|
|
# Hard link user program
|
|
|
|
link_user = []
|
2019-03-26 12:03:32 +04:00
|
|
|
# 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
|
|
|
|
2018-06-03 15:29:11 +04:00
|
|
|
[profile.dev]
|
2019-03-29 09:14:08 +04:00
|
|
|
# MUST >= 2 : Enable RVO to avoid stack overflow
|
|
|
|
opt-level = 2
|
2018-06-03 15:29:11 +04:00
|
|
|
|
2018-07-06 18:33:28 +04:00
|
|
|
[dependencies]
|
2019-11-30 11:03:34 +04:00
|
|
|
bitflags = "1.2"
|
2020-06-15 14:38:59 +04:00
|
|
|
bitmap-allocator = { git = "https://github.com/rcore-os/bitmap-allocator", rev = "03bd9909" }
|
2020-01-29 15:52:18 +04:00
|
|
|
bitvec = { version = "0.17", default-features = false, features = ["alloc"] }
|
2020-06-15 14:38:59 +04:00
|
|
|
bit_field = "0.10"
|
2020-06-06 22:45:28 +04:00
|
|
|
buddy_system_allocator = "0.4.0"
|
2020-06-15 14:38:59 +04:00
|
|
|
compression = { version = "0.1.4", default-features = false, features = ["gzip"] }
|
2020-06-06 22:45:28 +04:00
|
|
|
device_tree = { git = "https://github.com/rcore-os/device_tree-rs", rev = "2fa8411c" }
|
2020-06-23 20:09:52 +04:00
|
|
|
executor = { git = "https://github.com/rcore-os/executor.git", rev = "a2d02ee9" }
|
2020-06-06 22:45:28 +04:00
|
|
|
isomorphic_drivers = { git = "https://github.com/rcore-os/isomorphic_drivers", rev = "fcf694d2", features = ["log"] }
|
2019-09-13 19:00:00 +04:00
|
|
|
lazy_static = { version = "1.4", features = ["spin_no_std"] }
|
2020-06-15 14:38:59 +04:00
|
|
|
log = "0.4"
|
|
|
|
naive-timer = { git = "https://github.com/rcore-os/naive-timer.git", rev = "d0cfe04" }
|
|
|
|
num = { version = "0.2.1", default-features = false }
|
|
|
|
num-traits = { version = "0.2.11", default-features = false }
|
|
|
|
num-derive = "0.3"
|
|
|
|
pci = { git = "https://github.com/rcore-os/pci-rs", rev = "a4e7cea6" }
|
|
|
|
pc-keyboard = "0.5"
|
2019-09-13 19:00:00 +04:00
|
|
|
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-16 05:31:54 +04:00
|
|
|
rcore-fs = { git = "https://github.com/rcore-os/rcore-fs", rev = "517af47" }
|
|
|
|
rcore-fs-sfs = { git = "https://github.com/rcore-os/rcore-fs", rev = "517af47" }
|
|
|
|
rcore-fs-ramfs = { git = "https://github.com/rcore-os/rcore-fs", rev = "517af47" }
|
|
|
|
rcore-fs-mountfs = { git = "https://github.com/rcore-os/rcore-fs", rev = "517af47" }
|
|
|
|
rcore-fs-devfs = { git = "https://github.com/rcore-os/rcore-fs", rev = "517af47" }
|
2020-06-15 14:38:59 +04:00
|
|
|
rlibc = "1.0"
|
|
|
|
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"] }
|
|
|
|
spin = "0.5"
|
2020-06-26 18:11:56 +04:00
|
|
|
trapframe = { git = "https://github.com/rcore-os/trapframe-rs", rev = "5c6cc02" }
|
2020-06-15 14:38:59 +04:00
|
|
|
virtio-drivers = { git = "https://github.com/rcore-os/virtio-drivers", rev = "dfa70e14" }
|
|
|
|
volatile = "0.2"
|
|
|
|
woke = "0.0.2"
|
|
|
|
xmas-elf = "0.7"
|
2018-07-06 18:33:28 +04:00
|
|
|
|
2018-08-04 12:20:25 +04:00
|
|
|
[target.'cfg(target_arch = "x86_64")'.dependencies]
|
2020-06-06 22:45:28 +04:00
|
|
|
apic = { git = "https://github.com/rcore-os/apic-rs", rev = "fb86bd7" }
|
2019-08-23 06:44:24 +04:00
|
|
|
acpi = "0.4"
|
|
|
|
aml = "0.4"
|
2020-06-15 14:38:59 +04:00
|
|
|
raw-cpuid = "8.0"
|
|
|
|
rboot = { path = "../rboot", default-features = false }
|
|
|
|
uart_16550 = "0.2.7"
|
|
|
|
x86_64 = "0.11"
|
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]
|
2020-06-20 06:06:35 +04:00
|
|
|
riscv = { git = "https://github.com/rcore-os/riscv", rev = "38f3786", features = ["inline-asm"] }
|
2018-07-04 12:23:11 +04:00
|
|
|
|
2018-10-26 22:45:47 +04:00
|
|
|
[target.'cfg(target_arch = "aarch64")'.dependencies]
|
2020-06-15 13:28:48 +04:00
|
|
|
aarch64 = { git = "https://github.com/rcore-os/aarch64", version = "3.0.1" }
|
2019-10-04 20:11:50 +04:00
|
|
|
bcm2837 = { git = "https://github.com/rcore-os/bcm2837", version = "2.5.1", optional = true }
|
2018-10-26 22:45:47 +04:00
|
|
|
|
2019-04-01 07:53:20 +04:00
|
|
|
[target.'cfg(target_arch = "mips")'.dependencies]
|
2019-04-08 21:08:49 +04:00
|
|
|
mips = "^0.2.0"
|
2020-06-16 13:09:44 +04:00
|
|
|
paste = "0.1"
|