2022-05-10 17:56:06 +10:00
|
|
|
[package]
|
|
|
|
name = "pgpu-render"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = "C interface for glyph rendering using piet-gpu."
|
|
|
|
license = "MIT/Apache-2.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
piet-gpu = { path = "../piet-gpu" }
|
|
|
|
piet-gpu-hal = { path = "../piet-gpu-hal" }
|
|
|
|
piet-scene = { path = "../piet-scene" }
|
|
|
|
|
2022-06-25 23:11:13 +10:00
|
|
|
[target.'cfg(all(not(target_arch = "wasm32"), any(target_os = "ios", target_os = "macos")))'.dependencies]
|
2022-10-20 06:54:43 +11:00
|
|
|
metal = "0.24"
|
|
|
|
objc = "0.2.7"
|
2022-05-10 17:56:06 +10:00
|
|
|
cocoa = "0.24.0"
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
cbindgen = "0.20.0"
|