starry-kernel 0.5.9

A Linux-compatible OS kernel built on ArceOS unikernel
[package]
name = "starry-kernel"
version = "0.5.9"
edition.workspace = true
description = "A Linux-compatible OS kernel built on ArceOS unikernel"
authors = [
    "Azure-stars <Azure_stars@126.com>",
    "Yuekai Jia <equation618@gmail.com>",
    "KylinSoft Co., Ltd. <https://www.kylinos.cn/>",
    "朝倉水希 <asakuramizu111@gmail.com>",
    "Mivik <mivikq@gmail.com>",
]
repository.workspace = true
license.workspace = true

[features]
dev-log = []
input = ["dep:ax-input", "ax-feat/input"]
memtrack = ["ax-feat/dwarf", "ax-alloc/tracking", "dep:gimli"]
rknpu = ["dep:axplat-dyn", "axplat-dyn/rknpu"]
vsock = ["ax-feat/vsock"]

[dependencies]
ax-feat = { workspace = true, features = [
    "fp-simd",
    "irq",
    "uspace",

    "page-alloc-4g",
    "alloc-slab",

    "multitask",
    "task-ext",
    "sched-rr",

    "rtc",

    "fs-ng-ext4",
    "net-ng",
] }

ax-alloc.workspace = true
ax-config.workspace = true
ax-display.workspace = true
ax-driver.workspace = true
ax-fs = { version = "0.5", package = "ax-fs-ng" }
ax-hal.workspace = true
ax-input = { workspace = true, optional = true }
ax-log.workspace = true
ax-mm.workspace = true
axnet = { version = "0.5", package = "ax-net-ng" }
axplat-dyn = { workspace = true, optional = true }
ax-runtime.workspace = true
ax-sync.workspace = true
ax-task.workspace = true

axbacktrace = "0.3"
ax-errno = "0.4"
axfs-ng-vfs = "0.3"
ax-io = "0.5"
axpoll = "0.3"
bitflags = "2.10"
bitmaps = { version = "3.2", default-features = false }
bytemuck = { version = "1.23", features = ["unsound_ptr_pod_impl", "derive"] }
cfg-if = "1.0"
chrono = { version = "0.4", default-features = false }
downcast-rs = { version = "2.0", default-features = false, features = ["sync"] }
enum_dispatch = "0.3"
event-listener = { version = "5.4", default-features = false }
extern-trait = "0.4"
flatten_objects = "0.2.4"
gimli = { version = "0.33", default-features = false, optional = true }
hashbrown = "0.16"
indoc = "2"
inherit-methods-macro = "0.1.0"
ax-kernel-guard = "0.3"
kernel-elf-parser = "0.3.4"
ax-kspin = "0.3"
lazy_static = { version = "1.5", features = ["spin_no_std"] }
linux-raw-sys = { version = "0.12", default-features = false, features = [
    "no_std",
    "general",
    "net",
    "prctl",
    "system",
    "ioctl",
    "loop_device",
] }
lock_api = { version = "0.4", features = ["arc_lock"] }
ax-memory-addr = "0.6"
ax-memory-set = "0.6"
num_enum = { version = "0.7", default-features = false }
ouroboros = { version = "0.18", default-features = false }
ax-percpu = "0.4"
rand = { version = "0.10", default-features = false, features = ["alloc"] }
ringbuf = { version = "0.4.8", default-features = false, features = ["alloc"] }
scope-local = "0.3"
slab = { version = "0.4.9", default-features = false }
spin = "0.10"
starry-process = "0.4"
starry-signal = "0.6"
starry-vm = "0.5"
strum = { version = "0.28", default-features = false, features = ["derive"] }
syscalls = { version = "0.8", default-features = false }
uluru = "3.1.0"
weak-map = "0.1.1"
xmas-elf = "0.9"
zerocopy = { version = "0.8", features = ["derive"] }

[target.'cfg(target_arch = "x86_64")'.dependencies]
x86 = "0.52"

[target.'cfg(any(target_arch = "riscv32", target_arch = "riscv64"))'.dependencies]
riscv = "0.16"

[target.'cfg(not(any(target_arch = "aarch64", target_arch = "loongarch64")))'.dependencies]
ax-page-table-multiarch = { version = "0.8", features = ["copy-from"] }