mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 18:37:59 +00:00
8f3317d056
* Update scale codec to latest version to fix bug in future rustc version Companion of: https://github.com/paritytech/substrate/pull/6746 * 'Update substrate' Co-authored-by: parity-processbot <>
21 lines
690 B
TOML
21 lines
690 B
TOML
[package]
|
|
name = "polkadot-core-primitives"
|
|
version = "0.7.30"
|
|
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 }
|
|
codec = { package = "parity-scale-codec", version = "1.3.4", default-features = false, features = [ "derive" ] }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = [
|
|
"sp-core/std",
|
|
"sp-runtime/std",
|
|
"sp-std/std",
|
|
"codec/std",
|
|
]
|