mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 20:57:59 +00:00
21 lines
684 B
TOML
21 lines
684 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 }
|
|
parity-scale-codec = { version = "1.3.6", default-features = false, features = [ "derive" ] }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = [
|
|
"sp-core/std",
|
|
"sp-runtime/std",
|
|
"sp-std/std",
|
|
"parity-scale-codec/std",
|
|
]
|