mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 12:17:58 +00:00
8e95a3e1aa
Working towards migrating the `parity-bridges-common` repo inside `polkadot-sdk`. This PR upgrades some dependencies in order to align them with the versions used in `parity-bridges-common` Related to https://github.com/paritytech/parity-bridges-common/issues/2538
28 lines
812 B
TOML
28 lines
812 B
TOML
[package]
|
|
name = "polkadot-core-primitives"
|
|
version = "7.0.0"
|
|
description = "Core Polkadot types used by Relay Chains and parachains."
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
sp-core = { path = "../../substrate/primitives/core", default-features = false }
|
|
sp-std = { path = "../../substrate/primitives/std", default-features = false }
|
|
sp-runtime = { path = "../../substrate/primitives/runtime", default-features = false }
|
|
scale-info = { version = "2.11.1", default-features = false, features = ["derive"] }
|
|
parity-scale-codec = { version = "3.6.1", default-features = false, features = ["derive"] }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"parity-scale-codec/std",
|
|
"scale-info/std",
|
|
"sp-core/std",
|
|
"sp-runtime/std",
|
|
"sp-std/std",
|
|
]
|