summaryrefslogtreecommitdiffstats
path: root/glow/Cargo.toml
blob: 148f4fd5f601e0437b2b4ea0869491eec9a8a541 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "iced_glow"
version = "0.1.0"
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
edition = "2018"
description = "A glow renderer for iced"
license = "MIT AND OFL-1.1"
repository = "https://github.com/hecrj/iced"

[features]
canvas = ["iced_graphics/canvas"]
image = []
svg = []

[dependencies]
euclid = "0.20"
glow = "0.4"
bytemuck = "1.2"
glam = "0.8"
log = "0.4"
glyph_brush = "0.6"

[dependencies.iced_native]
version = "0.2"
path = "../native"

[dependencies.iced_graphics]
version = "0.1"
path = "../graphics"
features = ["font-source", "font-fallback", "font-icons", "opengl"]

[dependencies.glow_glyph]
path = "../../glow_glyph"