ch2: Batch system

AppManager
This commit is contained in:
Tateisi 2025-08-03 06:54:14 +08:00
parent 93d85e1d32
commit 13e91ed735
6 changed files with 119 additions and 0 deletions

7
os/Cargo.lock generated
View file

@ -2,6 +2,12 @@
# It is not intended for manual editing.
version = 3
[[package]]
name = "lazy_static"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
[[package]]
name = "log"
version = "0.4.22"
@ -12,6 +18,7 @@ checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
name = "os"
version = "0.1.0"
dependencies = [
"lazy_static",
"log",
"sbi-rt",
]