-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
35 lines (28 loc) · 1.3 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "pvf-checker"
version = "0.99.0+master"
edition = "2021"
default-run = "pvf-checker"
[[bin]]
name = "pvf-checker"
path = "src/main.rs"
[[bin]]
name = "prechecker-worker"
path = "src/prepare_worker.rs"
[dependencies]
anyhow = "1.0.75"
clap = { version = "4.4.18", features = ["derive"] }
futures = "0.3.28"
subxt = "0.32.1"
tokio = { version = "1", features = ["full", "rt-multi-thread"] }
parity-scale-codec = "3.6.9" # required by subxt
polkadot-node-core-pvf = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
polkadot-node-core-pvf-common = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
polkadot-node-core-pvf-prepare-worker = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
polkadot-parachain-primitives = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
polkadot-primitives = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
sp-maybe-compressed-blob = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
# required by decl_worker_main! macro
sp-tracing = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
[build-dependencies]
substrate-build-script-utils = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }