mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 12:51:02 +00:00
4ef53912e6
* define Id type in polkadot-parachain and depend on that in primitives. * fix tests
22 lines
699 B
TOML
22 lines
699 B
TOML
[package]
|
|
name = "polkadot-parachain"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Types and utilities for creating and working with parachains"
|
|
|
|
[dependencies]
|
|
parity-codec = { version = "3.0", default-features = false }
|
|
parity-codec-derive = { version = "3.0", default-features = false }
|
|
wasmi = { version = "0.4.3", optional = true }
|
|
error-chain = { version = "0.12", optional = true }
|
|
serde = { version = "1.0", default-features = false }
|
|
serde_derive = { version = "1.0", optional = true }
|
|
|
|
[dev-dependencies]
|
|
tiny-keccak = "1.4"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
wasm-api = []
|
|
std = ["parity-codec/std", "wasmi", "error-chain", "serde_derive", "serde/std"]
|