52 lines
1,023 B
TOML
52 lines
1,023 B
TOML
[package]
|
|
name = "iced_wgpu"
|
|
version = "0.3.0"
|
|
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
|
|
edition = "2018"
|
|
description = "A wgpu renderer for Iced"
|
|
license = "MIT AND OFL-1.1"
|
|
repository = "https://github.com/hecrj/iced"
|
|
|
|
[features]
|
|
svg = ["resvg", "usvg"]
|
|
canvas = ["iced_graphics/canvas"]
|
|
qr_code = ["iced_graphics/qr_code"]
|
|
default_system_font = ["iced_graphics/font-source"]
|
|
|
|
[dependencies]
|
|
wgpu = "0.6"
|
|
wgpu_glyph = "0.10"
|
|
glyph_brush = "0.7"
|
|
raw-window-handle = "0.3"
|
|
log = "0.4"
|
|
guillotiere = "0.6"
|
|
futures = "0.3"
|
|
|
|
[dependencies.bytemuck]
|
|
version = "1.4"
|
|
features = ["derive"]
|
|
|
|
[dependencies.iced_native]
|
|
version = "0.3"
|
|
path = "../native"
|
|
|
|
[dependencies.iced_graphics]
|
|
version = "0.1"
|
|
path = "../graphics"
|
|
features = ["font-fallback", "font-icons"]
|
|
|
|
[dependencies.image]
|
|
version = "0.23"
|
|
optional = true
|
|
|
|
[dependencies.resvg]
|
|
version = "0.12"
|
|
optional = true
|
|
|
|
[dependencies.usvg]
|
|
version = "0.12"
|
|
optional = true
|
|
|
|
[package.metadata.docs.rs]
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
all-features = true
|