Cargo.toml 564 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]
8
9
parity-codec = { version = "2.1", default-features = false }
parity-codec-derive = { version = "2.1", default-features = false }
10
wasmi = { version = "0.4.3", optional = true }
Tomasz Drwięga's avatar
Tomasz Drwięga committed
11
error-chain = { version = "0.12", optional = true }
12
13
14
15
16
17

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

[features]
default = ["std"]
18
wasm-api = []
19
std = ["parity-codec/std", "wasmi", "error-chain"]