Skip to content

Commit

Permalink
fix(pci): fix incorrect MSRV
Browse files Browse the repository at this point in the history
`mycelium-pci` uses `bool::then_some` which was stabilized in
Rust 1.62.0, but advertises a MSRV of 1.61.0. Whoops!
  • Loading branch information
hawkw committed Jan 11, 2025
1 parent 6ae5e2e commit 1359cfe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pci/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ readme = "README.md"
keywords = ["no_std", "pci", "pcie"]
categories = ["no-std",]
edition = "2021"
rust-version = "1.61.0"
rust-version = "1.62.0"

[dependencies]
mycelium-util = { path = "../util" }
Expand Down

0 comments on commit 1359cfe

Please sign in to comment.