From 5d00ff9d4ef8799a23ab50224138b4afa3d5ab4e Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Wed, 2 Apr 2025 10:12:42 +0000
Subject: [PATCH] cargo: bump the minor group in /src/exercises/bare-metal/rtc
with 2 updates (#2700)
Bumps the minor group in /src/exercises/bare-metal/rtc with 2 updates:
[smccc](https://github.com/google/smccc) and
[spin](https://github.com/mvdnes/spin-rs).
Updates `smccc` from 0.1.1 to 0.2.0
Changelog
Sourced from smccc's
changelog.
0.2.0
Breaking changes
- Added
psci::Version
type, which is used for the return
value of psci::version
.
New features
- Error types now implement
core::error::Error
.
- Added 32-bit versions of 64-bit PSCI calls.
- Added support for aarch32.
Commits
6f90908
Prepare for 0.2.0 release.
de93b5b
Merge pull request #10 from
google/arm32
dc0d606
Fix typo and mention unit.
d12f420
Mention SMCCC 1.4 rather than 1.3 in Rustdoc comments.
2262f6f
Add support for aarch32.
3aa617b
Added 32-bit versions of 64-bit PSCI calls.
9bf9d34
Add permisisons to fix clippy lint check in CI.
d973061
Merge pull request #20 from
google/psci
ecb5769
Add type for PSCI version.
be2efbf
Bump thiserror from 2.0.11 to 2.0.12 (#19)
- Additional commits viewable in compare
view
Updates `spin` from 0.9.8 to 0.10.0
Changelog
Sourced from spin's
changelog.
[0.10.0] - 2025-03-26
Added
Mutex::try_lock_weak
RwLock::try_write_weak
RwLock::try_upgrade_weak
Changed
- Updated MSRV to 1.60
- Use
dep:
syntax in Cargo.toml
portable_atomic
feature has been renamed to
portable-atomic
, for consistency.
Fixed
Commits
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore ` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore ` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore ` will
remove the ignore condition of the specified dependency and ignore
conditions
Signed-off-by: dependabot[bot]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
---
src/exercises/bare-metal/rtc/Cargo.lock | 11 +++++++----
src/exercises/bare-metal/rtc/Cargo.toml | 4 ++--
2 files changed, 9 insertions(+), 6 deletions(-)
diff --git a/src/exercises/bare-metal/rtc/Cargo.lock b/src/exercises/bare-metal/rtc/Cargo.lock
index 7e06e2aa..be67068b 100644
--- a/src/exercises/bare-metal/rtc/Cargo.lock
+++ b/src/exercises/bare-metal/rtc/Cargo.lock
@@ -112,15 +112,18 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
[[package]]
name = "smccc"
-version = "0.1.1"
+version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "617d17f088ec733e5a6b86da6ce4cce1414e6e856d6061c16dda51cceae6f68c"
+checksum = "4d28c99a9913f0686f470a6ff020e160195eb1a86f9c1800aab2b3abba4bc9b3"
+dependencies = [
+ "thiserror",
+]
[[package]]
name = "spin"
-version = "0.9.8"
+version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
+checksum = "d5fe4ccb98d9c292d56fec89a5e07da7fc4cf0dc11e156b41793132775d3e591"
dependencies = [
"lock_api",
]
diff --git a/src/exercises/bare-metal/rtc/Cargo.toml b/src/exercises/bare-metal/rtc/Cargo.toml
index db5f3491..73b93afa 100644
--- a/src/exercises/bare-metal/rtc/Cargo.toml
+++ b/src/exercises/bare-metal/rtc/Cargo.toml
@@ -11,8 +11,8 @@ arm-gic = "0.2.2"
bitflags = "2.9.0"
chrono = { version = "0.4.40", default-features = false }
log = "0.4.27"
-smccc = "0.1.1"
-spin = "0.9.8"
+smccc = "0.2.0"
+spin = "0.10.0"
[build-dependencies]
cc = "1.2.17"