mirror of
https://github.com/italicsjenga/vello.git
synced 2025-01-10 12:41:30 +11:00
8e2f2aeeba
Update to latest versions of all dependencies. Among other things, this gets us on piet 0.2, though almost all of the changes were around text, which is not yet implemented.
30 lines
500 B
TOML
30 lines
500 B
TOML
[package]
|
|
name = "piet-gpu"
|
|
version = "0.1.0"
|
|
authors = ["Raph Levien <raph.levien@gmail.com>"]
|
|
description = "A compute-centric GPU 2D renderer."
|
|
license = "MIT/Apache-2.0"
|
|
edition = "2018"
|
|
|
|
[[bin]]
|
|
name = "cli"
|
|
path = "bin/cli.rs"
|
|
|
|
[[bin]]
|
|
name = "winit"
|
|
path = "bin/winit.rs"
|
|
|
|
[dependencies.piet-gpu-hal]
|
|
path = "../piet-gpu-hal"
|
|
|
|
[dependencies.piet-gpu-types]
|
|
path = "../piet-gpu-types"
|
|
|
|
[dependencies]
|
|
piet = "0.2.0"
|
|
png = "0.16.2"
|
|
rand = "0.7.3"
|
|
roxmltree = "0.13"
|
|
winit = "0.23"
|
|
clap = "2.33"
|