mirror of
https://github.com/italicsjenga/vello.git
synced 2025-01-09 20:31:29 +11:00
c005e1b188
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`.
24 lines
607 B
TOML
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"
|