iced-yoda/graphics/Cargo.toml

38 lines
623 B
TOML
Raw Normal View History

2020-05-19 17:15:44 +02:00
[package]
name = "iced_graphics"
version = "0.1.0"
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
edition = "2018"
[features]
canvas = ["lyon"]
2020-05-19 20:20:51 +02:00
font-source = ["font-kit"]
2020-05-19 20:30:46 +02:00
font-fallback = []
font-icons = []
2020-05-21 00:37:47 +02:00
opengl = []
2020-05-19 17:15:44 +02:00
[dependencies]
bytemuck = "1.2"
glam = "0.8"
2020-05-20 20:28:35 +02:00
raw-window-handle = "0.3"
2020-05-19 17:15:44 +02:00
[dependencies.iced_native]
version = "0.2"
path = "../native"
[dependencies.iced_style]
version = "0.1"
path = "../style"
[dependencies.lyon]
version = "0.15"
optional = true
2020-05-19 20:20:51 +02:00
[dependencies.font-kit]
version = "0.6"
optional = true
2020-05-28 01:46:17 +02:00
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]
all-features = true