2023-02-07 23:52:22 +11:00
|
|
|
[package]
|
|
|
|
name = "headless"
|
2023-02-09 09:48:34 +11:00
|
|
|
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
|
2023-02-07 23:52:22 +11:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-02-08 03:26:56 +11:00
|
|
|
anyhow = { workspace = true }
|
|
|
|
clap = { workspace = true, features = ["derive"] }
|
2023-02-07 23:52:22 +11:00
|
|
|
vello = { path = "../../" }
|
2023-02-08 03:26:56 +11:00
|
|
|
scenes = { path = "../scenes" }
|
|
|
|
|
|
|
|
wgpu = { workspace = true }
|
|
|
|
pollster = "0.2.5"
|
|
|
|
env_logger = "0.10.0"
|
|
|
|
png = "0.17.7"
|
2023-02-09 08:43:24 +11:00
|
|
|
futures-intrusive = "0.5.0"
|