1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-07-03 21:39:51 +02:00

cargo: bump the patch group in /src/exercises/bare-metal/rtc with 3 updates (#2796)

Bumps the patch group in /src/exercises/bare-metal/rtc with 3 updates:
[aarch64-rt](https://github.com/google/aarch64-rt),
[smccc](https://github.com/google/smccc) and
[zerocopy](https://github.com/google/zerocopy).

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
dependabot[bot]
2025-07-01 11:02:18 +01:00
committed by GitHub
parent 6194ac4abb
commit fb95fb377d
2 changed files with 11 additions and 18 deletions

View File

@ -14,11 +14,10 @@ dependencies = [
[[package]] [[package]]
name = "aarch64-rt" name = "aarch64-rt"
version = "0.2.0" version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3ba0820a68948e3655dbde1071b421d9ae8c08afb58e274b72c22e8a981c548c" checksum = "8069db67616de3ec8d024aa717f447a6995f159a3b46b4379d600a6224640c03"
dependencies = [ dependencies = [
"cfg-if",
"smccc", "smccc",
] ]
@ -60,12 +59,6 @@ version = "2.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967" checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]] [[package]]
name = "chrono" name = "chrono"
version = "0.4.41" version = "0.4.41"
@ -180,9 +173,9 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
[[package]] [[package]]
name = "smccc" name = "smccc"
version = "0.2.1" version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87ed898c59fbfd740492e435cba30a08b74a68d1f1ebb5f1a4b17f6bc7782be8" checksum = "7c73e0ca8c566478040487791c9f488f86c5aec846ca1ab18484be8a1d8c55cd"
dependencies = [ dependencies = [
"thiserror", "thiserror",
] ]
@ -235,18 +228,18 @@ checksum = "00e2473a93778eb0bad35909dff6a10d28e63f792f16ed15e404fca9d5eeedbe"
[[package]] [[package]]
name = "zerocopy" name = "zerocopy"
version = "0.8.25" version = "0.8.26"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb" checksum = "1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f"
dependencies = [ dependencies = [
"zerocopy-derive", "zerocopy-derive",
] ]
[[package]] [[package]]
name = "zerocopy-derive" name = "zerocopy-derive"
version = "0.8.25" version = "0.8.26"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef" checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",

View File

@ -8,13 +8,13 @@ publish = false
[dependencies] [dependencies]
aarch64-paging = { version = "0.9.1", default-features = false } aarch64-paging = { version = "0.9.1", default-features = false }
aarch64-rt = "0.2.0" aarch64-rt = "0.2.1"
arm-gic = "0.4.0" arm-gic = "0.4.0"
arm-pl011-uart = "0.3.1" arm-pl011-uart = "0.3.1"
bitflags = "2.9.1" bitflags = "2.9.1"
chrono = { version = "0.4.41", default-features = false } chrono = { version = "0.4.41", default-features = false }
log = "0.4.27" log = "0.4.27"
safe-mmio = "0.2.5" safe-mmio = "0.2.5"
smccc = "0.2.1" smccc = "0.2.2"
spin = "0.10.0" spin = "0.10.0"
zerocopy = "0.8.25" zerocopy = "0.8.26"