diff options
author | 2020-05-29 02:00:28 +0200 | |
---|---|---|
committer | 2020-05-29 02:00:28 +0200 | |
commit | 0cde20b3550ede81bc7ddef628b91eec225aa8af (patch) | |
tree | 56920437979012cceb49718f2dd4ce27d5ba5d40 /glow/Cargo.toml | |
parent | 67b6f044e870df41be92cdc79f571682b97a5d0d (diff) | |
parent | e11b5c614f5bf73c137b8b4f24f56047617527eb (diff) | |
download | iced-0cde20b3550ede81bc7ddef628b91eec225aa8af.tar.gz iced-0cde20b3550ede81bc7ddef628b91eec225aa8af.tar.bz2 iced-0cde20b3550ede81bc7ddef628b91eec225aa8af.zip |
Merge branch 'master' into improvement/update-wgpu_glyph
Diffstat (limited to 'glow/Cargo.toml')
-rw-r--r-- | glow/Cargo.toml | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/glow/Cargo.toml b/glow/Cargo.toml new file mode 100644 index 00000000..262f0264 --- /dev/null +++ b/glow/Cargo.toml @@ -0,0 +1,36 @@ +[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"] +# Not supported yet! +image = [] +svg = [] + +[dependencies] +glow = "0.4" +glow_glyph = "0.2" +glyph_brush = "0.7" +euclid = "0.20" +bytemuck = "1.2" +glam = "0.8" +log = "0.4" + +[dependencies.iced_native] +version = "0.2" +path = "../native" + +[dependencies.iced_graphics] +version = "0.1" +path = "../graphics" +features = ["font-source", "font-fallback", "font-icons", "opengl"] + +[package.metadata.docs.rs] +rustdoc-args = ["--cfg", "docsrs"] +all-features = true |