mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 14:37:57 +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
51 lines
1.9 KiB
TOML
51 lines
1.9 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 = "2.0.0", default-features = false, features = [
|
|
"derive",
|
|
] }
|
|
scale-info = { version = "1.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" }
|
|
sp-runtime = { version = "4.0.0", default-features = false, path = "../../primitives/runtime" }
|
|
sp-tracing = { version = "4.0.0", default-features = false, path = "../../primitives/tracing" }
|
|
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
|
|
sp-io = { version = "4.0.0-dev", default-features = false, path = "../../primitives/io" }
|
|
sp-core = { version = "4.1.0-dev", default-features = false, path = "../../primitives/core" }
|
|
|
|
[dev-dependencies]
|
|
hex-literal = "0.3.4"
|
|
sp-core = { version = "4.1.0-dev", path = "../../primitives/core" }
|
|
sp-io = { version = "4.0.0-dev", path = "../../primitives/io" }
|
|
pallet-balances = { version = "4.0.0-dev", path = "../balances" }
|
|
pallet-transaction-payment = { version = "4.0.0-dev", path = "../transaction-payment" }
|
|
sp-version = { version = "4.0.0-dev", path = "../../primitives/version" }
|
|
sp-inherents = { version = "4.0.0-dev", path = "../../primitives/inherents" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
with-tracing = ["sp-tracing/with-tracing"]
|
|
std = [
|
|
"codec/std",
|
|
"scale-info/std",
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
"sp-core/std",
|
|
"sp-runtime/std",
|
|
"sp-tracing/std",
|
|
"sp-std/std",
|
|
]
|
|
try-runtime = ["frame-support/try-runtime"]
|