use ;
use *;
/*
fn increasing_floats(c: &mut Criterion) {
let mut data = Vec::new();
let mut f = 0.0;
for i in 0..10000 {
f += i as f64 * 0.001;
data.push(f);
}
c.bench_function("encode", |b| b.iter_with_large_drop(|| black_box(encode(&data))));
let data_ser = write(&data);
c.bench_function("decode", |b| b.iter_with_large_drop(|| black_box(decode::<Vec<f64>>(&data_ser))));
}
criterion_group!(benches, increasing_floats);
*/
use size_for_varint;
criterion_group!;
criterion_main!;