diff --git a/crates/eip712-common-test-utils/Cargo.toml b/crates/eip712-common-test-utils/Cargo.toml index a5edb1ee8..8c15b8a60 100644 --- a/crates/eip712-common-test-utils/Cargo.toml +++ b/crates/eip712-common-test-utils/Cargo.toml @@ -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 } diff --git a/crates/humanode-peer/Cargo.toml b/crates/humanode-peer/Cargo.toml index dadd33a70..929cfb658 100644 --- a/crates/humanode-peer/Cargo.toml +++ b/crates/humanode-peer/Cargo.toml @@ -33,9 +33,9 @@ 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 } @@ -43,7 +43,7 @@ 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"] } diff --git a/crates/humanode-runtime/Cargo.toml b/crates/humanode-runtime/Cargo.toml index 0d203ae4e..22a597a5b 100644 --- a/crates/humanode-runtime/Cargo.toml +++ b/crates/humanode-runtime/Cargo.toml @@ -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 } diff --git a/crates/vesting-schedule-linear/Cargo.toml b/crates/vesting-schedule-linear/Cargo.toml index 008f71266..a4d7410e5 100644 --- a/crates/vesting-schedule-linear/Cargo.toml +++ b/crates/vesting-schedule-linear/Cargo.toml @@ -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]