Skip to content

Commit

Permalink
pallet-balances should be in dev-dependencies (paritytech#702)
Browse files Browse the repository at this point in the history
it currently only used in test and mock
  • Loading branch information
xcaptain authored Jun 2, 2022
1 parent fbd96c9 commit 8a1ceff
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frame/ethereum/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand All @@ -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"]
Expand Down
5 changes: 4 additions & 1 deletion frame/evm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down

0 comments on commit 8a1ceff

Please sign in to comment.