77 lines
1.6 KiB
TOML
77 lines
1.6 KiB
TOML
[package]
|
|
name = "iced_wgpu"
|
|
version = "0.9.0"
|
|
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
|
|
edition = "2021"
|
|
description = "A wgpu renderer for Iced"
|
|
license = "MIT AND OFL-1.1"
|
|
repository = "https://github.com/iced-rs/iced"
|
|
|
|
[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"]
|
|
geometry = ["iced_graphics/geometry", "lyon"]
|
|
spirv = ["wgpu/spirv"]
|
|
webgl = ["wgpu/webgl"]
|
|
|
|
[dependencies]
|
|
wgpu = "0.14"
|
|
raw-window-handle = "0.5"
|
|
log = "0.4"
|
|
guillotiere = "0.6"
|
|
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]
|
|
version = "1.9"
|
|
features = ["derive"]
|
|
|
|
[dependencies.iced_graphics]
|
|
version = "0.7"
|
|
path = "../graphics"
|
|
|
|
[dependencies.glyphon]
|
|
version = "0.2"
|
|
git = "https://github.com/hecrj/glyphon.git"
|
|
rev = "65b481d758f50fd13fc21af2cc5ef62ddee64955"
|
|
|
|
[dependencies.encase]
|
|
version = "0.3.0"
|
|
features = ["glam"]
|
|
|
|
[dependencies.glam]
|
|
version = "0.21.3"
|
|
|
|
[dependencies.lyon]
|
|
version = "1.0"
|
|
optional = true
|
|
|
|
[dependencies.tracing]
|
|
version = "0.1.6"
|
|
optional = true
|
|
|
|
[package.metadata.docs.rs]
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
all-features = true
|