mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 09:57:56 +00:00
49 lines
2.1 KiB
TOML
49 lines
2.1 KiB
TOML
[package]
|
|
name = "cumulus-primitives-parachain-inherent"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
async-trait = { version = "0.1.66", optional = true }
|
|
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = [ "derive" ] }
|
|
scale-info = { version = "2.3.1", default-features = false, features = ["derive"] }
|
|
tracing = { version = "0.1.37", optional = true }
|
|
|
|
# Substrate
|
|
sc-client-api = { git = "https://github.com/paritytech/substrate", optional = true, branch = "polkadot-v0.9.40" }
|
|
sp-api = { git = "https://github.com/paritytech/substrate", optional = true, branch = "polkadot-v0.9.40" }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.40" }
|
|
sp-inherents = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.40" }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", optional = true, branch = "polkadot-v0.9.40" }
|
|
sp-state-machine = { git = "https://github.com/paritytech/substrate", optional = true, branch = "polkadot-v0.9.40" }
|
|
sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.40" }
|
|
sp-storage = { git = "https://github.com/paritytech/substrate", optional = true, branch = "polkadot-v0.9.40" }
|
|
sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.40" }
|
|
|
|
# Cumulus
|
|
cumulus-primitives-core = { path = "../core", default-features = false }
|
|
cumulus-relay-chain-interface = { path = "../../client/relay-chain-interface", optional = true }
|
|
cumulus-test-relay-sproof-builder = { path = "../../test/relay-sproof-builder", optional = true }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = [
|
|
"async-trait",
|
|
"codec/std",
|
|
"scale-info/std",
|
|
"tracing",
|
|
"sc-client-api",
|
|
"sp-api",
|
|
"sp-core/std",
|
|
"sp-inherents/std",
|
|
"sp-runtime",
|
|
"sp-state-machine",
|
|
"sp-std/std",
|
|
"sp-storage",
|
|
"sp-trie/std",
|
|
"cumulus-primitives-core/std",
|
|
"cumulus-relay-chain-interface",
|
|
"cumulus-test-relay-sproof-builder",
|
|
]
|