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"
|
2020-11-26 15:57:55 +01:00
|
|
|
description = "A bunch of backend-agnostic types that can be leveraged to build a renderer for Iced"
|
2020-11-25 23:02:21 +03:00
|
|
|
license = "MIT"
|
2022-05-02 21:53:25 +02:00
|
|
|
repository = "https://github.com/iced-rs/iced"
|
2020-11-26 15:57:55 +01:00
|
|
|
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]
|
2020-11-10 20:12:15 +01:00
|
|
|
glam = "0.10"
|
2021-12-23 23:45:43 +01:00
|
|
|
raw-window-handle = "0.4"
|
2020-09-08 00:35:17 +02:00
|
|
|
thiserror = "1.0"
|
2020-05-19 17:15:44 +02:00
|
|
|
|
2020-11-10 20:11:23 +01: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]
|
2022-07-11 15:53:33 +02:00
|
|
|
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
|
2021-01-21 05:07:41 +01:00
|
|
|
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
|