Skip to content

Commit

Permalink
chore: Bump MSRV to 1.81
Browse files Browse the repository at this point in the history
  • Loading branch information
moricho committed Dec 3, 2024
1 parent 25c252f commit d1c9ad1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
rust: ["stable", "beta", "nightly", "1.79"] # MSRV
rust: ["stable", "beta", "nightly", "1.81"] # MSRV
flags: ["--no-default-features", "", "--all-features"]
steps:
- uses: actions/checkout@v3
Expand All @@ -29,7 +29,7 @@ jobs:
- name: build
run: cargo build --workspace ${{ matrix.flags }}
- name: test
if: ${{ matrix.rust != '1.79' }} # MSRV
if: ${{ matrix.rust != '1.81' }} # MSRV
run: cargo test --workspace ${{ matrix.flags }}

miri:
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Fast Merkle-Patricia Trie (MPT) state root calculator
and proof generator for prefix-sorted nibbles
"""
edition = "2021"
rust-version = "1.79"
rust-version = "1.81"
license = "MIT OR Apache-2.0"
categories = ["data-structures", "no-std"]
keywords = ["nibbles", "trie", "mpt", "merkle", "ethereum"]
Expand All @@ -20,11 +20,11 @@ repository = "https://github.com/alloy-rs/trie"
exclude = [".github/", "deny.toml", "release.toml", "rustfmt.toml"]

[dependencies]
alloy-primitives = { version = "0.8.5", default-features = false, features = [
alloy-primitives = { version = "0.8.14", default-features = false, features = [
"rlp",
"map",
] }
alloy-rlp = { version = "0.3.8", default-features = false, features = [
alloy-rlp = { version = "0.3.9", default-features = false, features = [
"derive",
"arrayvec",
] }
Expand Down
2 changes: 1 addition & 1 deletion clippy.toml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
msrv = "1.79"
msrv = "1.81"

0 comments on commit d1c9ad1

Please sign in to comment.