mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-12 18:11:10 +00:00
1acc3fa150
* Bump transaction_version for westend * Bump transaction_version for rococo * Bump transaction_version for kusama * Bump transaction_version for polkadot * Bump spec_version to 9290 * Bump crate versions
26 lines
910 B
TOML
26 lines
910 B
TOML
[package]
|
|
name = "polkadot-core-primitives"
|
|
version = "0.9.29"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
scale-info = { version = "2.1.2", default-features = false, features = ["derive"] }
|
|
parity-scale-codec = { version = "3.1.5", default-features = false, features = [ "derive" ] }
|
|
parity-util-mem = { version = "0.11.0", default-features = false, optional = true }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = [
|
|
"scale-info/std",
|
|
"sp-core/std",
|
|
"sp-runtime/std",
|
|
"sp-std/std",
|
|
"scale-info/std",
|
|
"parity-scale-codec/std",
|
|
"parity-util-mem",
|
|
]
|