2020-05-19 17:15:44 +02:00
|
|
|
[package]
|
|
|
|
|
name = "iced_graphics"
|
2023-09-04 12:58:41 +02:00
|
|
|
description = "A bunch of backend-agnostic types that can be leveraged to build a 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
|
|
|
|
|
|
2024-04-07 12:42:12 +02:00
|
|
|
[lints]
|
|
|
|
|
workspace = true
|
|
|
|
|
|
2023-09-04 12:58:41 +02:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
|
all-features = true
|
2020-05-19 17:15:44 +02:00
|
|
|
|
|
|
|
|
[features]
|
2023-03-03 04:57:55 +01:00
|
|
|
geometry = ["lyon_path"]
|
2023-03-07 03:47:49 +01:00
|
|
|
image = ["dep:image", "kamadak-exif"]
|
2024-08-04 03:28:43 +02:00
|
|
|
svg = []
|
2023-05-31 21:31:58 +02:00
|
|
|
web-colors = []
|
2024-02-20 03:20:58 +01:00
|
|
|
fira-sans = []
|
2020-05-19 17:15:44 +02:00
|
|
|
|
|
|
|
|
[dependencies]
|
2023-09-04 12:58:41 +02:00
|
|
|
iced_core.workspace = true
|
2024-01-18 09:55:27 +01:00
|
|
|
iced_futures.workspace = true
|
2023-03-03 04:57:55 +01:00
|
|
|
|
2023-09-04 12:58:41 +02:00
|
|
|
bitflags.workspace = true
|
|
|
|
|
bytemuck.workspace = true
|
2023-09-11 02:47:24 +02:00
|
|
|
cosmic-text.workspace = true
|
2023-09-04 12:58:41 +02:00
|
|
|
half.workspace = true
|
|
|
|
|
log.workspace = true
|
|
|
|
|
raw-window-handle.workspace = true
|
2023-09-10 00:34:21 +02:00
|
|
|
rustc-hash.workspace = true
|
2023-09-11 02:47:24 +02:00
|
|
|
thiserror.workspace = true
|
2023-09-14 15:20:23 +02:00
|
|
|
unicode-segmentation.workspace = true
|
2022-10-31 13:37:56 -07:00
|
|
|
|
2023-09-04 12:58:41 +02:00
|
|
|
image.workspace = true
|
|
|
|
|
image.optional = true
|
2022-10-31 13:37:56 -07:00
|
|
|
|
2023-09-04 12:58:41 +02:00
|
|
|
kamadak-exif.workspace = true
|
|
|
|
|
kamadak-exif.optional = true
|
2023-09-10 00:34:21 +02:00
|
|
|
|
2023-09-11 02:47:24 +02:00
|
|
|
lyon_path.workspace = true
|
|
|
|
|
lyon_path.optional = true
|