Skip to content

Commit

Permalink
Fix ethereum no_std compile
Browse files Browse the repository at this point in the history
  • Loading branch information
sorpaas committed Feb 23, 2021
1 parent 0f20a96 commit f11532e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ethereum"
version = "0.7.0"
version = "0.7.1"
license = "Apache-2.0"
authors = ["Wei Tang <[email protected]>"]
description = "Core block and transaction types for Ethereum."
Expand All @@ -19,7 +19,7 @@ triehash = { version = "0.8", default-features = false }
hash256-std-hasher = { version = "0.15", default-features = false }
hash-db = { version = "0.15", default-features = false }
# Work-around for https://github.com/myrrlyn/funty/issues/3
funty = "=1.1"
funty = { version = "=1.1", default-features = false }

[dev-dependencies]
rand = "0.8"
Expand All @@ -38,6 +38,7 @@ std = [
"triehash/std",
"hash256-std-hasher/std",
"hash-db/std",
"funty/std",
]

[workspace]
Expand Down

0 comments on commit f11532e

Please sign in to comment.