kernel/Cargo.lock

41 lines
1,020 B
Text
Raw Permalink Normal View History

2022-12-22 13:23:08 +01:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "bootloader"
version = "0.9.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6e02311b16c9819e7c72866d379cdd3026c3b7b25c1edf161f548f8e887e7ff"
[[package]]
name = "kernel"
version = "0.1.0"
dependencies = [
"bootloader",
2022-12-23 16:09:45 +01:00
"lazy_static",
"spin",
2022-12-22 13:23:08 +01:00
"volatile",
]
2022-12-23 16:09:45 +01:00
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
dependencies = [
"spin",
]
[[package]]
name = "spin"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
2022-12-22 13:23:08 +01:00
[[package]]
name = "volatile"
2022-12-23 16:09:45 +01:00
version = "0.2.7"
2022-12-22 13:23:08 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-23 16:09:45 +01:00
checksum = "f6b06ad3ed06fef1713569d547cdbdb439eafed76341820fb0e0344f29a41945"