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

[dependencies]
9
codec = { package = "parity-scale-codec", version = "1.0.5", default-features = false, features = [ "derive" ] }
10
wasmi = { version = "0.4.3", optional = true }
11
derive_more = { version = "0.14", optional = true }
12
serde = { version = "1.0", default-features = false, features = [ "derive" ] }
Gavin Wood's avatar
Gavin Wood committed
13
rstd = { package = "sr-std", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false }
14
substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false }
15
16
17
lazy_static = { version = "1.3.0", optional = true }
parking_lot = { version = "0.7.1", optional = true }
log = { version = "0.4.6", optional = true }
18

19
20
21
[target.'cfg(not(target_os = "unknown"))'.dependencies]
shared_memory = { version = "0.8", optional = true }

22
23
[dev-dependencies]
tiny-keccak = "1.4"
24
adder = { path = "../test-parachains/adder" }
25
halt = { path = "../test-parachains/halt" }
26
27
28

[features]
default = ["std"]
29
wasm-api = []
30
31
32
33
34
35
36
std = [
	"codec/std",
	"wasmi",
	"derive_more",
	"serde/std",
	"rstd/std",
	"shared_memory",
37
	"substrate-primitives/std",
38
39
40
41
	"lazy_static",
	"parking_lot",
	"log"
]