fix: add pezsp-runtime feature propagation in pezkuwi-subxt-core
Add std and runtime-benchmarks feature propagation for pezsp-runtime dev-dependency to fix zepter lint check failure.
This commit is contained in:
Vendored
+36
-34
@@ -17,36 +17,38 @@ keywords = ["extrinsic", "no-std", "parity", "subxt"]
|
||||
[features]
|
||||
default = ["std"]
|
||||
std = [
|
||||
"bitvec/std",
|
||||
"blake2/std",
|
||||
"codec/std",
|
||||
"frame-decode/std",
|
||||
"frame-metadata/std",
|
||||
"hex/std",
|
||||
"impl-serde/std",
|
||||
"keccak-hash/std",
|
||||
"pezkuwi-subxt-macro/std",
|
||||
"pezkuwi-subxt-metadata/std",
|
||||
"pezkuwi-subxt-signer/std",
|
||||
"pezsp-core/std",
|
||||
"pezsp-crypto-hashing/std",
|
||||
"pezsp-keyring/std",
|
||||
"primitive-types/std",
|
||||
"scale-info/std",
|
||||
"serde/std",
|
||||
"serde_json/std",
|
||||
"tracing/std",
|
||||
"bitvec/std",
|
||||
"blake2/std",
|
||||
"codec/std",
|
||||
"frame-decode/std",
|
||||
"frame-metadata/std",
|
||||
"hex/std",
|
||||
"impl-serde/std",
|
||||
"keccak-hash/std",
|
||||
"pezkuwi-subxt-macro/std",
|
||||
"pezkuwi-subxt-metadata/std",
|
||||
"pezkuwi-subxt-signer/std",
|
||||
"pezsp-core/std",
|
||||
"pezsp-crypto-hashing/std",
|
||||
"pezsp-keyring/std",
|
||||
"primitive-types/std",
|
||||
"scale-info/std",
|
||||
"serde/std",
|
||||
"serde_json/std",
|
||||
"tracing/std",
|
||||
"pezsp-runtime/std",
|
||||
]
|
||||
serde = []
|
||||
runtime-benchmarks = [
|
||||
"pezkuwi-subxt-macro/runtime-benchmarks",
|
||||
"pezkuwi-subxt-signer/runtime-benchmarks",
|
||||
"pezsp-keyring/runtime-benchmarks",
|
||||
"pezkuwi-subxt-macro/runtime-benchmarks",
|
||||
"pezkuwi-subxt-signer/runtime-benchmarks",
|
||||
"pezsp-keyring/runtime-benchmarks",
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
]
|
||||
|
||||
[dependencies]
|
||||
codec = { package = "parity-scale-codec", workspace = true, default-features = false, features = [
|
||||
"derive",
|
||||
"derive",
|
||||
] }
|
||||
derive-where = { workspace = true }
|
||||
frame-decode = { workspace = true }
|
||||
@@ -57,22 +59,22 @@ pezkuwi-subxt-metadata = { workspace = true, default-features = false }
|
||||
pezsp-crypto-hashing = { workspace = true }
|
||||
scale-bits = { workspace = true, default-features = false }
|
||||
scale-decode = { workspace = true, default-features = false, features = [
|
||||
"derive",
|
||||
"primitive-types",
|
||||
"derive",
|
||||
"primitive-types",
|
||||
] }
|
||||
scale-encode = { workspace = true, default-features = false, features = [
|
||||
"bits",
|
||||
"derive",
|
||||
"primitive-types",
|
||||
"bits",
|
||||
"derive",
|
||||
"primitive-types",
|
||||
] }
|
||||
scale-info = { workspace = true, default-features = false, features = [
|
||||
"bit-vec",
|
||||
"bit-vec",
|
||||
] }
|
||||
scale-value = { workspace = true, default-features = false }
|
||||
serde = { workspace = true, default-features = false, features = ["derive"] }
|
||||
serde_json = { workspace = true, default-features = false, features = [
|
||||
"alloc",
|
||||
"raw_value",
|
||||
"alloc",
|
||||
"raw_value",
|
||||
] }
|
||||
thiserror = { workspace = true }
|
||||
tracing = { workspace = true, default-features = false }
|
||||
@@ -84,9 +86,9 @@ blake2 = { workspace = true }
|
||||
# Provides some deserialization, types like U256/H256 and hashing impls like twox/blake256:
|
||||
impl-serde = { workspace = true, default-features = false }
|
||||
primitive-types = { workspace = true, default-features = false, features = [
|
||||
"codec",
|
||||
"scale-info",
|
||||
"serde_no_std",
|
||||
"codec",
|
||||
"scale-info",
|
||||
"serde_no_std",
|
||||
] }
|
||||
|
||||
# AccountId20
|
||||
|
||||
Reference in New Issue
Block a user