mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-24 14:47:59 +00:00
476c3bf688
Bumps [scale-info](https://github.com/paritytech/scale-info) from 2.0.1 to 2.1.0. - [Release notes](https://github.com/paritytech/scale-info/releases) - [Changelog](https://github.com/paritytech/scale-info/blob/master/CHANGELOG.md) - [Commits](https://github.com/paritytech/scale-info/commits/v2.1.0) --- updated-dependencies: - dependency-name: scale-info dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
49 lines
2.0 KiB
TOML
49 lines
2.0 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.53", optional = true }
|
|
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = [ "derive" ] }
|
|
scale-info = { version = "2.1.0", default-features = false, features = ["derive"] }
|
|
tracing = { version = "0.1.33", optional = true }
|
|
|
|
# Substrate
|
|
sc-client-api = { git = "https://github.com/paritytech/substrate", optional = true, branch = "master" }
|
|
sp-api = { git = "https://github.com/paritytech/substrate", optional = true, branch = "master" }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
sp-inherents = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", optional = true, branch = "master" }
|
|
sp-state-machine = { git = "https://github.com/paritytech/substrate", optional = true, branch = "master" }
|
|
sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
sp-storage = { git = "https://github.com/paritytech/substrate", optional = true, branch = "master" }
|
|
sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
|
|
# 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",
|
|
]
|