iced-yoda/glow/Cargo.toml

38 lines
800 B
TOML
Raw Normal View History

[package]
name = "iced_glow"
2022-05-02 21:53:25 +02:00
version = "0.3.0"
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
2022-02-09 17:53:35 +07:00
edition = "2021"
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-21 00:37:47 +02:00
[features]
canvas = ["iced_graphics/canvas"]
2020-11-20 10:13:58 +01:00
qr_code = ["iced_graphics/qr_code"]
default_system_font = ["iced_graphics/font-source"]
# Not supported yet!
2020-05-21 00:37:47 +02:00
image = []
svg = []
[dependencies]
glow = "0.11.1"
glow_glyph = "0.5.0"
2020-05-27 23:09:27 +02:00
glyph_brush = "0.7"
euclid = "0.22"
bytemuck = "1.4"
log = "0.4"
[dependencies.iced_native]
2022-05-02 21:53:25 +02:00
version = "0.5"
path = "../native"
2020-05-19 17:15:44 +02:00
[dependencies.iced_graphics]
2022-05-02 21:53:25 +02:00
version = "0.3"
2020-05-19 17:15:44 +02:00
path = "../graphics"
features = ["font-fallback", "font-icons", "opengl"]
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]
all-features = true