iced-yoda/wgpu/Cargo.toml

79 lines
1.6 KiB
TOML
Raw Normal View History

2019-10-03 00:01:45 +02:00
[package]
name = "iced_wgpu"
2023-02-18 12:04:40 +01:00
version = "0.9.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"]
spirv = ["wgpu/spirv"]
webgl = ["wgpu/webgl"]
2019-10-03 00:01:45 +02:00
[dependencies]
wgpu = "0.14"
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"
once_cell = "1.0"
rustc-hash = "1.1"
ouroboros = "0.15"
[dependencies.twox-hash]
version = "1.6"
default-features = false
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.twox-hash]
version = "1.6.1"
features = ["std"]
[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-02-18 12:04:40 +01:00
version = "0.9"
2020-04-02 17:08:28 +02:00
path = "../native"
2020-05-19 17:15:44 +02:00
[dependencies.iced_graphics]
2023-02-18 12:04:40 +01:00
version = "0.7"
2020-05-19 17:15:44 +02:00
path = "../graphics"
2020-04-02 17:08:28 +02:00
[dependencies.glyphon]
version = "0.2"
2023-02-08 00:48:38 +01:00
git = "https://github.com/hecrj/glyphon.git"
2023-02-09 00:20:07 +01:00
rev = "65b481d758f50fd13fc21af2cc5ef62ddee64955"
[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