Skip to content

Commit 0fe2e85

Browse files
authored
Merge pull request #7 from soonlabs/fer-bump-alloy
Bump alloy version
2 parents ae2f0f0 + b998fa8 commit 0fe2e85

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
rust: ["stable", "beta", "nightly", "1.66"] # MSRV
19+
rust: ["stable", "beta", "nightly", "1.81"] # MSRV
2020
flags: ["--no-default-features", "", "--all-features"]
2121
steps:
2222
- uses: actions/checkout@v3
@@ -29,7 +29,7 @@ jobs:
2929
- name: build
3030
run: cargo build --workspace ${{ matrix.flags }}
3131
- name: test
32-
if: ${{ matrix.rust != '1.66' }} # MSRV
32+
if: ${{ matrix.rust != '1.81' }} # MSRV
3333
run: cargo test --workspace ${{ matrix.flags }}
3434

3535
miri:

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Fast Merkle-Patricia Trie (MPT) state root calculator
1111
and proof generator for prefix-sorted nibbles
1212
"""
1313
edition = "2021"
14-
rust-version = "1.66"
14+
rust-version = "1.81"
1515
license = "MIT OR Apache-2.0"
1616
categories = ["data-structures", "no-std"]
1717
keywords = ["nibbles", "trie", "mpt", "merkle", "ethereum"]
@@ -20,8 +20,8 @@ repository = "https://github.com/alloy-rs/trie"
2020
exclude = [".github/", "deny.toml", "release.toml", "rustfmt.toml"]
2121

2222
[dependencies]
23-
alloy-primitives = { version = "0.7", default-features = false, features = ["rlp"] }
24-
alloy-rlp = { version = "0.3", default-features = false, features = ["derive"] }
23+
alloy-primitives = { version = "0.8.5", default-features = false, features = ["rlp"] }
24+
alloy-rlp = { version = "0.3.8", default-features = false, features = ["derive"] }
2525
derive_more = "0.99"
2626
hashbrown = { version = "0.14", features = ["ahash", "inline-more"] }
2727
nybbles = { version = "0.2", default-features = false }

0 commit comments

Comments
 (0)