mirror of
https://github.com/hinto-janai/cuprate.git
synced 2025-01-10 12:54:44 +00:00
29 lines
932 B
TOML
29 lines
932 B
TOML
|
[package]
|
||
|
name = "cuprate-criterion-blockchain"
|
||
|
version = "0.0.0"
|
||
|
edition = "2021"
|
||
|
description = "Criterion benchmarking for cuprate-blockchain"
|
||
|
license = "MIT"
|
||
|
authors = ["hinto-janai"]
|
||
|
repository = "https://github.com/Cuprate/cuprate/tree/main/benches/criterion/cuprate-blockchain"
|
||
|
keywords = ["cuprate", "blockchain", "criterion", "benchmark"]
|
||
|
|
||
|
[dependencies]
|
||
|
cuprate-blockchain = { path = "../../../storage/blockchain" }
|
||
|
cuprate-test-utils = { path = "../../../test-utils" }
|
||
|
cuprate-types = { path = "../../../types", default-features = false }
|
||
|
cuprate-helper = { path = "../../../helper", features = ["cast"] }
|
||
|
|
||
|
criterion = { workspace = true }
|
||
|
function_name = { workspace = true }
|
||
|
serde_json = { workspace = true, features = ["default"] }
|
||
|
tempfile = { workspace = true }
|
||
|
rand = { workspace = true }
|
||
|
|
||
|
[[bench]]
|
||
|
name = "main"
|
||
|
harness = false
|
||
|
|
||
|
[lints]
|
||
|
workspace = true
|