mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 19:17:58 +00:00
2b9c4f82a7
* Begin adding landlock + test * Move PVF implementer's guide section to own page, document security * Implement test * Add some docs * Do some cleanup * Fix typo * Warn on host startup if landlock is not supported * Clarify docs a bit * Minor improvements * Add some docs about determinism * Address review comments (mainly add warning on landlock error) * Update node/core/pvf/src/host.rs Co-authored-by: Andrei Sandu <54316454+sandreim@users.noreply.github.com> * Update node/core/pvf/src/host.rs Co-authored-by: Andrei Sandu <54316454+sandreim@users.noreply.github.com> * Fix unused fn * Update ABI docs to reflect latest discussions * Remove outdated notes * Try to trigger new test-linux-oldkernel-stable job Job introduced in https://github.com/paritytech/polkadot/pull/7371. --------- Co-authored-by: Andrei Sandu <54316454+sandreim@users.noreply.github.com>
37 lines
1.4 KiB
TOML
37 lines
1.4 KiB
TOML
[package]
|
|
name = "polkadot-node-core-pvf-common"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.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 = { path = "../../../../parachain" }
|
|
polkadot-primitives = { path = "../../../../primitives" }
|
|
|
|
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-executor-common = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-executor-wasmtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-externalities = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
landlock = "0.2.0"
|
|
|
|
[dev-dependencies]
|
|
assert_matches = "1.4.0"
|
|
tempfile = "3.3.0"
|
|
|
|
[build-dependencies]
|
|
substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "master" }
|