diff --git a/frame/ethereum/Cargo.toml b/frame/ethereum/Cargo.toml index 7b77160fd44c1..4ed4b16f37e36 100644 --- a/frame/ethereum/Cargo.toml +++ b/frame/ethereum/Cargo.toml @@ -22,7 +22,6 @@ sp-std = { version = "4.0.0", git = "https://github.com/paritytech/substrate", b frame-support = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } frame-system = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-balances = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } pallet-timestamp = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } fp-consensus = { version = "2.0.0-dev", path = "../../primitives/consensus", default-features = false } @@ -36,6 +35,7 @@ pallet-evm = { version = "6.0.0-dev", path = "../evm", default-features = false libsecp256k1 = { version = "0.7", features = ["static-context", "hmac"] } rustc-hex = { version = "2.1.0", default-features = false } sp-core = { version = "6.0.0", git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-balances = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [features] default = ["std"] diff --git a/frame/evm/Cargo.toml b/frame/evm/Cargo.toml index 7c0a0f02519bd..c2d0b933bcc54 100644 --- a/frame/evm/Cargo.toml +++ b/frame/evm/Cargo.toml @@ -31,11 +31,14 @@ sp-std = { version = "4.0.0", git = "https://github.com/paritytech/substrate", b frame-benchmarking = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } frame-support = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } frame-system = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-balances = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } pallet-timestamp = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } fp-evm = { version = "3.0.0-dev", path = "../../primitives/evm", default-features = false } +[dev-dependencies] +pallet-balances = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } + + [features] default = ["std"] std = [