Files
pezkuwi-subxt/substrate/bin/node/primitives/Cargo.toml
T
Roman Useinov 376a288fb6 [Deps] Bump scale-info to match cumulus and polkadot (#13873)
* [Deps] Bump scale-info to match cumulus and polkadot

* fix Cargo.lock

* fix identity

* more fixes

* fix

* fixes

* more fixes
2023-04-12 14:14:06 +02:00

35 lines
1.1 KiB
TOML

[package]
name = "node-primitives"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Substrate node low-level primitives."
edition = "2021"
license = "Apache-2.0"
homepage = "https://substrate.io"
repository = "https://github.com/paritytech/substrate/"
publish = false
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "3.2.2", default-features = false, features = [
"derive",
] }
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
frame-system = { version = "4.0.0-dev", default-features = false, path = "../../../frame/system" }
sp-application-crypto = { version = "7.0.0", default-features = false, path = "../../../primitives/application-crypto" }
sp-core = { version = "7.0.0", default-features = false, path = "../../../primitives/core" }
sp-runtime = { version = "7.0.0", default-features = false, path = "../../../primitives/runtime" }
[features]
default = ["std"]
std = [
"codec/std",
"frame-system/std",
"scale-info/std",
"sp-application-crypto/std",
"sp-core/std",
"sp-runtime/std",
]