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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- rust_version: nightly
run_tests: true
# Minimal supported rustc version
- rust_version: 1.65.0
- rust_version: 1.68.0
run_tests: false
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.rust_version == 'nightly' }}
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ New features:
* Fix `format_volume` function panicking in debug build for FAT12 volumes with size below 1 MB
* Fix index out of range panic when reading 248+ characters long file names with `alloc` feature disabled
* Remove `byteorder` dependency.
* Bump up minimal Rust compiler version to 1.65.0.
* Bump up minimal Rust compiler version to 1.68.0.
* Build the crate using the 2021 edition.
* Add support for compile-time configuration of logging levels via Cargo features. By default, all logging levels are
enabled, including "trace" and up.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "fatfs"
version = "0.4.0"
authors = ["Rafał Harabień <[email protected]>"]
edition = "2021"
rust-version = "1.65"
rust-version = "1.68"
repository = "https://github.com/rafalh/rust-fatfs"
readme = "README.md"
keywords = ["fat", "filesystem", "no_std"]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Rust FAT FS
[![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE.txt)
[![crates.io](https://img.shields.io/crates/v/fatfs)](https://crates.io/crates/fatfs)
[![Documentation](https://docs.rs/fatfs/badge.svg)](https://docs.rs/fatfs)
[![Minimum rustc version](https://img.shields.io/badge/rustc-1.65+-yellow.svg)](https://blog.rust-lang.org/2022/11/03/Rust-1.65.0.html)
[![Minimum rustc version](https://img.shields.io/badge/rustc-1.68+-yellow.svg)](https://blog.rust-lang.org/2023/03/09/Rust-1.68.0/)

A FAT filesystem library implemented in Rust.

Expand Down