2023-02-25 15:38:25 +01:00
|
|
|
[package]
|
|
|
|
|
name = "iced_tiny_skia"
|
2023-09-04 12:58:41 +02:00
|
|
|
description = "A software renderer for iced on top of tiny-skia"
|
|
|
|
|
version.workspace = true
|
|
|
|
|
edition.workspace = true
|
|
|
|
|
authors.workspace = true
|
|
|
|
|
license.workspace = true
|
|
|
|
|
repository.workspace = true
|
|
|
|
|
homepage.workspace = true
|
|
|
|
|
categories.workspace = true
|
|
|
|
|
keywords.workspace = true
|
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]
|
2023-09-04 12:58:41 +02:00
|
|
|
iced_graphics.workspace = true
|
2023-02-25 15:38:25 +01:00
|
|
|
|
2023-09-04 12:58:41 +02:00
|
|
|
bytemuck.workspace = true
|
|
|
|
|
cosmic-text.workspace = true
|
|
|
|
|
kurbo.workspace = true
|
|
|
|
|
log.workspace = true
|
|
|
|
|
raw-window-handle.workspace = true
|
|
|
|
|
rustc-hash.workspace = true
|
|
|
|
|
softbuffer.workspace = true
|
|
|
|
|
tiny-skia.workspace = true
|
|
|
|
|
twox-hash.workspace = true
|
2023-02-26 23:40:17 +01:00
|
|
|
|
2023-09-04 12:58:41 +02:00
|
|
|
resvg.workspace = true
|
|
|
|
|
resvg.optional = true
|
2023-02-26 23:40:17 +01:00
|
|
|
|
2023-09-04 12:58:41 +02:00
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
|
|
|
twox-hash.workspace = true
|
|
|
|
|
twox-hash.features = ["std"]
|