Cargo.toml 1.32 KB
Newer Older
1
2
[package]
name = "polkadot-parachain"
3
version = "0.7.2"
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
10
11
12
codec = { package = "parity-scale-codec", version = "1.1.0", default-features = false, features = [ "derive" ] }
wasmi = { version = "0.4.5", optional = true }
derive_more = { version = "0.14.1", optional = true }
serde = { version = "1.0.102", default-features = false, features = [ "derive" ] }
13
14
rstd = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false }
15
lazy_static = { version = "1.4.0", optional = true }
16
parking_lot = { version = "0.7.1", optional = true }
17
log = { version = "0.4.8", optional = true }
18

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

22
[dev-dependencies]
23
tiny-keccak = "1.5.0"
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
	"sp-core/std",
38
39
40
41
	"lazy_static",
	"parking_lot",
	"log"
]