cuprate-hinto-janai/database/benchmark/Cargo.toml

24 lines
754 B
TOML
Raw Normal View History

2024-03-28 19:52:23 +00:00
[package]
name = "cuprate-database-benchmark"
version = "0.0.0"
edition = "2021"
2024-04-16 20:53:24 +00:00
description = "Benchmarking for Cuprate's database abstraction"
2024-03-28 19:52:23 +00:00
license = "MIT"
authors = ["hinto-janai"]
repository = "https://github.com/Cuprate/cuprate/tree/main/database/benchmark"
keywords = ["cuprate", "database", "benchmark"]
[features]
default = []
[dependencies]
2024-04-16 20:53:24 +00:00
criterion = { workspace = true }
cuprate-database = { path = "../", features = ["default"] }
2024-03-30 00:20:57 +00:00
cuprate-helper = { path = "../../helper", features = ["fs", "thread"] }
2024-04-16 20:53:24 +00:00
# cuprate-types = { path = "../../types", features = ["service"] }
2024-04-16 21:39:53 +00:00
function_name = { version = "0.3.0" }
2024-04-16 20:53:24 +00:00
tempfile = { version = "3.10.0" }
2024-03-28 19:52:23 +00:00
2024-04-16 20:53:24 +00:00
[[bench]]
2024-04-16 21:13:04 +00:00
name = "main"
2024-04-16 20:53:24 +00:00
harness = false