2020-05-19 14:23:28 +02:00
|
|
|
[package]
|
|
|
|
|
name = "iced_glow"
|
2023-01-14 00:49:58 +01:00
|
|
|
version = "0.6.0"
|
2020-05-19 14:23:28 +02:00
|
|
|
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
|
2022-02-09 17:53:35 +07:00
|
|
|
edition = "2021"
|
2020-05-19 14:23:28 +02:00
|
|
|
description = "A glow renderer for iced"
|
|
|
|
|
license = "MIT AND OFL-1.1"
|
2022-05-02 21:53:25 +02:00
|
|
|
repository = "https://github.com/iced-rs/iced"
|
2020-05-19 14:23:28 +02:00
|
|
|
|
2020-05-21 00:37:47 +02:00
|
|
|
[features]
|
2022-10-24 17:06:02 -07:00
|
|
|
svg = ["iced_graphics/svg"]
|
2022-11-05 03:26:19 +01:00
|
|
|
image = ["iced_graphics/image"]
|
2022-10-24 17:06:02 -07:00
|
|
|
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"]
|
2020-05-21 00:37:47 +02:00
|
|
|
canvas = ["iced_graphics/canvas"]
|
2020-11-20 10:13:58 +01:00
|
|
|
qr_code = ["iced_graphics/qr_code"]
|
2020-05-30 19:23:16 +12:00
|
|
|
default_system_font = ["iced_graphics/font-source"]
|
2020-05-21 00:37:47 +02:00
|
|
|
|
2020-05-19 14:23:28 +02:00
|
|
|
[dependencies]
|
2021-11-01 18:37:11 -03:00
|
|
|
glow = "0.11.1"
|
|
|
|
|
glow_glyph = "0.5.0"
|
2020-05-27 23:09:27 +02:00
|
|
|
glyph_brush = "0.7"
|
2020-11-10 19:15:07 +01:00
|
|
|
euclid = "0.22"
|
2020-11-10 19:52:43 +01:00
|
|
|
bytemuck = "1.4"
|
2020-05-19 14:23:28 +02:00
|
|
|
log = "0.4"
|
|
|
|
|
|
|
|
|
|
[dependencies.iced_native]
|
2023-01-14 00:49:58 +01:00
|
|
|
version = "0.8"
|
2020-05-19 14:23: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"
|
2020-05-30 19:23:16 +12:00
|
|
|
features = ["font-fallback", "font-icons", "opengl"]
|
2020-05-28 04:03:51 +02:00
|
|
|
|
2022-12-20 20:41:09 -08:00
|
|
|
[dependencies.tracing]
|
|
|
|
|
version = "0.1.6"
|
2022-11-29 19:50:58 -08:00
|
|
|
optional = true
|
|
|
|
|
|
2020-05-28 04:03:51 +02:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
|
all-features = true
|