mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-17 19:31:02 +00:00
Frame System Benchmarking (#5834)
* Frame System Benchmarking * Add to substrate node, avoid divide by zero errors in analysis * reduce features * some fixes * copy pasta
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
[package]
|
||||
name = "frame-system-benchmarking"
|
||||
version = "2.0.0-dev"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
description = "FRAME System benchmarking"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false }
|
||||
sp-std = { version = "2.0.0-dev", default-features = false, path = "../../../primitives/std" }
|
||||
sp-runtime = { version = "2.0.0-dev", default-features = false, path = "../../../primitives/runtime" }
|
||||
frame-benchmarking = { version = "2.0.0-dev", default-features = false, path = "../../benchmarking" }
|
||||
frame-system = { version = "2.0.0-dev", default-features = false, path = "../../system" }
|
||||
frame-support = { version = "2.0.0-dev", default-features = false, path = "../../support" }
|
||||
sp-core = { version = "2.0.0-dev", default-features = false, path = "../../../primitives/core" }
|
||||
|
||||
[dev-dependencies]
|
||||
serde = { version = "1.0.101" }
|
||||
sp-io ={ path = "../../../primitives/io", version = "2.0.0-dev"}
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
std = [
|
||||
"codec/std",
|
||||
"sp-runtime/std",
|
||||
"sp-std/std",
|
||||
"frame-benchmarking/std",
|
||||
"frame-system/std",
|
||||
"frame-support/std",
|
||||
"sp-core/std",
|
||||
]
|
||||
Reference in New Issue
Block a user