mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 11:07:56 +00:00
ee084279c8
Bumps [scale-info](https://github.com/paritytech/scale-info) from 2.0.0 to 2.0.1. - [Release notes](https://github.com/paritytech/scale-info/releases) - [Changelog](https://github.com/paritytech/scale-info/blob/master/CHANGELOG.md) - [Commits](https://github.com/paritytech/scale-info/commits) --- updated-dependencies: - dependency-name: scale-info dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
53 lines
2.3 KiB
TOML
53 lines
2.3 KiB
TOML
[package]
|
|
name = "node-executor"
|
|
version = "3.0.0-dev"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Substrate node implementation in Rust."
|
|
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 = "3.0.0" }
|
|
scale-info = { version = "2.0.1", features = ["derive"] }
|
|
node-primitives = { version = "2.0.0", path = "../primitives" }
|
|
node-runtime = { version = "3.0.0-dev", path = "../runtime" }
|
|
sc-executor = { version = "0.10.0-dev", path = "../../../client/executor" }
|
|
sp-core = { version = "6.0.0", path = "../../../primitives/core" }
|
|
sp-keystore = { version = "0.12.0", path = "../../../primitives/keystore" }
|
|
sp-state-machine = { version = "0.12.0", path = "../../../primitives/state-machine" }
|
|
sp-tracing = { version = "5.0.0", path = "../../../primitives/tracing" }
|
|
sp-trie = { version = "6.0.0", path = "../../../primitives/trie" }
|
|
frame-benchmarking = { version = "4.0.0-dev", path = "../../../frame/benchmarking" }
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.3.0"
|
|
frame-support = { version = "4.0.0-dev", path = "../../../frame/support" }
|
|
frame-system = { version = "4.0.0-dev", path = "../../../frame/system" }
|
|
node-testing = { version = "3.0.0-dev", path = "../testing" }
|
|
pallet-balances = { version = "4.0.0-dev", path = "../../../frame/balances" }
|
|
pallet-contracts = { version = "4.0.0-dev", path = "../../../frame/contracts" }
|
|
pallet-im-online = { version = "4.0.0-dev", path = "../../../frame/im-online" }
|
|
pallet-timestamp = { version = "4.0.0-dev", path = "../../../frame/timestamp" }
|
|
pallet-treasury = { version = "4.0.0-dev", path = "../../../frame/treasury" }
|
|
sp-application-crypto = { version = "6.0.0", path = "../../../primitives/application-crypto" }
|
|
sp-consensus-babe = { version = "0.10.0-dev", path = "../../../primitives/consensus/babe" }
|
|
sp-runtime = { version = "6.0.0", path = "../../../primitives/runtime" }
|
|
sp-externalities = { version = "0.12.0", path = "../../../primitives/externalities" }
|
|
sp-keyring = { version = "6.0.0", path = "../../../primitives/keyring" }
|
|
wat = "1.0"
|
|
futures = "0.3.19"
|
|
|
|
[features]
|
|
wasmtime = ["sc-executor/wasmtime"]
|
|
wasmi-errno = ["sc-executor/wasmi-errno"]
|
|
stress-test = []
|
|
|
|
[[bench]]
|
|
name = "bench"
|
|
harness = false
|