2019-10-03 00:01:45 +02:00
|
|
|
[package]
|
|
|
|
|
name = "iced_wgpu"
|
2023-09-04 12:58:41 +02:00
|
|
|
description = "A renderer for iced on top of wgpu"
|
|
|
|
|
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
|
2019-10-03 00:01:45 +02:00
|
|
|
|
2019-12-15 06:45:20 +01:00
|
|
|
[features]
|
2023-03-03 04:57:55 +01:00
|
|
|
geometry = ["iced_graphics/geometry", "lyon"]
|
2023-03-07 03:47:49 +01:00
|
|
|
image = ["iced_graphics/image"]
|
2024-08-04 03:28:43 +02:00
|
|
|
svg = ["iced_graphics/svg", "resvg/text"]
|
2023-05-31 21:31:58 +02:00
|
|
|
web-colors = ["iced_graphics/web-colors"]
|
2023-09-04 03:28:45 +02:00
|
|
|
webgl = ["wgpu/webgl"]
|
2024-09-20 00:39:21 +02:00
|
|
|
strict-assertions = []
|
2019-12-15 06:45:20 +01:00
|
|
|
|
2019-10-03 00:01:45 +02:00
|
|
|
[dependencies]
|
2023-09-04 12:58:41 +02:00
|
|
|
iced_graphics.workspace = true
|
|
|
|
|
|
|
|
|
|
bitflags.workspace = true
|
|
|
|
|
bytemuck.workspace = true
|
|
|
|
|
futures.workspace = true
|
|
|
|
|
glam.workspace = true
|
|
|
|
|
glyphon.workspace = true
|
|
|
|
|
guillotiere.workspace = true
|
|
|
|
|
log.workspace = true
|
|
|
|
|
once_cell.workspace = true
|
2024-04-01 11:59:46 +02:00
|
|
|
rustc-hash.workspace = true
|
2024-03-24 08:04:28 +01:00
|
|
|
thiserror.workspace = true
|
2023-09-04 12:58:41 +02:00
|
|
|
wgpu.workspace = true
|
|
|
|
|
|
|
|
|
|
lyon.workspace = true
|
|
|
|
|
lyon.optional = true
|
|
|
|
|
|
|
|
|
|
resvg.workspace = true
|
|
|
|
|
resvg.optional = true
|