Cargo.toml 1.18 KB
Newer Older
1
2
[package]
name = "polkadot-parachain"
Gavin Wood's avatar
Gavin Wood committed
3
version = "0.6.0"
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
15
16
lazy_static = { version = "1.3.0", optional = true }
parking_lot = { version = "0.7.1", optional = true }
log = { version = "0.4.6", optional = true }
17

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

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

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