2024-10-04 01:36:32 +00:00
|
|
|
[package]
|
|
|
|
name = "cuprate-benchmark"
|
|
|
|
version = "0.0.0"
|
|
|
|
edition = "2021"
|
|
|
|
description = "Cuprate's benchmarking binary"
|
|
|
|
license = "MIT"
|
|
|
|
authors = ["hinto-janai"]
|
|
|
|
repository = "https://github.com/Cuprate/cuprate/tree/main/benches/benchmark/bin"
|
|
|
|
keywords = ["cuprate", "benchmarking", "binary"]
|
|
|
|
|
|
|
|
[features]
|
2024-10-08 00:33:44 +00:00
|
|
|
# All new benchmarks should be added here!
|
|
|
|
all = ["example"]
|
|
|
|
|
|
|
|
default = []
|
2024-10-04 21:37:38 +00:00
|
|
|
json = []
|
2024-10-04 01:36:32 +00:00
|
|
|
example = ["dep:cuprate-benchmark-example"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
cuprate-benchmark-lib = { path = "../lib" }
|
|
|
|
cuprate-benchmark-example = { path = "../example", optional = true }
|
|
|
|
|
|
|
|
cfg-if = { workspace = true }
|
2024-10-04 21:37:38 +00:00
|
|
|
serde = { workspace = true, features = ["derive"] }
|
|
|
|
serde_json = { workspace = true, features = ["std"] }
|
2024-10-04 01:36:32 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|