Skip to content

Commit

Permalink
Fix overly restrictive semver requirements (#53)
Browse files Browse the repository at this point in the history
make bytes dep compatible with async-graphql
  • Loading branch information
Voxelot authored Dec 24, 2021
1 parent ece141a commit bb720f6
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions fuel-merkle/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fuel-merkle"
version = "0.1.0"
version = "0.1.1"
authors = ["Fuel Labs <contact@fuel.sh>"]
edition = "2018"
homepage = "https://fuel.network/"
Expand All @@ -10,14 +10,14 @@ repository = "https://github.com/FuelLabs/fuel-merkle"
description = "Fuel Merkle tree libraries."

[dependencies]
bytes = "~1.1"
digest = "~0.9.0"
fuel-storage = { version = "0.1" }
generic-array = "~0.14.4"
hex = "~0.4.3"
lazy_static = "~1.4.0"
sha2 = "~0.9.5"
thiserror = "1.0.28"
bytes = "1.0"
digest = "0.9"
fuel-storage = "0.1"
generic-array = "0.14"
hex = "0.4"
lazy_static = "1.4"
sha2 = "0.9"
thiserror = "1.0"

[dev-dependencies]
fuel-merkle-test-helpers = { path = "test-helpers" }

0 comments on commit bb720f6

Please sign in to comment.