mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-30 15:27:57 +00:00
25cd67436c
* bump version and spec_version * fix generate_release_text.rb * Revert "fix generate_release_text.rb" This reverts commit 9e01e0ae4f6db2155d123f69063db7d7564588e0. * fix publish_draft_release * fix publish_draft_release * update target cache
23 lines
786 B
TOML
23 lines
786 B
TOML
[package]
|
|
name = "polkadot-core-primitives"
|
|
version = "0.9.1"
|
|
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 = "2.0.0", default-features = false, features = [ "derive" ] }
|
|
parity-util-mem = { version = "0.9.0", default-features = false, optional = true }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = [
|
|
"sp-core/std",
|
|
"sp-runtime/std",
|
|
"sp-std/std",
|
|
"parity-scale-codec/std",
|
|
"parity-util-mem",
|
|
]
|