summaryrefslogtreecommitdiffstats
path: root/renderer/Cargo.toml
blob: 629c11bae40ca071b5d5195e78a762469ff441ee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "iced_renderer"
version = "0.1.0"
edition = "2021"

[features]
wgpu = ["iced_wgpu"]
tiny-skia = ["iced_tiny_skia"]
image = ["iced_wgpu/image", "iced_tiny_skia/image"]
svg = ["iced_wgpu/svg", "iced_tiny_skia/svg"]
geometry = ["iced_graphics/geometry", "iced_wgpu?/geometry", "iced_tiny_skia?/geometry"]
tracing = ["iced_wgpu/tracing"]

[dependencies]
raw-window-handle = "0.5"
thiserror = "1"

[dependencies.iced_graphics]
version = "0.7"
path = "../graphics"

[dependencies.iced_wgpu]
version = "0.9"
path = "../wgpu"
optional = true

[dependencies.iced_tiny_skia]
version = "0.1"
path = "../tiny_skia"
optional = true