mirror of
https://github.com/penpot/penpot.git
synced 2026-05-12 11:34:02 +00:00
23 lines
412 B
TOML
23 lines
412 B
TOML
[package]
|
|
name = "render"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
repository = "https://github.com/penpot/penpot"
|
|
license-file = "../../../../LICENSE"
|
|
description = "Wasm-based canvas render for Penpot"
|
|
|
|
[features]
|
|
default = ["skia-safe/gl", "skia-safe/textlayout"]
|
|
|
|
[[bin]]
|
|
name = "render_v2"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
gl = "0.14.0"
|
|
skia-safe = "0.78.2"
|
|
base64 = "0.13"
|
|
|
|
[profile.release]
|
|
opt-level = "s"
|