mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 05:51:02 +00:00
25cd67436c
* bump version and spec_version * fix generate_release_text.rb * Revert "fix generate_release_text.rb" This reverts commit 9e01e0ae4f6db2155d123f69063db7d7564588e0. * fix publish_draft_release * fix publish_draft_release * update target cache
35 lines
1.3 KiB
TOML
35 lines
1.3 KiB
TOML
[package]
|
|
name = "polkadot-parachain"
|
|
version = "0.9.1"
|
|
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.
|
|
parity-scale-codec = { version = "2.0.0", default-features = false, features = [ "derive" ] }
|
|
parity-util-mem = { version = "0.9.0", optional = true }
|
|
sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
polkadot-core-primitives = { path = "../core-primitives", default-features = false }
|
|
derive_more = "0.99.11"
|
|
|
|
# all optional crates.
|
|
serde = { version = "1.0.117", default-features = false, features = [ "derive" ], optional = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
wasm-api = []
|
|
std = [
|
|
"parity-scale-codec/std",
|
|
"serde/std",
|
|
"sp-std/std",
|
|
"sp-runtime/std",
|
|
"sp-core/std",
|
|
"parity-util-mem",
|
|
"polkadot-core-primitives/std",
|
|
]
|