mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 15:47:58 +00:00
e8e2048b88
* chore: update some deps to prune duplicated deps - array-bytes: 4.1.0 => 6.1.0 - cid: 0.8.6 => 0.9.0 * fix
54 lines
2.1 KiB
TOML
54 lines
2.1 KiB
TOML
[package]
|
|
name = "frame-executive"
|
|
version = "4.0.0-dev"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
license = "Apache-2.0"
|
|
homepage = "https://substrate.io"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
description = "FRAME executives engine"
|
|
readme = "README.md"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = [
|
|
"derive",
|
|
] }
|
|
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
|
|
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
|
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
|
frame-try-runtime = { version = "0.10.0-dev", default-features = false, path = "../try-runtime", optional = true }
|
|
sp-core = { version = "21.0.0", default-features = false, path = "../../primitives/core" }
|
|
sp-io = { version = "23.0.0", default-features = false, path = "../../primitives/io" }
|
|
sp-runtime = { version = "24.0.0", default-features = false, path = "../../primitives/runtime" }
|
|
sp-std = { version = "8.0.0", default-features = false, path = "../../primitives/std" }
|
|
sp-tracing = { version = "10.0.0", default-features = false, path = "../../primitives/tracing" }
|
|
|
|
[dev-dependencies]
|
|
array-bytes = "6.1"
|
|
pallet-balances = { version = "4.0.0-dev", path = "../balances" }
|
|
pallet-transaction-payment = { version = "4.0.0-dev", path = "../transaction-payment" }
|
|
sp-core = { version = "21.0.0", path = "../../primitives/core" }
|
|
sp-inherents = { version = "4.0.0-dev", path = "../../primitives/inherents" }
|
|
sp-io = { version = "23.0.0", path = "../../primitives/io" }
|
|
sp-version = { version = "22.0.0", path = "../../primitives/version" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
with-tracing = ["sp-tracing/with-tracing"]
|
|
std = [
|
|
"codec/std",
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
"frame-try-runtime/std",
|
|
"scale-info/std",
|
|
"sp-core/std",
|
|
"sp-io/std",
|
|
"sp-runtime/std",
|
|
"sp-std/std",
|
|
"sp-tracing/std",
|
|
]
|
|
try-runtime = ["frame-support/try-runtime", "frame-try-runtime/try-runtime", "sp-runtime/try-runtime"]
|