Scaffold iced_tiny_skia and connect it to iced_renderer

This commit is contained in:
Héctor Ramón Jiménez 2023-02-25 15:38:25 +01:00
parent a01bc865a0
commit 8c373cd497
No known key found for this signature in database
GPG key ID: 140CC052C94F138E
10 changed files with 318 additions and 12 deletions

View file

@ -4,8 +4,8 @@ version = "0.1.0"
edition = "2021"
[features]
image = ["iced_wgpu/image"]
svg = ["iced_wgpu/svg"]
image = ["iced_wgpu/image", "iced_tiny_skia/image"]
svg = ["iced_wgpu/svg", "iced_tiny_skia/svg"]
tracing = ["iced_wgpu/tracing"]
[dependencies]
@ -19,6 +19,10 @@ path = "../native"
version = "0.7"
path = "../graphics"
[dependencies.iced_tiny_skia]
version = "0.1"
path = "../tiny_skia"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
iced_wgpu = { version = "0.9", path = "../wgpu" }