Files
pezkuwi-subxt/polkadot/parachain/Cargo.toml
T
Bastian Köcher a33d7922f8 Rename polkadot-parachain to polkadot-parachain-primitives (#1334)
* Rename `polkadot-parachain` to `polkadot-parachain-primitives`

While doing this it also fixes some last `rustdoc` issues and fixes
another Cargo warning related to `pallet-paged-list`.

* Fix compilation

* ".git/.scripts/commands/fmt/fmt.sh"

* Fix XCM docs

---------

Co-authored-by: command-bot <>
2023-08-31 23:53:29 +02:00

44 lines
1.6 KiB
TOML

[package]
name = "polkadot-parachain-primitives"
description = "Types and utilities for creating and working with parachains"
authors.workspace = true
edition.workspace = true
license.workspace = true
version = "1.0.0"
[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 = "3.6.1", default-features = false, features = [ "derive" ] }
scale-info = { version = "2.5.0", default-features = false, features = ["derive", "serde"] }
sp-std = { path = "../../substrate/primitives/std", default-features = false }
sp-runtime = { path = "../../substrate/primitives/runtime", default-features = false, features = ["serde"] }
sp-core = { path = "../../substrate/primitives/core", default-features = false, features = ["serde"] }
frame-support = { path = "../../substrate/frame/support", default-features = false }
polkadot-core-primitives = { path = "../core-primitives", default-features = false }
derive_more = "0.99.11"
bounded-collections = { version = "0.1.8", default-features = false, features = ["serde"] }
# all optional crates.
serde = { version = "1.0.188", default-features = false, features = ["derive", "alloc"] }
[features]
default = [ "std" ]
wasm-api = []
std = [
"bounded-collections/std",
"frame-support/std",
"parity-scale-codec/std",
"polkadot-core-primitives/std",
"scale-info/std",
"serde/std",
"sp-core/std",
"sp-runtime/std",
"sp-std/std",
]
runtime-benchmarks = [
"frame-support/runtime-benchmarks",
"sp-runtime/runtime-benchmarks",
]