iced-yoda/wgpu/Cargo.toml

67 lines
1.4 KiB
TOML
Raw Normal View History

2019-10-03 00:01:45 +02:00
[package]
name = "iced_wgpu"
2023-01-14 00:49:58 +01:00
version = "0.8.0"
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"
license = "MIT AND OFL-1.1"
repository = "https://github.com/iced-rs/iced"
2019-10-03 00:01:45 +02:00
[features]
svg = ["iced_graphics/svg"]
image = ["iced_graphics/image"]
png = ["iced_graphics/png"]
jpeg = ["iced_graphics/jpeg"]
jpeg_rayon = ["iced_graphics/jpeg_rayon"]
gif = ["iced_graphics/gif"]
webp = ["iced_graphics/webp"]
pnm = ["iced_graphics/pnm"]
ico = ["iced_graphics/ico"]
bmp = ["iced_graphics/bmp"]
hdr = ["iced_graphics/hdr"]
dds = ["iced_graphics/dds"]
farbfeld = ["iced_graphics/farbfeld"]
canvas = ["iced_graphics/canvas"]
qr_code = ["iced_graphics/qr_code"]
default_system_font = ["iced_graphics/font-source"]
spirv = ["wgpu/spirv"]
webgl = ["wgpu/webgl"]
2019-10-03 00:01:45 +02:00
[dependencies]
wgpu = "0.14"
wgpu_glyph = "0.18"
2020-05-25 21:49:16 +02:00
glyph_brush = "0.7"
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"
bitflags = "1.2"
[dependencies.bytemuck]
2022-07-02 15:39:42 +08:00
version = "1.9"
features = ["derive"]
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"
features = ["font-fallback", "font-icons"]
2020-04-02 17:08:28 +02:00
[dependencies.tracing]
version = "0.1.6"
2022-11-29 19:50:58 -08:00
optional = true
[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]
rustdoc-args = ["--cfg", "docsrs"]
2020-04-05 04:52:03 +02:00
all-features = true