-
-
Notifications
You must be signed in to change notification settings - Fork 12
Update dependencies to allow building with latest Rust version #31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
9f1d67a
Updated to latest Rust
BigBadE a19122f
Removed unnecessary error cast
BigBadE 525fe64
Fix clippy changes
BigBadE c3d3d93
Update lib.rs
BigBadE b60583f
Fix more clippy warnings
BigBadE 0409c3d
CI: update workflow
cecton 3fa17e2
Merge remote-tracking branch 'origin/main' into BigBadE/main
cecton 0cc186d
Bump MSRV to 1.85
cecton 88d1866
CI: remove test of old version of big array
cecton 93f20b1
Add categories
cecton cec5dee
clippy
cecton File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,22 +3,22 @@ name = "mbrman" | |
version = "0.5.4" | ||
authors = ["Cecile Tonglet <[email protected]>"] | ||
edition = "2021" | ||
rust-version = "1.56" | ||
rust-version = "1.85" | ||
license = "MIT OR Apache-2.0" | ||
description = "MBR Partition Management in Rust" | ||
repository = "https://github.com/rust-disk-partition-management/mbrman" | ||
homepage = "https://github.com/rust-disk-partition-management/mbrman" | ||
documentation = "https://docs.rs/mbrman" | ||
readme = "README.md" | ||
keywords = ["mbr", "partition", "table", "filesystem", "disk"] | ||
categories = [] | ||
categories = ["filesystem"] | ||
include = ["src/**/*.rs", "tests/fixtures/*.img", "README.md", "LICENSE.Apache-2.0", "LICENSE.MIT"] | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
bitvec = "1.0.1" | ||
bincode = "1.0.1" | ||
serde = { version = "1.0.116", features = ["derive"] } | ||
serde-big-array = ">= 0.4.1, < 0.6" | ||
thiserror = "1.0.24" | ||
bincode = { version = "2.0.1", features = ["serde"] } | ||
serde = { version = "1.0.210", features = ["derive"] } | ||
serde-big-array = "0.5.1" | ||
thiserror = "2.0.12" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wonder if this shouldn't be upgraded now. Can you check the different versions to see which ones work?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why do you think it shouldn't be upgraded?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No I meant the opposite. Should this be upgraded too, to 0.6 or up idk
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is no 0.6, 0.5.1 is the latest (https://docs.rs/serde-big-array/latest/serde_big_array/).