[package]
name = "tiny-skia"
version = "0.6.6"
authors = ["Yevhenii Reizner <razrfalcon@gmail.com>"]
edition = "2018"
description = "A tiny Skia subset ported to Rust."
documentation = "https://docs.rs/tiny-skia/"
readme = "README.md"
repository = "https://github.com/RazrFalcon/tiny-skia"
license = "BSD-3-Clause"
keywords = ["2d", "rendering", "skia"]
categories = ["rendering"]
[dependencies]
arrayref = "0.3.6"
arrayvec = { version = "0.5", default-features = false }
bytemuck = "1.4"
cfg-if = "1"
libm = { version = "0.2.1", optional = true }
png = { version = "0.17", optional = true }
safe_arch = { version = "0.5.2", features = ["bytemuck"], optional = true }
[features]
default = ["std", "simd", "png-format"]
std = []
simd = ["safe_arch"]
png-format = ["std", "png"]