iced-yoda/tiny_skia/Cargo.toml
2025-12-07 21:16:13 +01:00

37 lines
897 B
TOML

[package]
name = "iced_tiny_skia"
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
[lints]
workspace = true
[features]
default = ["x11", "wayland"]
image = ["iced_graphics/image"]
svg = ["iced_graphics/svg", "resvg"]
geometry = ["iced_graphics/geometry"]
x11 = ["softbuffer/x11", "softbuffer/x11-dlopen"]
wayland = ["softbuffer/wayland", "softbuffer/wayland-dlopen"]
[dependencies]
iced_debug.workspace = true
iced_graphics.workspace = true
bytemuck.workspace = true
cosmic-text.workspace = true
kurbo.workspace = true
log.workspace = true
rustc-hash.workspace = true
softbuffer.workspace = true
tiny-skia.workspace = true
resvg.workspace = true
resvg.optional = true