tg-rcore-tutorial-ch5-basic 0.5.0-preview.2

Standalone reproducible crate for the Chapter 5 basic lab of tg-rcore-tutorial.
Documentation
[package]
name = "tg-rcore-tutorial-ch5-basic"
description = "Standalone reproducible crate for the Chapter 5 basic lab of tg-rcore-tutorial."
version = "0.5.0-preview.2"
edition = "2024"
authors = ["Joshua", "YdrMaster <ydrml@hotmail.com>", "Yifan Wang <w-yf22@mails.tsinghua.edu.cn>", "Yu Chen <yuchen@tsinghua.edu.cn>"]
repository = "https://github.com/Joshua912815/tg-rcore-tutorial"
homepage = "https://github.com/Joshua912815/tg-rcore-tutorial/tree/ch5-basic-crate-v0.5.0-preview.2/standalone/tg-rcore-tutorial-ch5-basic"
documentation = "https://docs.rs/tg-rcore-tutorial-ch5-basic"
license = "GPL-3.0"
readme = "README.md"
keywords = ["ai", "ai4ose", "kernel", "learning", "os"]
categories = ["no-std", "embedded"]
include = [
    "Cargo.toml",
    "README.md",
    "LICENSE",
    "Makefile",
    "build.rs",
    "exercise.md",
    "test.sh",
    ".cargo/config.toml",
    "bundle/tg-rcore-tutorial-user.tar.gz",
    "src/**",
    "docs/**",
    "vendor/tg-rcore-tutorial-user/**",
]

[features]
exercise = []

[profile.dev]
panic = "abort"

[profile.release]
panic = "abort"

[dependencies]
xmas-elf = "0.8.0"
riscv = "0.10.1"
spin = "0.9"

tg-sbi = { package = "tg-rcore-tutorial-sbi", version = "0.4.8", features = ["nobios"] }
tg-linker = { package = "tg-rcore-tutorial-linker", version = "0.4.8" }
tg-console = { package = "tg-rcore-tutorial-console", version = "0.4.8" }
tg-kernel-context = { package = "tg-rcore-tutorial-kernel-context", version = "0.4.8", features = ["foreign"] }
tg-kernel-alloc = { package = "tg-rcore-tutorial-kernel-alloc", version = "0.4.8" }
tg-kernel-vm = { package = "tg-rcore-tutorial-kernel-vm", version = "0.4.8" }
tg-syscall = { package = "tg-rcore-tutorial-syscall", version = "0.4.8", features = ["kernel"] }
tg-task-manage = { package = "tg-rcore-tutorial-task-manage", version = "0.4.8", features = ["proc"] }

[build-dependencies]
tg-linker = { package = "tg-rcore-tutorial-linker", version = "0.4.8" }
serde = { version = "1", features = ["derive"] }
toml = "0.8"
flate2 = "1"
tar = "0.4"

[workspace]