mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 20:27:58 +00:00
8782dde411
* PVF: Refactor workers into separate crates, remove host dependency * Fix compile error * Remove some leftover code * Fix compile errors * Update Cargo.lock * Remove worker main.rs files I accidentally copied these from the other PR. This PR isn't intended to introduce standalone workers yet. * Address review comments * cargo fmt * Update a couple of comments * Update log targets
48 lines
1.7 KiB
TOML
48 lines
1.7 KiB
TOML
[package]
|
|
name = "polkadot-node-core-pvf"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
|
|
[[bin]]
|
|
name = "puppet_worker"
|
|
path = "bin/puppet_worker.rs"
|
|
|
|
[dependencies]
|
|
always-assert = "0.1"
|
|
futures = "0.3.21"
|
|
futures-timer = "3.0.2"
|
|
gum = { package = "tracing-gum", path = "../../gum" }
|
|
libc = "0.2.139"
|
|
pin-project = "1.0.9"
|
|
rand = "0.8.5"
|
|
slotmap = "1.0"
|
|
tempfile = "3.3.0"
|
|
tokio = { version = "1.24.2", features = ["fs", "process"] }
|
|
|
|
parity-scale-codec = { version = "3.4.0", default-features = false, features = ["derive"] }
|
|
|
|
polkadot-parachain = { path = "../../../parachain" }
|
|
polkadot-core-primitives = { path = "../../../core-primitives" }
|
|
polkadot-node-core-pvf-common = { path = "common" }
|
|
polkadot-node-core-pvf-execute-worker = { path = "execute-worker" }
|
|
polkadot-node-core-pvf-prepare-worker = { path = "prepare-worker" }
|
|
polkadot-node-metrics = { path = "../../metrics" }
|
|
polkadot-node-primitives = { path = "../../primitives" }
|
|
polkadot-primitives = { path = "../../../primitives" }
|
|
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-wasm-interface = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
[build-dependencies]
|
|
substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
[dev-dependencies]
|
|
assert_matches = "1.4.0"
|
|
hex-literal = "0.3.4"
|
|
|
|
adder = { package = "test-parachain-adder", path = "../../../parachain/test-parachains/adder" }
|
|
halt = { package = "test-parachain-halt", path = "../../../parachain/test-parachains/halt" }
|