mirror of
https://github.com/hinto-janai/cuprate.git
synced 2024-12-23 12:09:57 +00:00
24 lines
No EOL
754 B
TOML
24 lines
No EOL
754 B
TOML
[package]
|
|
name = "cuprate-database-benchmark"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
description = "Benchmarking for Cuprate's database abstraction"
|
|
license = "MIT"
|
|
authors = ["hinto-janai"]
|
|
repository = "https://github.com/Cuprate/cuprate/tree/main/database/benchmark"
|
|
keywords = ["cuprate", "database", "benchmark"]
|
|
|
|
[features]
|
|
default = []
|
|
|
|
[dependencies]
|
|
criterion = { workspace = true }
|
|
cuprate-database = { path = "../", features = ["default"] }
|
|
cuprate-helper = { path = "../../helper", features = ["fs", "thread"] }
|
|
# cuprate-types = { path = "../../types", features = ["service"] }
|
|
function_name = { version = "0.3.0" }
|
|
tempfile = { version = "3.10.0" }
|
|
|
|
[[bench]]
|
|
name = "main"
|
|
harness = false |