2020-05-05 01:05:54 +10:00
|
|
|
[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"
|
|
|
|
|
2021-04-04 02:14:43 +11:00
|
|
|
[[example]]
|
|
|
|
name = "android"
|
|
|
|
path = "bin/android.rs"
|
|
|
|
crate-type = ["cdylib"]
|
|
|
|
|
2020-05-05 01:05:54 +10:00
|
|
|
[dependencies.piet-gpu-hal]
|
|
|
|
path = "../piet-gpu-hal"
|
|
|
|
|
|
|
|
[dependencies.piet-gpu-types]
|
|
|
|
path = "../piet-gpu-types"
|
|
|
|
|
|
|
|
[dependencies]
|
2020-11-15 03:22:56 +11:00
|
|
|
piet = "0.2.0"
|
2020-05-05 01:05:54 +10:00
|
|
|
png = "0.16.2"
|
|
|
|
rand = "0.7.3"
|
2020-11-15 03:22:56 +11:00
|
|
|
roxmltree = "0.13"
|
2021-11-11 07:29:40 +11:00
|
|
|
winit = "0.25"
|
2020-06-01 02:55:20 +10:00
|
|
|
clap = "2.33"
|
2021-08-19 05:04:43 +10:00
|
|
|
swash = "0.1.4"
|
2021-04-04 02:14:43 +11: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-22 12:07:46 +11:00
|
|
|
|
|
|
|
[package.metadata.android.application]
|
|
|
|
debuggable = true
|