From bb1f5646f95b64fe1c7719523b5d1e65400ddb46 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Wed, 6 Aug 2025 09:52:14 +0200
Subject: [PATCH] cargo: bump aarch64-paging from 0.9.1 to 0.10.0 in
/src/bare-metal/aps/examples in the minor group (#2834)
Bumps the minor group in /src/bare-metal/aps/examples with 1 update:
[aarch64-paging](https://github.com/google/aarch64-paging).
Updates `aarch64-paging` from 0.9.1 to 0.10.0
Release notes
Sourced from aarch64-paging's
releases.
0.10.0
New features
- Added
Attributes::GP
bit for BTI guarded pages.
Breaking changes
zerocopy
feature has been removed.
PageTable::write_to
is provided instead.
IdMap::activate
now returns the previous TTBR value
rather than storing it, and
IdMap::deactivate
takes the TTBR value to restore as a
parameter. IdMap::mark_active
no longer
takes a previous TTBR value parameter. The same applies to the
equivalent methods on LinearMap
.
- Renamed
Mapping::activate_raw
to activate
,
and added previous TTBR value parameter to
Mapping::deactivate
.
- A page table may be activated multiple times (e.g. on multiple
cores) and will keep track of how
many times it has been activated. It will only be considered inactive
once it has been deactivated
the same number of times.
MapError::PteUpdateFault
now contains a
usize
rather than a Descriptor
.
Descriptor
no longer implements Copy
,
Clone
, Default
, PartialEq
or
Eq
, as it now
contains an AtomicUsize
rather than just a
usize
. Various methods on Descriptor
now take
&self
rather than self
.
Changelog
Sourced from aarch64-paging's
changelog.
0.10.0
New features
- Added
Attributes::GP
bit for BTI guarded pages.
Breaking changes
zerocopy
feature has been removed.
PageTable::write_to
is provided instead.
IdMap::activate
now returns the previous TTBR value
rather than storing it, and
IdMap::deactivate
takes the TTBR value to restore as a
parameter. IdMap::mark_active
no longer
takes a previous TTBR value parameter. The same applies to the
equivalent methods on LinearMap
.
- Renamed
Mapping::activate_raw
to activate
,
and added previous TTBR value parameter to
Mapping::deactivate
.
- A page table may be activated multiple times (e.g. on multiple
cores) and will keep track of how
many times it has been activated. It will only be considered inactive
once it has been deactivated
the same number of times.
MapError::PteUpdateFault
now contains a
usize
rather than a Descriptor
.
Descriptor
no longer implements Copy
,
Clone
, Default
, PartialEq
or
Eq
, as it now
contains an AtomicUsize
rather than just a
usize
. Various methods on Descriptor
now take
&self
rather than self
.
Commits
3aa97a9
Prepare for 0.10.0 release.
426f0eb
Add changes to changelog. (#81)
3046d1f
Add changes to changelog.
ffaefdd
Add support for GP bit (#80)
f7073ed
Bump bitflags from 2.9.0 to 2.9.1 (#78)
3146fc9
Deal with memory ordering in page tables
83c51b4
Drop dependency on zerocopy
73cf4de
Mark page tables active before loading them into the MMU
c58a108
Move TTBR preserve/restore out of the API
0d3a2d6
Revert "Factor out Mapping::activate_raw."
- Additional commits viewable in compare
view
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
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/bare-metal/aps/examples/Cargo.lock | 4 ++--
src/bare-metal/aps/examples/Cargo.toml | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/bare-metal/aps/examples/Cargo.lock b/src/bare-metal/aps/examples/Cargo.lock
index 497ed1ed..5900fee5 100644
--- a/src/bare-metal/aps/examples/Cargo.lock
+++ b/src/bare-metal/aps/examples/Cargo.lock
@@ -4,9 +4,9 @@ version = 4
[[package]]
name = "aarch64-paging"
-version = "0.9.1"
+version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a3b8f725e9256b2fac2d25e013e22a6a391b8c07e23c4c5eac6e037a78a28801"
+checksum = "1f02b5bfa3a481fdade5948a994ce93aa6c76f67fc19f3a9b270565cf7dfc657"
dependencies = [
"bitflags",
"thiserror",
diff --git a/src/bare-metal/aps/examples/Cargo.toml b/src/bare-metal/aps/examples/Cargo.toml
index 5f99d876..5ebe16f5 100644
--- a/src/bare-metal/aps/examples/Cargo.toml
+++ b/src/bare-metal/aps/examples/Cargo.toml
@@ -7,7 +7,7 @@ edition = "2024"
publish = false
[dependencies]
-aarch64-paging = { version = "0.9.1", default-features = false }
+aarch64-paging = { version = "0.10.0", default-features = false }
aarch64-rt = "0.2.2"
arm-pl011-uart = "0.3.1"
bitflags = "2.9.1"