forked from paritytech/polkadot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (44 loc) · 2.13 KB
/
Cargo.toml
File metadata and controls
48 lines (44 loc) · 2.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[package]
name = "polkadot-parachain"
version = "0.7.22"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Types and utilities for creating and working with parachains"
edition = "2018"
[dependencies]
codec = { package = "parity-scale-codec", version = "1.1.0", default-features = false, features = [ "derive" ] }
derive_more = { version = "0.99.2", optional = true }
serde = { version = "1.0.102", default-features = false, features = [ "derive" ], optional = true }
rstd = { package = "sp-std", git = "https://github.com/mxinden/substrate", branch = "authority-discovery-prometheus-polkadot-master", default-features = false }
sp-core = { git = "https://github.com/mxinden/substrate", branch = "authority-discovery-prometheus-polkadot-master", default-features = false }
sp-runtime-interface = { git = "https://github.com/mxinden/substrate", branch = "authority-discovery-prometheus-polkadot-master", default-features = false }
sp-wasm-interface = { git = "https://github.com/mxinden/substrate", branch = "authority-discovery-prometheus-polkadot-master", default-features = false }
sp-externalities = { git = "https://github.com/mxinden/substrate", branch = "authority-discovery-prometheus-polkadot-master", optional = true }
sc-executor = { git = "https://github.com/mxinden/substrate", branch = "authority-discovery-prometheus-polkadot-master", optional = true }
sp-io = { git = "https://github.com/mxinden/substrate", branch = "authority-discovery-prometheus-polkadot-master", optional = true }
lazy_static = { version = "1.4.0", optional = true }
parking_lot = { version = "0.10.0", optional = true }
log = { version = "0.4.8", optional = true }
[target.'cfg(not(target_os = "unknown"))'.dependencies]
shared_memory = { version = "0.10.0", optional = true }
[dev-dependencies]
tiny-keccak = "1.5.0"
adder = { path = "../test-parachains/adder" }
halt = { path = "../test-parachains/halt" }
[features]
default = ["std"]
wasm-api = []
std = [
"codec/std",
"derive_more",
"serde/std",
"rstd/std",
"shared_memory",
"sp-core/std",
"lazy_static",
"parking_lot",
"log",
"sp-runtime-interface/std",
"sp-externalities",
"sc-executor",
"sp-io",
]