iced-yoda/tiny_skia/Cargo.toml

40 lines
751 B
TOML
Raw Normal View History

[package]
name = "iced_tiny_skia"
version = "0.1.0"
edition = "2021"
[features]
image = ["iced_graphics/image"]
svg = ["resvg"]
geometry = ["iced_graphics/geometry"]
[dependencies]
raw-window-handle = "0.5"
softbuffer = "0.2"
2023-04-26 16:46:27 +02:00
tiny-skia = "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]
version = "0.8"
path = "../graphics"
features = ["tiny-skia"]
2023-02-26 23:40:17 +01:00
[dependencies.cosmic-text]
git = "https://github.com/hecrj/cosmic-text.git"
2023-05-02 00:58:33 +02:00
rev = "b85d6a4f2376f8a8a7dadc0f8bcb89d4db10a1c9"
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-04-26 16:46:27 +02:00
version = "0.32"
optional = true