add database/benchmark/

This commit is contained in:
hinto.janai 2024-03-28 15:52:23 -04:00
parent 5e7ee57482
commit c4c01db171
No known key found for this signature in database
GPG key ID: D47CE05FA175A499
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,20 @@
[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 }
cuprate-helper = { path = "../helper", features = ["fs", "thread"] }
rayon = { workspace = true, optional = true }
[dev-dependencies]

View file

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}