From c005e1b188b78344f8cd294f407b543b3eb80c62 Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Mon, 3 Jul 2023 16:41:48 +0700 Subject: [PATCH] headless: Use pollster from workspace. This prevents having 2 versions of `pollster` pulled into the workspace. The workspace provided `pollster` `0.3`, while `headless` was still using `0.2.5`. --- examples/headless/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/headless/Cargo.toml b/examples/headless/Cargo.toml index d14570b..bab506b 100644 --- a/examples/headless/Cargo.toml +++ b/examples/headless/Cargo.toml @@ -17,7 +17,7 @@ vello = { path = "../../" } scenes = { path = "../scenes" } wgpu = { workspace = true } -pollster = "0.2.5" +pollster = { workspace = true } env_logger = "0.10.0" png = "0.17.7" futures-intrusive = "0.5.0"