summaryrefslogtreecommitdiffstats
path: root/benches
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-05-08 20:34:31 +0200
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-05-08 20:34:31 +0200
commit7e7af91e6f7dc187e8fb95746d8811289a088217 (patch)
treeef67f9b38a32e05b14d416fcadbe763731c422ef /benches
parentfb5f1ba0bc728069b63d299e98411fad483b4177 (diff)
downloadiced-7e7af91e6f7dc187e8fb95746d8811289a088217.tar.gz
iced-7e7af91e6f7dc187e8fb95746d8811289a088217.tar.bz2
iced-7e7af91e6f7dc187e8fb95746d8811289a088217.zip
Fix `clippy` lints in `wgpu` benchmark
Diffstat (limited to 'benches')
-rw-r--r--benches/wgpu.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/benches/wgpu.rs b/benches/wgpu.rs
index 02c7b1f9..0e407253 100644
--- a/benches/wgpu.rs
+++ b/benches/wgpu.rs
@@ -15,10 +15,10 @@ criterion_group!(benches, wgpu_benchmark);
#[allow(unused_results)]
pub fn wgpu_benchmark(c: &mut Criterion) {
c.bench_function("wgpu — canvas (light)", |b| {
- benchmark(b, |_| scene(10))
+ benchmark(b, |_| scene(10));
});
c.bench_function("wgpu — canvas (heavy)", |b| {
- benchmark(b, |_| scene(1_000))
+ benchmark(b, |_| scene(1_000));
});
c.bench_function("wgpu - layered text (light)", |b| {
@@ -212,7 +212,7 @@ fn dynamic_text<'a, Message: 'a>(
n: usize,
i: usize,
) -> Element<'a, Message, Theme, Renderer> {
- const LOREM_IPSUM: &'static str = include_str!("ipsum.txt");
+ const LOREM_IPSUM: &str = include_str!("ipsum.txt");
scrollable(
text(format!(