Rust library to generate static websites
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

refactor: rename benchmarks

+3 -3
+1 -1
benchmarks/md-benchmark/benches/build.rs
··· 13 13 } 14 14 15 15 #[divan::bench(args = [250, 500, 1000, 2000, 4000], sample_count = 3)] 16 - fn full_build(bencher: Bencher, markdown_count: u32) { 16 + fn markdown(bencher: Bencher, markdown_count: u32) { 17 17 bencher 18 18 .with_inputs(|| { 19 19 // Clear dist directory before each sample, otherwise later samples will either be very quick if we don't clean
+1 -1
benchmarks/overhead/benches/build.rs
··· 13 13 } 14 14 15 15 #[divan::bench(sample_count = 3)] 16 - fn full_build(bencher: Bencher) { 16 + fn overhead(bencher: Bencher) { 17 17 bencher 18 18 .with_inputs(|| { 19 19 // Clear dist directory before each sample, otherwise later samples will either be very quick if we don't clean
+1 -1
benchmarks/realistic-blog/benches/build.rs
··· 13 13 } 14 14 15 15 #[divan::bench(sample_count = 3)] 16 - fn full_build(bencher: Bencher) { 16 + fn realistic_blog(bencher: Bencher) { 17 17 bencher 18 18 .with_inputs(|| { 19 19 // Clear dist directory before each sample, otherwise later samples will either be very quick if we don't clean