Cargo.toml 699 Bytes
Newer Older
1
2
3
4
5
6
7
[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]
Gavin Wood's avatar
Gavin Wood committed
8
9
parity-codec = { version = "3.5", default-features = false }
parity-codec-derive = { version = "3.3", default-features = false }
10
wasmi = { version = "0.4.3", optional = true }
11
derive_more = { version = "0.14", optional = true }
12
13
serde = { version = "1.0", default-features = false }
serde_derive = { version = "1.0", optional = true }
14
15
16
17
18
19

[dev-dependencies]
tiny-keccak = "1.4"

[features]
default = ["std"]
20
wasm-api = []
21
std = ["parity-codec/std", "wasmi", "derive_more", "serde_derive", "serde/std"]