2023-02-25 15:38:25 +01:00
|
|
|
[package]
|
|
|
|
|
name = "iced_tiny_skia"
|
|
|
|
|
version = "0.1.0"
|
2023-07-28 19:48:39 +02:00
|
|
|
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
|
2023-02-25 15:38:25 +01:00
|
|
|
edition = "2021"
|
2023-07-28 19:48:39 +02:00
|
|
|
description = "A software renderer for Iced"
|
|
|
|
|
license = "MIT"
|
|
|
|
|
repository = "https://github.com/iced-rs/iced"
|
|
|
|
|
documentation = "https://docs.rs/iced_tiny_skia"
|
|
|
|
|
keywords = ["gui", "ui", "graphics", "interface", "widgets"]
|
|
|
|
|
categories = ["gui"]
|
2023-02-25 15:38:25 +01:00
|
|
|
|
|
|
|
|
[features]
|
2023-03-07 05:06:26 +01:00
|
|
|
image = ["iced_graphics/image"]
|
2023-03-07 06:09:51 +01:00
|
|
|
svg = ["resvg"]
|
2023-03-03 04:57:55 +01:00
|
|
|
geometry = ["iced_graphics/geometry"]
|
2023-02-25 15:38:25 +01:00
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
raw-window-handle = "0.5"
|
|
|
|
|
softbuffer = "0.2"
|
2023-06-10 13:18:42 -07:00
|
|
|
tiny-skia = "0.10"
|
2023-07-07 07:12:37 +02:00
|
|
|
cosmic-text = "0.9"
|
2023-02-26 00:49:27 +01:00
|
|
|
bytemuck = "1"
|
2023-02-26 23:40:17 +01:00
|
|
|
rustc-hash = "1.1"
|
2023-02-27 02:58:02 +01:00
|
|
|
kurbo = "0.9"
|
2023-04-04 01:47:18 +02:00
|
|
|
log = "0.4"
|
2023-02-25 15:38:25 +01:00
|
|
|
|
|
|
|
|
[dependencies.iced_graphics]
|
2023-07-28 19:48:39 +02:00
|
|
|
version = "0.9"
|
2023-02-25 15:38:25 +01:00
|
|
|
path = "../graphics"
|
2023-02-26 23:40:17 +01:00
|
|
|
|
|
|
|
|
[dependencies.twox-hash]
|
|
|
|
|
version = "1.6"
|
|
|
|
|
default-features = false
|
|
|
|
|
|
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.twox-hash]
|
|
|
|
|
version = "1.6.1"
|
|
|
|
|
features = ["std"]
|
2023-03-07 06:09:51 +01:00
|
|
|
|
|
|
|
|
[dependencies.resvg]
|
2023-07-12 09:10:58 +02:00
|
|
|
version = "0.35"
|
2023-03-07 06:09:51 +01:00
|
|
|
optional = true
|