mirror of
https://github.com/hinto-janai/cuprate.git
synced 2024-12-23 03:59:37 +00:00
add database/benchmark/
This commit is contained in:
parent
5e7ee57482
commit
c4c01db171
2 changed files with 23 additions and 0 deletions
20
database/benchmark/Cargo.toml
Normal file
20
database/benchmark/Cargo.toml
Normal 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]
|
3
database/benchmark/src/main.rs
Normal file
3
database/benchmark/src/main.rs
Normal file
|
@ -0,0 +1,3 @@
|
|||
fn main() {
|
||||
println!("Hello, world!");
|
||||
}
|
Loading…
Reference in a new issue