mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-13 18:41:05 +00:00
4eabe5e0dd
follow up of https://github.com/paritytech/polkadot-sdk/pull/2604 closes https://github.com/paritytech/polkadot-sdk/pull/2604 - [x] take relevant changes from Marcin's PR - [x] extract common duplicate code for workers (low-hanging fruits) ~Some unpassed ci problems are more general and should be fixed in master (see https://github.com/paritytech/polkadot-sdk/pull/4074)~ Proposed labels: **T0-node**, **R0-silent**, **I4-refactor** ----- kusama address: FZXVQLqLbFV2otNXs6BMnNch54CFJ1idpWwjMb3Z8fTLQC6 --------- Co-authored-by: s0me0ne-unkn0wn <48632512+s0me0ne-unkn0wn@users.noreply.github.com>
51 lines
1.7 KiB
TOML
51 lines
1.7 KiB
TOML
[package]
|
|
name = "polkadot-node-core-pvf-common"
|
|
description = "Polkadot crate that contains functionality related to PVFs that is shared by the PVF host and the PVF workers."
|
|
version = "7.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
cpu-time = "1.0.0"
|
|
futures = "0.3.30"
|
|
gum = { package = "tracing-gum", path = "../../../gum" }
|
|
libc = "0.2.152"
|
|
nix = { version = "0.27.1", features = ["resource", "sched"] }
|
|
thiserror = { workspace = true }
|
|
|
|
parity-scale-codec = { version = "3.6.1", default-features = false, features = [
|
|
"derive",
|
|
] }
|
|
|
|
polkadot-parachain-primitives = { path = "../../../../parachain" }
|
|
polkadot-primitives = { path = "../../../../primitives" }
|
|
|
|
sc-executor = { path = "../../../../../substrate/client/executor" }
|
|
sc-executor-common = { path = "../../../../../substrate/client/executor/common" }
|
|
sc-executor-wasmtime = { path = "../../../../../substrate/client/executor/wasmtime" }
|
|
|
|
sp-core = { path = "../../../../../substrate/primitives/core" }
|
|
sp-crypto-hashing = { path = "../../../../../substrate/primitives/crypto/hashing" }
|
|
sp-externalities = { path = "../../../../../substrate/primitives/externalities" }
|
|
sp-io = { path = "../../../../../substrate/primitives/io" }
|
|
sp-tracing = { path = "../../../../../substrate/primitives/tracing" }
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
landlock = "0.3.0"
|
|
|
|
[target.'cfg(all(target_os = "linux", target_arch = "x86_64"))'.dependencies]
|
|
seccompiler = "0.4.0"
|
|
|
|
[dev-dependencies]
|
|
assert_matches = "1.4.0"
|
|
tempfile = "3.3.0"
|
|
|
|
[features]
|
|
# This feature is used to export test code to other crates without putting it in the production build.
|
|
test-utils = []
|
|
jemalloc-allocator = []
|