Cargo.toml 790 Bytes
Newer Older
1
2
3
4
5
[package]
name = "polkadot-parachain"
version = "0.1.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Types and utilities for creating and working with parachains"
6
edition = "2018"
7
8

[dependencies]
Gavin Wood's avatar
Gavin Wood committed
9
codec = { package = "parity-codec", version = "4.1", default-features = false, features = [ "derive" ] }
10
wasmi = { version = "0.4.3", optional = true }
11
derive_more = { version = "0.14", optional = true }
12
13
14
serde = { version = "1.0", default-features = false, features = [ "derive" ] }

rstd = { package = "sr-std", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false }
15
16
17
18
19
20

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

[features]
default = ["std"]
21
wasm-api = []
22
std = [ "codec/std", "wasmi", "derive_more", "serde/std", "rstd/std" ]