[package]
edition = "2024"
name = "tg-rcore-tutorial-sync"
version = "0.4.7"
authors = ["zflcs <zhaofangliang@foxmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Synchronization primitives for rCore tutorial OS, including mutex, semaphore, and condvar."
homepage = "https://github.com/rcore-os/tg-rcore-tutorial-sync/tree/test"
documentation = "https://docs.rs/tg-rcore-tutorial-sync"
readme = "README.md"
keywords = [
"rcore",
"sync",
"mutex",
"riscv",
]
categories = [
"no-std",
"embedded",
"concurrency",
]
license = "GPL-3.0"
repository = "https://github.com/rcore-os/tg-rcore-tutorial-sync"
[lib]
name = "tg_rcore_tutorial_sync"
path = "src/lib.rs"
[dependencies.riscv]
version = "0.10"
[dependencies.spin]
version = "0.9"
[dependencies.tg-task-manage]
version = "0.4.7"
package = "tg-rcore-tutorial-task-manage"