2023-02-24 23:24:48 +01:00
|
|
|
[package]
|
|
|
|
|
name = "iced_renderer"
|
|
|
|
|
version = "0.1.0"
|
2023-07-28 19:48:39 +02:00
|
|
|
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
|
2023-02-24 23:24:48 +01:00
|
|
|
edition = "2021"
|
2023-07-28 19:48:39 +02:00
|
|
|
description = "The official renderer for Iced"
|
|
|
|
|
license = "MIT"
|
|
|
|
|
repository = "https://github.com/iced-rs/iced"
|
|
|
|
|
documentation = "https://docs.rs/iced_renderer"
|
|
|
|
|
keywords = ["gui", "ui", "graphics", "interface", "widgets"]
|
|
|
|
|
categories = ["gui"]
|
2023-02-24 23:24:48 +01:00
|
|
|
|
|
|
|
|
[features]
|
2023-03-06 22:10:13 +01:00
|
|
|
wgpu = ["iced_wgpu"]
|
2023-05-10 22:21:31 +02:00
|
|
|
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"]
|
|
|
|
|
tracing = ["iced_wgpu?/tracing"]
|
2023-05-31 21:31:58 +02:00
|
|
|
web-colors = ["iced_wgpu?/web-colors"]
|
2023-02-24 23:24:48 +01:00
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
raw-window-handle = "0.5"
|
2023-03-01 21:34:26 +01:00
|
|
|
thiserror = "1"
|
2023-06-29 07:48:03 +02:00
|
|
|
log = "0.4"
|
2023-02-24 23:24:48 +01:00
|
|
|
|
|
|
|
|
[dependencies.iced_graphics]
|
2023-07-28 19:48:39 +02:00
|
|
|
version = "0.9"
|
2023-02-24 23:24:48 +01:00
|
|
|
path = "../graphics"
|
|
|
|
|
|
2023-02-25 15:38:25 +01:00
|
|
|
[dependencies.iced_tiny_skia]
|
|
|
|
|
version = "0.1"
|
|
|
|
|
path = "../tiny_skia"
|
2023-05-10 22:21:31 +02:00
|
|
|
|
|
|
|
|
[dependencies.iced_wgpu]
|
2023-07-28 19:48:39 +02:00
|
|
|
version = "0.11"
|
2023-05-10 22:21:31 +02:00
|
|
|
path = "../wgpu"
|
2023-03-06 22:10:13 +01:00
|
|
|
optional = true
|