mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-03 19:17:26 +00:00
b170d9674f
* Update claim statements * Update URLs * Minor tweak to make enum agree with URL * final html multihashes * New hashes * Version * updated SAFT statement hash * Update runtimes; this relies on substrate #6131 * Bump * Share transaction filterer and fix Kusama * Warning * Gah! * Tidy * Westend fixes * Westend fix * Tweak constants * Implement TCF stuff * Fix * Warning * 15 minute lookahead * 15 minute lookahead in Polkadot * update max transactions * Enable utility, disable vested_transfer * Update runtime/common/src/lib.rs Co-authored-by: Tomasz Drwięga <tomusdrw@users.noreply.github.com> * Filter calls for validate unsigned also * Deduplicate * Fix * Introduce Polkadot (mainnet) chainspec * Fix naming. * Enable indices and fix comment. * Fix compilation * Enable indices and fix comment. * polkadot: babe: enable secondary VRF slots * Test JSON * Allow set_heads * Fix * Raw chain spec added Co-authored-by: keorn <github@i.keorn.org> Co-authored-by: NikVolf <nikvolf@gmail.com> Co-authored-by: Tomasz Drwięga <tomusdrw@users.noreply.github.com> Co-authored-by: Tomasz Drwięga <tomasz@parity.io> Co-authored-by: André Silva <andre.beat@gmail.com>
57 lines
2.1 KiB
TOML
57 lines
2.1 KiB
TOML
[package]
|
|
name = "polkadot-cli"
|
|
version = "0.8.0-pre"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Polkadot Relay-chain Client Node"
|
|
edition = "2018"
|
|
|
|
[package.metadata.wasm-pack.profile.release]
|
|
# `wasm-opt` has some problems on linux, see
|
|
# https://github.com/rustwasm/wasm-pack/issues/781 etc.
|
|
wasm-opt = false
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
log = "0.4.8"
|
|
futures = { version = "0.3.4", features = ["compat"] }
|
|
structopt = "0.3.8"
|
|
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-client-db = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
service = { package = "polkadot-service", path = "../service", default-features = false }
|
|
|
|
tokio = { version = "0.2.13", features = ["rt-threaded"], optional = true }
|
|
frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
|
|
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
|
|
sc-service = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
|
|
|
|
wasm-bindgen = { version = "0.2.57", optional = true }
|
|
wasm-bindgen-futures = { version = "0.4.7", optional = true }
|
|
browser-utils = { package = "substrate-browser-utils", git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
|
|
|
|
[build-dependencies]
|
|
substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
[features]
|
|
default = [ "wasmtime", "db", "cli" ]
|
|
wasmtime = [ "sc-cli/wasmtime" ]
|
|
db = [ "service/db" ]
|
|
cli = [
|
|
"tokio",
|
|
"sc-cli",
|
|
"sc-service",
|
|
"frame-benchmarking-cli",
|
|
"service/full-node",
|
|
]
|
|
browser = [
|
|
"wasm-bindgen",
|
|
"wasm-bindgen-futures",
|
|
"browser-utils",
|
|
]
|
|
runtime-benchmarks = ["service/runtime-benchmarks"]
|