2024-09-10 09:58:18 -05:00
|
|
|
[package]
|
2024-10-21 09:24:40 -05:00
|
|
|
name = "render"
|
2024-09-10 09:58:18 -05:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
repository = "https://github.com/penpot/penpot"
|
2024-10-23 06:13:33 -05:00
|
|
|
license-file = "../LICENSE"
|
2024-09-10 09:58:18 -05:00
|
|
|
description = "Wasm-based canvas renderer for Penpot"
|
|
|
|
|
2024-10-21 09:24:40 -05:00
|
|
|
[[bin]]
|
2024-10-23 06:13:33 -05:00
|
|
|
name = "render_wasm"
|
2024-10-21 09:24:40 -05:00
|
|
|
path = "src/main.rs"
|
2024-09-10 09:58:18 -05:00
|
|
|
|
|
|
|
[dependencies]
|
2024-10-21 09:24:40 -05:00
|
|
|
gl = "0.14.0"
|
2024-12-11 04:47:43 -05:00
|
|
|
skia-safe = { version = "0.80.1", default-features = false, features = ["gl", "svg", "textlayout", "binary-cache"]}
|
2024-11-12 05:09:50 -05:00
|
|
|
uuid = { version = "1.11.0", features = ["v4"] }
|
2024-09-10 09:58:18 -05:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
opt-level = "s"
|