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"
2022-07-01 04:02:38 +02:00
version = "0.3.1"
2020-05-19 17:15:44 +02:00
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
2022-02-09 17:53:35 +07:00
edition = "2021"
description = "A bunch of backend-agnostic types that can be leveraged to build a renderer for Iced"
license = "MIT"
2022-05-02 21:53:25 +02:00
repository = "https://github.com/iced-rs/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"
2021-12-23 23:45:43 +01:00
raw-window-handle = "0.4"
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]
2022-05-02 21:53:25 +02:00
version = "0.5"
2020-05-19 17:15:44 +02:00
path = "../native"
[dependencies.iced_style]
2022-05-02 21:53:25 +02:00
version = "0.4"
2020-05-19 17:15:44 +02:00
path = "../style"
[dependencies.lyon]
version = "1.0"
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