vello/examples/headless/Cargo.toml
Bruce Mitchener c005e1b188 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`.
2023-07-03 16:41:48 +07:00

24 lines
607 B
TOML

[package]
name = "headless"
description = "An example showing how to use `vello` to create raster images"
publish = false
version.workspace = true
license.workspace = true
edition.workspace = true
repository.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = { workspace = true }
clap = { workspace = true, features = ["derive"] }
vello = { path = "../../" }
scenes = { path = "../scenes" }
wgpu = { workspace = true }
pollster = { workspace = true }
env_logger = "0.10.0"
png = "0.17.7"
futures-intrusive = "0.5.0"