mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 05:17:58 +00:00
edf73199ab
* Bump versions of sp-core and dependencies to v4.0.0 * Update references from `4.0.0-dev` –> `4.0.0` * Funny whitespace * Funny whitespace 2 * Prepare `sp-runtime` for publication
33 lines
1.1 KiB
TOML
33 lines
1.1 KiB
TOML
[package]
|
|
name = "node-primitives"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
license = "Apache-2.0"
|
|
homepage = "https://substrate.io"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = [
|
|
"derive",
|
|
] }
|
|
scale-info = { version = "1.0", default-features = false, features = ["derive"] }
|
|
frame-system = { version = "4.0.0-dev", default-features = false, path = "../../../frame/system" }
|
|
sp-application-crypto = { version = "4.0.0", default-features = false, path = "../../../primitives/application-crypto" }
|
|
sp-core = { version = "4.1.0-dev", default-features = false, path = "../../../primitives/core" }
|
|
sp-runtime = { version = "4.0.0", default-features = false, path = "../../../primitives/runtime" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"codec/std",
|
|
"scale-info/std",
|
|
"frame-system/std",
|
|
"sp-application-crypto/std",
|
|
"sp-core/std",
|
|
"sp-runtime/std",
|
|
]
|