2020-05-04 17:05:54 +02:00
|
|
|
[package]
|
|
|
|
name = "piet-gpu"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Raph Levien <raph.levien@gmail.com>"]
|
|
|
|
description = "A compute-centric GPU 2D renderer."
|
2022-07-13 12:07:55 -07:00
|
|
|
readme = "README.md"
|
2020-05-04 17:05:54 +02:00
|
|
|
license = "MIT/Apache-2.0"
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "cli"
|
|
|
|
path = "bin/cli.rs"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "winit"
|
|
|
|
path = "bin/winit.rs"
|
|
|
|
|
2021-04-03 08:14:43 -07:00
|
|
|
[[example]]
|
|
|
|
name = "android"
|
|
|
|
path = "bin/android.rs"
|
|
|
|
crate-type = ["cdylib"]
|
|
|
|
|
2020-05-04 17:05:54 +02:00
|
|
|
[dependencies.piet-gpu-hal]
|
|
|
|
path = "../piet-gpu-hal"
|
|
|
|
|
|
|
|
[dependencies.piet-gpu-types]
|
|
|
|
path = "../piet-gpu-types"
|
|
|
|
|
2022-08-11 15:29:15 -04:00
|
|
|
[dependencies.piet-scene]
|
|
|
|
path = "../piet-scene"
|
|
|
|
features = ["kurbo"]
|
|
|
|
|
2020-05-04 17:05:54 +02:00
|
|
|
[dependencies]
|
2022-09-21 17:20:34 -07:00
|
|
|
png = "0.17.6"
|
|
|
|
rand = "0.8.5"
|
2020-11-14 08:22:56 -08:00
|
|
|
roxmltree = "0.13"
|
2022-10-18 07:18:45 -07:00
|
|
|
winit = {version = "0.27.3", default-features = false, features = ["x11", "wayland", "wayland-dlopen"]}
|
2022-10-17 18:12:41 -07:00
|
|
|
raw-window-handle = "0.5"
|
2022-09-21 17:20:34 -07:00
|
|
|
clap = "3.2.22"
|
2021-11-23 07:28:50 -08:00
|
|
|
bytemuck = { version = "1.7.2", features = ["derive"] }
|
2022-08-11 15:29:15 -04:00
|
|
|
kurbo = "0.8.3"
|
2021-04-03 08:14:43 -07:00
|
|
|
|
|
|
|
[target.'cfg(target_os = "android")'.dependencies]
|
|
|
|
ndk = "0.3"
|
|
|
|
ndk-sys = "0.2.0"
|
|
|
|
ndk-glue = "0.3"
|
|
|
|
raw-window-handle = "0.3"
|
2021-10-21 18:07:46 -07:00
|
|
|
|
|
|
|
[package.metadata.android.application]
|
|
|
|
debuggable = true
|