Skip to content

Commit f3032f9

Browse files
committed
Update MSRV to 1.85; formatting
1 parent 875e372 commit f3032f9

4 files changed

Lines changed: 6 additions & 5 deletions

File tree

.github/workflows/rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
strategy:
5555
fail-fast: false
5656
matrix:
57-
rust: [1.82.0, 1.83.0]
57+
rust: [1.85.0, 1.86.0]
5858
timeout-minutes: 45
5959
steps:
6060
- uses: actions/checkout@v5

set/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ documentation = "https://docs.rs/bit-set/"
1010
keywords = ["data-structures", "bitset"]
1111
readme = "README.md"
1212
edition = "2021"
13-
rust-version = "1.63"
13+
rust-version = "1.85"
1414

1515
[dependencies]
1616
borsh = { version = "1.5", default-features = false, features = ["derive"], optional = true }

vec/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ documentation = "https://docs.rs/bit-vec/"
1010
keywords = ["data-structures", "bitvec", "bitmask", "bitmap", "bit"]
1111
readme = "README.md"
1212
edition = "2021"
13-
rust-version = "1.82"
13+
rust-version = "1.85"
1414

1515
[dependencies]
1616
borsh = { version = "1.5.7", default-features = false, features = ["derive"], optional = true }

vec/src/lib.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,6 @@ pub trait BitBlockOrStore {
218218
const ZERO: <Self::Store as BitStore>::Block = <Self::Store as BitStore>::Block::ZERO_;
219219
}
220220

221-
222221
macro_rules! impl_combination {
223222
(
224223
type $T:ty: [$($B:tt)*];
@@ -3603,7 +3602,9 @@ mod tests {
36033602

36043603
#[cfg(feature = "miniserde")]
36053604
#[test]
3606-
fn test_miniserde_serialization<S: BitBlockOrStore + miniserde::Serialize + miniserde::Deserialize>() {
3605+
fn test_miniserde_serialization<
3606+
S: BitBlockOrStore + miniserde::Serialize + miniserde::Deserialize,
3607+
>() {
36073608
let bit_vec = BitVec::<S>::new_general();
36083609
let serialized = miniserde::json::to_string(&bit_vec);
36093610
let unserialized: BitVec<S> = miniserde::json::from_str(&serialized[..]).unwrap();

0 commit comments

Comments
 (0)