Skip to content

Commit 7b3a436

Browse files
committed
Bump arbitrary-int dependency
1 parent 3add523 commit 7b3a436

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

cortex-ar/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
2121
- MMU code: Use more `arbitrary-int` types for MMU configuration bits.
2222
- Renamed `L1Section::new` to `L1Section::new_with_addr_and_attrs`.
2323
- Bumped `defmt` to v1
24+
- Bumped `arbitrary-int` to v2
2425

2526
## [v0.2.0]
2627

cortex-ar/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ rust-version = "1.82"
2525
version = "0.2.0"
2626

2727
[dependencies]
28-
arbitrary-int = "1.3.0"
28+
arbitrary-int = "2"
2929
bitbybit = "1.3.3"
3030
num_enum = { version = "0.7", default-features = false }
3131
critical-section = {version = "1.2.0", features = ["restore-state-u8"], optional = true}

cortex-ar/src/register/dfsr.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! Code for managing DFSR (*Data Fault Status Register*)
22
3-
use arbitrary_int::{u4, u5, Number};
3+
use arbitrary_int::{u4, u5, prelude::*};
44

55
use crate::register::{SysReg, SysRegRead, SysRegWrite};
66

cortex-ar/src/register/drsr.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! Code for managing DRSR (*Data Region Size and Enable Register*)
22
3-
use arbitrary_int::Number;
3+
use arbitrary_int::prelude::*;
44

55
use crate::register::{SysReg, SysRegRead, SysRegWrite};
66

cortex-ar/src/register/ifsr.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! Code for managing IFSR (*Instruction Fault Status Register*)
22
3-
use arbitrary_int::{u4, u5, Number};
3+
use arbitrary_int::{u4, u5, prelude::*};
44

55
use crate::register::{SysReg, SysRegRead, SysRegWrite};
66

0 commit comments

Comments
 (0)