mirror of
https://github.com/rcore-os/rCore.git
synced 2024-11-22 16:16:16 +04:00
110 lines
3.7 KiB
TOML
110 lines
3.7 KiB
TOML
[package]
|
|
name = "rcore"
|
|
version = "0.2.0"
|
|
edition = "2018"
|
|
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>"
|
|
]
|
|
|
|
[features]
|
|
default = []
|
|
board_u540 = ["link_user"]
|
|
board_k210 = ["link_user"]
|
|
board_rocket_chip = ["link_user"]
|
|
# (for aarch64 RaspberryPi3)
|
|
nographic = []
|
|
consolegraphic = []
|
|
board_raspi3 = ["bcm2837", "link_user"]
|
|
raspi3_use_generic_timer = ["bcm2837/use_generic_timer"]
|
|
# for qemu machine
|
|
board_malta = ["link_user"]
|
|
board_mipssim = ["link_user"]
|
|
# for thinpad
|
|
board_thinpad = ["link_user"]
|
|
# 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 = []
|
|
# Add performance profiling
|
|
profile = []
|
|
|
|
[profile.dev]
|
|
# MUST >= 2 : Enable RVO to avoid stack overflow
|
|
opt-level = 2
|
|
|
|
[dependencies]
|
|
log = "0.4"
|
|
spin = "0.5"
|
|
xmas-elf = "0.6"
|
|
bitflags = "1.0"
|
|
bit_field = "0.9"
|
|
volatile = "0.2"
|
|
heapless = "0.4"
|
|
bitvec = { version = "0.11", default-features = false, features = ["alloc"] }
|
|
console-traits = "0.3"
|
|
buddy_system_allocator = "0.3"
|
|
pci = { git = "https://github.com/rcore-os/pci-rs" }
|
|
device_tree = { git = "https://github.com/rcore-os/device_tree-rs" }
|
|
isomorphic_drivers = { git = "https://github.com/rcore-os/isomorphic_drivers", features = ["log"] }
|
|
lazy_static = { version = "1.3", features = ["spin_no_std"] }
|
|
smoltcp = { git = "https://github.com/rcore-os/smoltcp", default-features = false, features = ["alloc", "log", "proto-ipv4", "proto-igmp", "socket-icmp", "socket-udp", "socket-tcp", "socket-raw"] }
|
|
bitmap-allocator = { git = "https://github.com/rcore-os/bitmap-allocator" }
|
|
rcore-memory = { path = "../crate/memory" }
|
|
rcore-thread = { git = "https://github.com/rcore-os/rcore-thread" }
|
|
rcore-fs = { git = "https://github.com/rcore-os/rcore-fs" }
|
|
rcore-fs-sfs = { git = "https://github.com/rcore-os/rcore-fs" }
|
|
compression = { version="0.1.3", default-features = false, features=["gzip"]}
|
|
|
|
|
|
[target.'cfg(target_arch = "x86_64")'.dependencies]
|
|
bootloader = { git = "https://github.com/rcore-os/bootloader", branch = "vga" }
|
|
apic = { git = "https://github.com/rcore-os/apic-rs" }
|
|
x86_64 = "0.6"
|
|
raw-cpuid = "6.0"
|
|
uart_16550 = "0.2"
|
|
pc-keyboard = "0.5"
|
|
acpi = "0.2"
|
|
|
|
[target.'cfg(any(target_arch = "riscv32", target_arch = "riscv64"))'.dependencies]
|
|
riscv = { git = "https://github.com/rcore-os/riscv", features = ["inline-asm"] }
|
|
|
|
[target.'cfg(target_arch = "aarch64")'.dependencies]
|
|
aarch64 = { git = "https://github.com/rcore-os/aarch64", version = "2.6.1" }
|
|
bcm2837 = { git = "https://github.com/rcore-os/bcm2837", version = "1.0.0", optional = true }
|
|
|
|
[target.'cfg(target_arch = "mips")'.dependencies]
|
|
mips = "^0.2.0"
|
|
paste = "0.1"
|
|
|
|
[package.metadata.bootimage]
|
|
default-target = "targets/x86_64.json"
|
|
output = "target/x86_64/bootimage.bin"
|
|
minimum-image-size = 0 # The minimum output file size (in MiB)
|
|
# The command invoked on `bootimage run`
|
|
# (the "{}" will be replaced with the path to the bootable disk image)
|
|
run-command = ["qemu-system-x86_64",
|
|
"-drive", "format=raw,file={}",
|
|
# TODO: use USER_IMG environment variable
|
|
"-drive", "format=raw,file=../user/img/ucore-i386-pic.img,media=disk,cache=writeback",
|
|
"-serial", "mon:stdio",
|
|
"-device", "isa-debug-exit",
|
|
"-smp", "4"
|
|
]
|
|
|
|
[build-dependencies]
|
|
cc = "1.0"
|