Skip to content

Commit 03a0a64

Browse files
authored
Bump tree-hash dep (#68)
1 parent 2d4eb64 commit 03a0a64

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/test-suite.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Get latest version of stable Rust
3131
run: rustup update stable
3232
- name: Run tests
33-
run: cargo test --release
33+
run: cargo test --release --all-features
3434
coverage:
3535
name: cargo-tarpaulin
3636
runs-on: ubuntu-latest

Cargo.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ keywords = ["ethereum"]
1111
categories = ["cryptography::cryptocurrencies"]
1212

1313
[dependencies]
14-
tree_hash = "0.10.0"
14+
tree_hash = { version = "0.11.0", default-features = false }
1515
ethereum_serde_utils = "0.8.0"
1616
ethereum_ssz = "0.9.0"
1717
serde = "1.0.0"
@@ -26,6 +26,10 @@ criterion = "0.7.0"
2626
serde_json = "1.0.0"
2727
tree_hash_derive = "0.10.0"
2828

29+
[features]
30+
default = ["ring"]
31+
ring = ["tree_hash/ring"]
32+
2933
[[bench]]
3034
harness = false
3135
name = "encode_decode"

0 commit comments

Comments
 (0)