mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 01:07:57 +00:00
72eab56e88
* bump version and spec_version * bump transaction version * Bump of the default value in CI * bump tx version for westend and kusama Co-authored-by: Wilfried Kopp <wilfried@parity.io>
26 lines
908 B
TOML
26 lines
908 B
TOML
[package]
|
|
name = "polkadot-core-primitives"
|
|
version = "0.9.11"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[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 = "1.0", default-features = false, features = ["derive"] }
|
|
parity-scale-codec = { version = "2.3.1", default-features = false, features = [ "derive" ] }
|
|
parity-util-mem = { version = "0.10.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",
|
|
]
|