tiny-skia 0.12.0

A tiny Skia subset ported to Rust.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "tiny-skia"
version = "0.12.0"
authors = ["Yevhenii Reizner <razrfalcon@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A tiny Skia subset ported to Rust."
documentation = "https://docs.rs/tiny-skia/"
readme = "README.md"
keywords = [
    "2d",
    "rendering",
    "skia",
]
categories = ["rendering"]
license = "BSD-3-Clause"
repository = "https://github.com/linebender/tiny-skia"

[features]
default = [
    "std",
    "simd",
    "png-format",
]
no-std-float = ["tiny-skia-path/no-std-float"]
png-format = [
    "std",
    "dep:png",
]
simd = []
std = ["tiny-skia-path/std"]

[lib]
name = "tiny_skia"
path = "src/lib.rs"

[[example]]
name = "fill"
path = "examples/fill.rs"

[[example]]
name = "gamma"
path = "examples/gamma.rs"

[[example]]
name = "hairline"
path = "examples/hairline.rs"

[[example]]
name = "image_on_image"
path = "examples/image_on_image.rs"

[[example]]
name = "large_image"
path = "examples/large_image.rs"

[[example]]
name = "linear_gradient"
path = "examples/linear_gradient.rs"

[[example]]
name = "mask"
path = "examples/mask.rs"

[[example]]
name = "pattern"
path = "examples/pattern.rs"

[[example]]
name = "stroke"
path = "examples/stroke.rs"

[[test]]
name = "integration"
path = "tests/integration/main.rs"

[dependencies.arrayref]
version = "0.3.9"

[dependencies.arrayvec]
version = "0.7"
default-features = false

[dependencies.bytemuck]
version = "1.24"
features = ["aarch64_simd"]

[dependencies.cfg-if]
version = "1"

[dependencies.log]
version = "0.4"

[dependencies.png]
version = "0.18"
optional = true

[dependencies.tiny-skia-path]
version = "0.12.0"
default-features = false