mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 11:41:02 +00:00
Fix some features handling (#1045)
This commit is contained in:
@@ -39,7 +39,6 @@ std = [
|
|||||||
"sp-core/std",
|
"sp-core/std",
|
||||||
"parking_lot",
|
"parking_lot",
|
||||||
"log",
|
"log",
|
||||||
"sp-runtime-interface",
|
|
||||||
"sp-runtime-interface/std",
|
"sp-runtime-interface/std",
|
||||||
"sp-externalities",
|
"sp-externalities",
|
||||||
"sc-executor",
|
"sc-executor",
|
||||||
|
|||||||
@@ -38,23 +38,26 @@ libsecp256k1 = { version = "0.3.2", default-features = false, optional = true }
|
|||||||
hex-literal = "0.2.1"
|
hex-literal = "0.2.1"
|
||||||
keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "master" }
|
keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
babe = { package = "pallet-babe", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
babe = { package = "pallet-babe", git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
randomness-collective-flip = { package = "pallet-randomness-collective-flip", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
randomness-collective-flip = { package = "pallet-randomness-collective-flip", git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
treasury = { package = "pallet-treasury", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
treasury = { package = "pallet-treasury", git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
trie-db = "0.20.0"
|
trie-db = "0.20.0"
|
||||||
serde_json = "1.0.41"
|
serde_json = "1.0.41"
|
||||||
libsecp256k1 = "0.3.2"
|
libsecp256k1 = "0.3.2"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = []
|
default = ["std"]
|
||||||
no_std = []
|
no_std = []
|
||||||
std = [
|
std = [
|
||||||
"bitvec/std",
|
"bitvec/std",
|
||||||
"primitives/std",
|
|
||||||
"rustc-hex/std",
|
|
||||||
"codec/std",
|
"codec/std",
|
||||||
|
"log",
|
||||||
|
"rustc-hex/std",
|
||||||
|
"serde_derive",
|
||||||
|
"serde/std",
|
||||||
|
"primitives/std",
|
||||||
"inherents/std",
|
"inherents/std",
|
||||||
"sp-core/std",
|
"sp-core/std",
|
||||||
"sp-api/std",
|
"sp-api/std",
|
||||||
@@ -70,9 +73,6 @@ std = [
|
|||||||
"system/std",
|
"system/std",
|
||||||
"timestamp/std",
|
"timestamp/std",
|
||||||
"vesting/std",
|
"vesting/std",
|
||||||
"serde_derive",
|
|
||||||
"serde/std",
|
|
||||||
"log",
|
|
||||||
]
|
]
|
||||||
runtime-benchmarks = [
|
runtime-benchmarks = [
|
||||||
"libsecp256k1/hmac",
|
"libsecp256k1/hmac",
|
||||||
|
|||||||
Reference in New Issue
Block a user