--- a/crates/evm-coder/Cargo.toml +++ b/crates/evm-coder/Cargo.toml @@ -14,7 +14,7 @@ sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" } frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" } # Error types for execution -evm-core = { default-features = false , git = "https://github.com/uniquenetwork/evm", branch = "unique-polkadot-v0.9.30" } +evm-core = { default-features = false, git = "https://github.com/uniquenetwork/evm", branch = "unique-polkadot-v0.9.30" } # We have tuple-heavy code in solidity.rs impl-trait-for-tuples = "0.2.2" @@ -27,4 +27,9 @@ [features] default = ["std"] -std = ["ethereum/std", "primitive-types/std", "evm-core/std", "frame-support/std"] +std = [ + "ethereum/std", + "primitive-types/std", + "evm-core/std", + "frame-support/std", +]