mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 03:31:05 +00:00
da8a5866a7
Bumps [tracing](https://github.com/tokio-rs/tracing) from 0.1.30 to 0.1.31. - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-0.1.30...tracing-0.1.31) --- updated-dependencies: - dependency-name: tracing dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
51 lines
2.1 KiB
TOML
51 lines
2.1 KiB
TOML
[package]
|
|
name = "cumulus-primitives-parachain-inherent"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
# Substrate dependencies
|
|
sp-inherents = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
sc-client-api = { git = "https://github.com/paritytech/substrate", optional = true , branch = "master" }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", optional = true , branch = "master" }
|
|
sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
sp-state-machine = { git = "https://github.com/paritytech/substrate", optional = true , branch = "master" }
|
|
sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
sp-api = { git = "https://github.com/paritytech/substrate", optional = true , branch = "master" }
|
|
sp-storage = { git = "https://github.com/paritytech/substrate", optional = true , branch = "master" }
|
|
|
|
# Cumulus dependencies
|
|
cumulus-primitives-core = { path = "../core", default-features = false }
|
|
cumulus-test-relay-sproof-builder = { path = "../../test/relay-sproof-builder", optional = true }
|
|
cumulus-relay-chain-interface = { path = "../../client/relay-chain-interface", optional = true }
|
|
|
|
# Other dependencies
|
|
async-trait = { version = "0.1.42", optional = true }
|
|
codec = { package = "parity-scale-codec", version = "2.3.0", default-features = false, features = [ "derive" ] }
|
|
scale-info = { version = "1.0.0", default-features = false, features = ["derive"] }
|
|
tracing = { version = "0.1.31", optional = true }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = [
|
|
"async-trait",
|
|
"codec/std",
|
|
"scale-info/std",
|
|
"cumulus-primitives-core/std",
|
|
"sp-inherents/std",
|
|
"sp-core/std",
|
|
"sp-trie/std",
|
|
"sp-std/std",
|
|
"sp-state-machine",
|
|
"tracing",
|
|
"sp-runtime",
|
|
"sc-client-api",
|
|
"sp-api",
|
|
"sp-storage",
|
|
"cumulus-test-relay-sproof-builder",
|
|
"cumulus-relay-chain-interface",
|
|
"cumulus-test-relay-sproof-builder"
|
|
]
|