17 lines
531 B
Rust
17 lines
531 B
Rust
|
|
use criterion::{criterion_group, criterion_main, Criterion};
|
||
|
|
|
||
|
|
/// Storage benchmarks for vapora-tracking
|
||
|
|
///
|
||
|
|
/// Note: These are placeholder benchmarks that can be extended with async benchmarks
|
||
|
|
/// using criterion's async support with `b.to_async()`.
|
||
|
|
fn storage_placeholder(_c: &mut Criterion) {
|
||
|
|
// Placeholder: Full async benchmarks require tokio runtime setup
|
||
|
|
// This can be extended in the future with criterion 0.5+ async support
|
||
|
|
}
|
||
|
|
|
||
|
|
criterion_group!(
|
||
|
|
benches,
|
||
|
|
storage_placeholder,
|
||
|
|
);
|
||
|
|
criterion_main!(benches);
|