From 46a93c1d05ed1f02eb0ca9335ff4d914372a1361 Mon Sep 17 00:00:00 2001 From: Yaroslav Bolyukin Date: Tue, 20 Jul 2021 20:53:58 +0000 Subject: [PATCH] fix: nostd build of evm-coder --- --- a/crates/evm-coder/Cargo.toml +++ b/crates/evm-coder/Cargo.toml @@ -8,7 +8,7 @@ primitive-types = { version = "0.9", default-features = false } hex-literal = "0.3" ethereum = { version = "0.7.1", default-features = false } -evm-core = { git = "https://github.com/usetech-llc/evm.git", branch="precompile-output-parachain" } +evm-core = { default-features = false, git = "https://github.com/usetech-llc/evm.git", branch="precompile-output-parachain" } impl-trait-for-tuples = "0.2.1" [dev-dependencies] @@ -16,4 +16,4 @@ [features] default = ["std"] -std = ["ethereum/std", "primitive-types/std"] \ No newline at end of file +std = ["ethereum/std", "primitive-types/std", "evm-core/std"] \ No newline at end of file -- gitstuff