mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 02:57:57 +00:00
24 lines
793 B
TOML
24 lines
793 B
TOML
[package]
|
|
name = "polkadot-core-primitives"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
|
|
[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.5.0", default-features = false, features = ["derive"] }
|
|
parity-scale-codec = { version = "3.6.1", default-features = false, features = [ "derive" ] }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = [
|
|
"scale-info/std",
|
|
"sp-core/std",
|
|
"sp-runtime/std",
|
|
"sp-std/std",
|
|
"scale-info/std",
|
|
"parity-scale-codec/std",
|
|
]
|