-
Notifications
You must be signed in to change notification settings - Fork 300
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (43 loc) · 1.16 KB
/
Cargo.toml
File metadata and controls
48 lines (43 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[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"
license = "Apache-2.0"
version = "1.5.0"
authors = ["Laminar Developers <hello@laminar.one>"]
edition = "2021"
[dependencies]
parity-scale-codec = { workspace = true }
log = { workspace = true }
paste = "1.0.7"
scale-info = { workspace = true }
serde = { workspace = true, optional = true }
frame-benchmarking = { workspace = true }
frame-support = { workspace = true }
sp-api = { workspace = true }
sp-core = { workspace = true }
sp-io = { workspace = true }
sp-runtime = { workspace = true }
sp-runtime-interface = { workspace = true }
sp-std = { workspace = true }
sp-storage = { workspace = true }
[dev-dependencies]
hex-literal = "1.0.0"
frame-system = { workspace = true, features = ["std"] }
[features]
default = [ "std" ]
std = [
"frame-benchmarking/std",
"frame-support/std",
"log/std",
"parity-scale-codec/std",
"scale-info/std",
"serde",
"sp-api/std",
"sp-core/std",
"sp-io/std",
"sp-runtime-interface/std",
"sp-runtime/std",
"sp-std/std",
"sp-storage/std",
]