iced-yoda/wgpu/Cargo.toml

71 lines
1.4 KiB
TOML
Raw Normal View History

2019-10-03 00:01:45 +02:00
[package]
name = "iced_wgpu"
2023-04-13 08:31:17 +02:00
version = "0.10.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]
geometry = ["iced_graphics/geometry", "lyon"]
image = ["iced_graphics/image"]
svg = ["resvg"]
2019-10-03 00:01:45 +02:00
[dependencies]
2023-04-20 21:28:47 -04:00
wgpu = "0.16"
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"
[target.'cfg(target_arch = "wasm32")'.dependencies]
wgpu = { version = "0.16", features = ["webgl"] }
[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-05-19 17:15:44 +02:00
[dependencies.iced_graphics]
2023-04-13 08:31:17 +02:00
version = "0.8"
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"
rev = "f145067d292082abdd1f2b2481812d4a52c394ec"
[dependencies.encase]
version = "0.3.0"
features = ["glam"]
[dependencies.glam]
version = "0.21.3"
[dependencies.lyon]
version = "1.0"
optional = true
[dependencies.resvg]
2023-04-26 16:46:27 +02:00
version = "0.32"
optional = true
[dependencies.tracing]
version = "0.1.6"
optional = true
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