iced-yoda/graphics/Cargo.toml

54 lines
1.1 KiB
TOML
Raw Normal View History

2020-05-19 17:15:44 +02:00
[package]
name = "iced_graphics"
2021-03-31 20:06:03 +02:00
version = "0.2.0"
2020-05-19 17:15:44 +02:00
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
edition = "2018"
description = "A bunch of backend-agnostic types that can be leveraged to build a renderer for Iced"
license = "MIT"
repository = "https://github.com/hecrj/iced"
documentation = "https://docs.rs/iced_graphics"
keywords = ["gui", "ui", "graphics", "interface", "widgets"]
categories = ["gui"]
2020-05-19 17:15:44 +02:00
[features]
canvas = ["lyon"]
2020-11-20 10:13:58 +01:00
qr_code = ["qrcode", "canvas"]
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]
glam = "0.10"
2020-05-20 20:28:35 +02:00
raw-window-handle = "0.3"
thiserror = "1.0"
2020-05-19 17:15:44 +02:00
[dependencies.bytemuck]
version = "1.4"
features = ["derive"]
2020-05-19 17:15:44 +02:00
[dependencies.iced_native]
2021-03-31 20:06:03 +02:00
version = "0.4"
2020-05-19 17:15:44 +02:00
path = "../native"
[dependencies.iced_style]
2021-03-31 20:06:03 +02:00
version = "0.3"
2020-05-19 17:15:44 +02:00
path = "../style"
[dependencies.lyon]
version = "0.17"
2020-05-19 17:15:44 +02:00
optional = true
2020-05-19 20:20:51 +02:00
2020-11-20 10:13:58 +01:00
[dependencies.qrcode]
version = "0.12"
optional = true
default-features = false
2020-11-20 10:13:58 +01:00
2020-05-19 20:20:51 +02:00
[dependencies.font-kit]
2020-12-19 01:24:46 +01:00
version = "0.10"
2020-05-19 20:20:51 +02:00
optional = true
2020-05-28 01:46:17 +02:00
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]
all-features = true