2023-02-24 23:24:48 +01:00
|
|
|
[package]
|
|
|
|
|
name = "iced_renderer"
|
2023-09-04 12:58:41 +02:00
|
|
|
description = "The official renderer for iced"
|
|
|
|
|
version.workspace = true
|
|
|
|
|
edition.workspace = true
|
|
|
|
|
authors.workspace = true
|
|
|
|
|
license.workspace = true
|
|
|
|
|
repository.workspace = true
|
|
|
|
|
homepage.workspace = true
|
|
|
|
|
categories.workspace = true
|
|
|
|
|
keywords.workspace = true
|
2023-02-24 23:24:48 +01:00
|
|
|
|
2024-04-07 12:42:12 +02:00
|
|
|
[lints]
|
|
|
|
|
workspace = true
|
|
|
|
|
|
2023-02-24 23:24:48 +01:00
|
|
|
[features]
|
2025-11-21 02:02:40 +01:00
|
|
|
wgpu = ["iced_wgpu/default"]
|
|
|
|
|
wgpu-bare = ["iced_wgpu"]
|
2024-03-22 05:27:31 +01:00
|
|
|
tiny-skia = ["iced_tiny_skia"]
|
|
|
|
|
image = ["iced_tiny_skia?/image", "iced_wgpu?/image"]
|
|
|
|
|
svg = ["iced_tiny_skia?/svg", "iced_wgpu?/svg"]
|
|
|
|
|
geometry = ["iced_graphics/geometry", "iced_tiny_skia?/geometry", "iced_wgpu?/geometry"]
|
2023-05-31 21:31:58 +02:00
|
|
|
web-colors = ["iced_wgpu?/web-colors"]
|
2023-09-04 03:28:45 +02:00
|
|
|
webgl = ["iced_wgpu?/webgl"]
|
2024-02-20 03:20:58 +01:00
|
|
|
fira-sans = ["iced_graphics/fira-sans"]
|
2024-09-20 00:39:21 +02:00
|
|
|
strict-assertions = ["iced_wgpu?/strict-assertions"]
|
2025-10-13 15:28:53 -04:00
|
|
|
x11 = ["iced_tiny_skia?/x11"]
|
|
|
|
|
wayland = ["iced_tiny_skia?/wayland"]
|
2023-02-24 23:24:48 +01:00
|
|
|
|
|
|
|
|
[dependencies]
|
2023-09-04 12:58:41 +02:00
|
|
|
iced_graphics.workspace = true
|
2024-03-22 05:27:31 +01:00
|
|
|
|
2023-09-04 12:58:41 +02:00
|
|
|
iced_tiny_skia.workspace = true
|
2024-03-22 05:27:31 +01:00
|
|
|
iced_tiny_skia.optional = true
|
2023-02-24 23:24:48 +01:00
|
|
|
|
2023-09-04 12:58:41 +02:00
|
|
|
iced_wgpu.workspace = true
|
|
|
|
|
iced_wgpu.optional = true
|
2023-02-24 23:24:48 +01:00
|
|
|
|
2023-09-04 12:58:41 +02:00
|
|
|
log.workspace = true
|
|
|
|
|
thiserror.workspace = true
|