mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-29 03:17:56 +00:00
a33d7922f8
* Rename `polkadot-parachain` to `polkadot-parachain-primitives` While doing this it also fixes some last `rustdoc` issues and fixes another Cargo warning related to `pallet-paged-list`. * Fix compilation * ".git/.scripts/commands/fmt/fmt.sh" * Fix XCM docs --------- Co-authored-by: command-bot <>
42 lines
1.5 KiB
TOML
42 lines
1.5 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 = "1.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
cpu-time = "1.0.0"
|
|
futures = "0.3.21"
|
|
gum = { package = "tracing-gum", path = "../../../gum" }
|
|
libc = "0.2.139"
|
|
tokio = { version = "1.24.2", features = ["fs", "process", "io-util"] }
|
|
|
|
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-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.2.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.
|
|
# Also used for building the puppet worker.
|
|
test-utils = []
|
|
jemalloc-allocator = []
|