Files
turso/core/mvcc/database/Cargo.toml
Piotr Sarna bfe3bcef71 asyncify
In order to prepare for #3, the APIs are made asynchronous.
It also applies to tests and benches.
2023-04-14 15:08:51 +02:00

24 lines
519 B
TOML

[package]
name = "mvcc-rs"
version = "0.0.0"
edition = "2021"
[dependencies]
anyhow = "1.0.70"
futures = "0.3.28"
parking_lot = "0.12.1"
thiserror = "1.0.40"
tracing = "0.1.37"
[dev-dependencies]
criterion = { version = "0.4", features = ["html_reports", "async", "async_futures"] }
pprof = { version = "0.11.1", features = ["criterion", "flamegraph"] }
shuttle = "0.6.0"
tokio = { version = "1.27.0", features = ["full"] }
tracing-subscriber = "0"
tracing-test = "0"
[[bench]]
name = "my_benchmark"
harness = false