2020-05-19 17:15:44 +02:00
|
|
|
[package]
|
|
|
|
|
name = "iced_graphics"
|
2023-04-13 08:31:17 +02:00
|
|
|
version = "0.8.0"
|
2020-05-19 17:15:44 +02:00
|
|
|
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
|
2022-02-09 17:53:35 +07:00
|
|
|
edition = "2021"
|
2020-11-26 15:57:55 +01:00
|
|
|
description = "A bunch of backend-agnostic types that can be leveraged to build a renderer for Iced"
|
2020-11-25 23:02:21 +03:00
|
|
|
license = "MIT"
|
2022-05-02 21:53:25 +02:00
|
|
|
repository = "https://github.com/iced-rs/iced"
|
2020-11-26 15:57:55 +01:00
|
|
|
documentation = "https://docs.rs/iced_graphics"
|
|
|
|
|
keywords = ["gui", "ui", "graphics", "interface", "widgets"]
|
|
|
|
|
categories = ["gui"]
|
2020-05-19 17:15:44 +02:00
|
|
|
|
|
|
|
|
[features]
|
2023-03-03 04:57:55 +01:00
|
|
|
geometry = ["lyon_path"]
|
2020-05-21 00:37:47 +02:00
|
|
|
opengl = []
|
2023-03-07 03:47:49 +01:00
|
|
|
image = ["dep:image", "kamadak-exif"]
|
2020-05-19 17:15:44 +02:00
|
|
|
|
|
|
|
|
[dependencies]
|
2022-09-29 10:52:58 -07:00
|
|
|
glam = "0.21.3"
|
2022-10-31 13:37:56 -07:00
|
|
|
log = "0.4"
|
2022-10-07 09:03:41 -04:00
|
|
|
raw-window-handle = "0.5"
|
2020-09-08 00:35:17 +02:00
|
|
|
thiserror = "1.0"
|
2022-10-31 13:37:56 -07:00
|
|
|
bitflags = "1.2"
|
2020-05-19 17:15:44 +02:00
|
|
|
|
2020-11-10 20:11:23 +01:00
|
|
|
[dependencies.bytemuck]
|
|
|
|
|
version = "1.4"
|
|
|
|
|
features = ["derive"]
|
|
|
|
|
|
2023-03-04 05:37:11 +01:00
|
|
|
[dependencies.iced_core]
|
2023-04-17 23:41:12 +02:00
|
|
|
version = "0.9"
|
2023-03-04 05:37:11 +01:00
|
|
|
path = "../core"
|
2020-05-19 17:15:44 +02:00
|
|
|
|
2023-03-03 03:55:07 +01:00
|
|
|
[dependencies.tiny-skia]
|
2023-04-26 16:46:27 +02:00
|
|
|
version = "0.9"
|
2023-03-03 03:55:07 +01:00
|
|
|
optional = true
|
|
|
|
|
|
2023-03-07 03:47:49 +01:00
|
|
|
[dependencies.image]
|
2022-11-05 03:47:08 +01:00
|
|
|
version = "0.24"
|
2022-10-31 13:37:56 -07:00
|
|
|
optional = true
|
|
|
|
|
|
|
|
|
|
[dependencies.kamadak-exif]
|
|
|
|
|
version = "0.5"
|
|
|
|
|
optional = true
|
|
|
|
|
|
2023-03-03 04:57:55 +01:00
|
|
|
[dependencies.lyon_path]
|
|
|
|
|
version = "1"
|
|
|
|
|
optional = true
|
|
|
|
|
|
2020-05-28 01:46:17 +02:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
|
all-features = true
|