mirror of
https://github.com/hinto-janai/cuprate.git
synced 2024-12-23 20:20:01 +00:00
25 lines
No EOL
895 B
TOML
25 lines
No EOL
895 B
TOML
[package]
|
|
name = "cuprate-database-benchmark"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
description = "Benchmarking binary for Cuprate's database(s)"
|
|
license = "MIT"
|
|
authors = ["hinto-janai"]
|
|
repository = "https://github.com/Cuprate/cuprate/tree/main/database/benchmark"
|
|
keywords = ["cuprate", "database", "benchmark"]
|
|
|
|
[features]
|
|
default = []
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
cfg-if = { workspace = true }
|
|
clap = { workspace = true, features = ["default", "derive", "cargo"] }
|
|
cuprate-helper = { path = "../../helper", features = ["fs", "thread"] }
|
|
serde = { workspace = true, features = ["default", "derive"] }
|
|
serde_json = { workspace = true, features = ["default"] }
|
|
tracing = { workspace = true }
|
|
toml_edit = { workspace = true }
|
|
rayon = { workspace = true, optional = true }
|
|
|
|
[dev-dependencies] |