Skip to content
Snippets Groups Projects
Cargo.toml 1.68 KiB
Newer Older
[package]
name = "orml-benchmarking"
description = "Provide macro to benchmark Substrate runtime."
repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/benchmarking"
Xiliang Chen's avatar
Xiliang Chen committed
license = "Apache-2.0"
Bryan Chen's avatar
Bryan Chen committed
version = "0.4.1-dev"
authors = ["Laminar Developers <hello@laminar.one>"]
edition = "2018"

[dependencies]
serde = { version = "1.0.124", optional = true }
David Craven's avatar
David Craven committed
paste = "0.1.16"
wangjj9219's avatar
wangjj9219 committed
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
Shaun Wang's avatar
Shaun Wang committed
sp-api = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1", default-features = false }
sp-runtime-interface = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1", default-features = false }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1", default-features = false }
sp-std = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1", default-features = false }
sp-io = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1", default-features = false }
sp-storage = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1", default-features = false }
Shaun Wang's avatar
Shaun Wang committed
frame-support = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1", default-features = false }
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1", default-features = false }
[dev-dependencies]
Shaun Wang's avatar
Shaun Wang committed
frame-system = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1" }
hex-literal = "0.2.1"

[features]
default = [ "std" ]
std = [
	"codec/std",
	"sp-runtime-interface/std",
	"sp-runtime/std",
	"sp-api/std",
	"sp-std/std",
	"frame-support/std",
	"frame-benchmarking/std",
]