iced-yoda/tiny_skia/Cargo.toml

43 lines
921 B
TOML
Raw Normal View History

[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>"]
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"]
[features]
image = ["iced_graphics/image"]
svg = ["resvg"]
geometry = ["iced_graphics/geometry"]
[dependencies]
raw-window-handle = "0.5"
softbuffer = "0.2"
tiny-skia = "0.10"
2023-07-07 07:12:37 +02:00
cosmic-text = "0.9"
bytemuck = "1"
2023-02-26 23:40:17 +01:00
rustc-hash = "1.1"
kurbo = "0.9"
log = "0.4"
[dependencies.iced_graphics]
2023-07-28 19:48:39 +02:00
version = "0.9"
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"]
[dependencies.resvg]
2023-07-12 09:10:58 +02:00
version = "0.35"
optional = true