mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 05:51:02 +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>
47 lines
2.0 KiB
TOML
47 lines
2.0 KiB
TOML
[package]
|
|
name = "polkadot-parachain"
|
|
version = "0.8.0-pre"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Types and utilities for creating and working with parachains"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
# note: special care is taken to avoid inclusion of `sp-io` externals when compiling
|
|
# this crate for WASM. This is critical to avoid forcing all parachain WASM into implementing
|
|
# various unnecessary Substrate-specific endpoints.
|
|
codec = { package = "parity-scale-codec", version = "1.1.0", default-features = false, features = [ "derive" ] }
|
|
sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
sp-wasm-interface = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
|
|
# all optional crates.
|
|
derive_more = { version = "0.99.2", optional = true }
|
|
serde = { version = "1.0.102", default-features = false, features = [ "derive" ], optional = true }
|
|
sp-runtime-interface = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true, default-features = false }
|
|
sp-externalities = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
|
|
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
|
|
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
|
|
parking_lot = { version = "0.10.0", optional = true }
|
|
log = { version = "0.4.8", optional = true }
|
|
|
|
[target.'cfg(not(any(target_os = "android", target_os = "unknown")))'.dependencies]
|
|
shared_memory = { version = "0.10.0", optional = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
wasm-api = ["sp-runtime-interface"]
|
|
std = [
|
|
"codec/std",
|
|
"derive_more",
|
|
"serde/std",
|
|
"sp-std/std",
|
|
"shared_memory",
|
|
"sp-core/std",
|
|
"parking_lot",
|
|
"log",
|
|
"sp-runtime-interface/std",
|
|
"sp-externalities",
|
|
"sc-executor",
|
|
"sp-io",
|
|
]
|