2019-10-03 00:01:45 +02:00
|
|
|
[package]
|
|
|
|
|
name = "iced_wgpu"
|
2023-01-14 00:49:58 +01:00
|
|
|
version = "0.8.0"
|
2022-07-02 20:30:28 +08:00
|
|
|
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
|
2022-02-09 17:53:35 +07:00
|
|
|
edition = "2021"
|
2019-10-03 00:01:45 +02:00
|
|
|
description = "A wgpu renderer for Iced"
|
2019-11-26 15:32:11 +01:00
|
|
|
license = "MIT AND OFL-1.1"
|
2021-12-23 09:34:37 +02:00
|
|
|
repository = "https://github.com/iced-rs/iced"
|
2019-10-03 00:01:45 +02:00
|
|
|
|
2019-12-15 06:45:20 +01:00
|
|
|
[features]
|
2022-12-20 20:41:09 -08:00
|
|
|
svg = ["iced_graphics/svg"]
|
2022-11-05 03:26:19 +01:00
|
|
|
image = ["iced_graphics/image"]
|
2022-12-20 20:41:09 -08:00
|
|
|
png = ["iced_graphics/png"]
|
2022-10-31 13:37:56 -07:00
|
|
|
jpeg = ["iced_graphics/jpeg"]
|
|
|
|
|
jpeg_rayon = ["iced_graphics/jpeg_rayon"]
|
2022-12-20 20:41:09 -08:00
|
|
|
gif = ["iced_graphics/gif"]
|
|
|
|
|
webp = ["iced_graphics/webp"]
|
2022-10-31 13:37:56 -07:00
|
|
|
pnm = ["iced_graphics/pnm"]
|
2022-12-20 20:41:09 -08:00
|
|
|
ico = ["iced_graphics/ico"]
|
|
|
|
|
bmp = ["iced_graphics/bmp"]
|
|
|
|
|
hdr = ["iced_graphics/hdr"]
|
|
|
|
|
dds = ["iced_graphics/dds"]
|
|
|
|
|
farbfeld = ["iced_graphics/farbfeld"]
|
|
|
|
|
canvas = ["iced_graphics/canvas"]
|
2022-07-02 20:30:28 +08:00
|
|
|
qr_code = ["iced_graphics/qr_code"]
|
2022-12-20 20:41:09 -08:00
|
|
|
default_system_font = ["iced_graphics/font-source"]
|
2022-07-02 20:30:28 +08:00
|
|
|
spirv = ["wgpu/spirv"]
|
|
|
|
|
webgl = ["wgpu/webgl"]
|
2019-12-15 06:45:20 +01:00
|
|
|
|
2019-10-03 00:01:45 +02:00
|
|
|
[dependencies]
|
2022-10-07 09:03:41 -04:00
|
|
|
wgpu = "0.14"
|
|
|
|
|
wgpu_glyph = "0.18"
|
2020-05-25 21:49:16 +02:00
|
|
|
glyph_brush = "0.7"
|
2022-11-01 19:18:47 +01:00
|
|
|
raw-window-handle = "0.5"
|
2019-10-07 04:05:40 +02:00
|
|
|
log = "0.4"
|
2020-11-06 01:49:37 -08:00
|
|
|
guillotiere = "0.6"
|
2020-08-27 13:03:42 +02:00
|
|
|
futures = "0.3"
|
2021-09-30 20:10:16 +02:00
|
|
|
bitflags = "1.2"
|
2020-02-11 23:14:25 +01:00
|
|
|
|
2020-11-10 20:06:24 +01:00
|
|
|
[dependencies.bytemuck]
|
2022-07-02 15:39:42 +08:00
|
|
|
version = "1.9"
|
2022-07-02 20:30:28 +08:00
|
|
|
features = ["derive"]
|
2020-11-10 20:06:24 +01:00
|
|
|
|
2020-04-02 17:08:28 +02:00
|
|
|
[dependencies.iced_native]
|
2023-01-14 00:49:58 +01:00
|
|
|
version = "0.8"
|
2020-04-02 17:08:28 +02:00
|
|
|
path = "../native"
|
|
|
|
|
|
2020-05-19 17:15:44 +02:00
|
|
|
[dependencies.iced_graphics]
|
2023-01-14 00:49:58 +01:00
|
|
|
version = "0.6"
|
2020-05-19 17:15:44 +02:00
|
|
|
path = "../graphics"
|
2022-07-02 20:30:28 +08:00
|
|
|
features = ["font-fallback", "font-icons"]
|
2020-04-02 17:08:28 +02:00
|
|
|
|
2022-12-20 20:41:09 -08:00
|
|
|
[dependencies.tracing]
|
|
|
|
|
version = "0.1.6"
|
2022-11-29 19:50:58 -08:00
|
|
|
optional = true
|
|
|
|
|
|
2022-09-29 10:52:58 -07:00
|
|
|
[dependencies.encase]
|
|
|
|
|
version = "0.3.0"
|
|
|
|
|
features = ["glam"]
|
|
|
|
|
|
|
|
|
|
[dependencies.glam]
|
|
|
|
|
version = "0.21.3"
|
|
|
|
|
|
2020-04-05 04:52:03 +02:00
|
|
|
[package.metadata.docs.rs]
|
2022-07-02 20:30:28 +08:00
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
2020-04-05 04:52:03 +02:00
|
|
|
all-features = true
|