Skip to content

Commit

Permalink
Return default features to avoid having different features snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitrylavrenov committed Aug 21, 2023
1 parent 2218e9e commit a4c46ec
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion crates/eip712-common-test-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ primitives-ethereum = { path = "../primitives-ethereum" }

ethers-core = { workspace = true, features = ["eip712"] }
hex-literal = { workspace = true }
secp256k1 = { workspace = true }
secp256k1 = { workspace = true, features = ["default"] }
serde_json = { workspace = true }
sp-core = { workspace = true }
6 changes: 3 additions & 3 deletions crates/humanode-peer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,17 +33,17 @@ fc-rpc = { workspace = true }
fc-rpc-core = { workspace = true }
fc-storage = { workspace = true }
fdlimit = { workspace = true }
fp-evm = { workspace = true }
fp-evm = { workspace = true, features = ["default"] }
frame-benchmarking = { workspace = true, optional = true }
frame-benchmarking-cli = { workspace = true }
frame-benchmarking-cli = { workspace = true, features = ["default", "rocksdb"] }
frame-support = { workspace = true }
frame-system = { workspace = true }
frame-system-rpc-runtime-api = { workspace = true }
futures = { workspace = true }
hex = { workspace = true }
hex-literal = { workspace = true }
pallet-balances = { workspace = true }
pallet-im-online = { workspace = true }
pallet-im-online = { workspace = true, features = ["default"] }
pallet-transaction-payment = { workspace = true }
qr2term = { workspace = true }
reqwest = { workspace = true, features = ["default"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/humanode-runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ static_assertions = { workspace = true }
crypto-utils = { path = "../crypto-utils" }
eip712-common-test-utils = { path = "../eip712-common-test-utils" }

ethereum = { workspace = true }
ethereum = { workspace = true, features = ["default"] }
hex = { workspace = true }
serde_json = { workspace = true }
sp-io = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/vesting-schedule-linear/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ scale-info = { workspace = true, features = ["derive"] }
serde = { workspace = true, features = ["derive"], optional = true }

[dev-dependencies]
num = { workspace = true }
num = { workspace = true, features = ["default"] }
serde_json = { workspace = true }

[features]
Expand Down

0 comments on commit a4c46ec

Please sign in to comment.