Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
matrix:
# Always run MSRV too!
rust: ["stable", "1.86"]
rust: ["stable", "1.87"]
features: ['log', 'defmt-log', '""']
steps:
- uses: actions/checkout@v4
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ The format is based on [Keep a Changelog] and this project adheres to [Semantic
### Changed

- Updated to `defmt` 1.0.1, `embedded-hal-bus` 0.3.0, `env_logger` 0.11.8, `heapless` 0.9.1, and `hex-literal` 1.0.0.
- Raised the minimum supported Rust version to 1.86.0.
- Raised the minimum supported Rust version to 1.87.0.
- Removed `core-error` feature as MSRV is now above 1.81

## [Version 0.9.0] - 2025-06-08

Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repository = "https://github.com/rust-embedded-community/embedded-sdmmc-rs"
version = "0.9.0"

# Make sure to update the CI too!
rust-version = "1.86"
rust-version = "1.87"

[dependencies]
byteorder = {version = "1", default-features = false}
Expand All @@ -33,4 +33,4 @@ sha2 = "0.10"
default = ["log"]
defmt-log = ["dep:defmt"]
log = ["dep:log"]
core-error = []

3 changes: 0 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,6 @@
//! * `defmt-log`: By turning off the default features and enabling the
//! `defmt-log` feature you can configure this crate to log messages over defmt
//! instead.
//! * `core-error`: Enables implementations of `core::error::Error` for all error
//! types. This raises the Minimum Supported Rust Version to 1.81.
//!
//! You cannot enable both the `log` feature and the `defmt-log` feature.

Expand Down Expand Up @@ -316,7 +314,6 @@ where
}
}

#[cfg(feature = "core-error")]
impl<E> core::error::Error for Error<E> where E: core::fmt::Debug + core::fmt::Display {}

/// A handle to a volume.
Expand Down
1 change: 0 additions & 1 deletion src/sdcard/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -648,7 +648,6 @@ impl core::fmt::Display for Error {
}
}

#[cfg(feature = "core-error")]
impl core::error::Error for Error {}

/// The different types of card we support.
Expand Down