mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 05:51:02 +00:00
49 lines
1.9 KiB
TOML
49 lines
1.9 KiB
TOML
[package]
|
|
name = "polkadot-parachain"
|
|
version = "0.7.28"
|
|
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.3.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 }
|
|
sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
sp-runtime-interface = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
sp-wasm-interface = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
sp-externalities = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
|
|
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
|
|
sp-io = { git = "https://github.com/paritytech/substrate", branch = "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",
|
|
"sp-std/std",
|
|
"shared_memory",
|
|
"sp-core/std",
|
|
"lazy_static",
|
|
"parking_lot",
|
|
"log",
|
|
"sp-runtime-interface/std",
|
|
"sp-externalities",
|
|
"sc-executor",
|
|
"sp-io",
|
|
]
|