63 lines
1.4 KiB
TOML
63 lines
1.4 KiB
TOML
# 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 = "2018"
|
|
name = "tiny-skia"
|
|
version = "0.8.4"
|
|
authors = ["Yevhenii Reizner <razrfalcon@gmail.com>"]
|
|
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/RazrFalcon/tiny-skia"
|
|
|
|
[dependencies.arrayref]
|
|
version = "0.3.6"
|
|
|
|
[dependencies.arrayvec]
|
|
version = "0.7"
|
|
default-features = false
|
|
|
|
[dependencies.bytemuck]
|
|
version = "1.12"
|
|
features = ["aarch64_simd"]
|
|
|
|
[dependencies.cfg-if]
|
|
version = "1"
|
|
|
|
[dependencies.png]
|
|
version = "0.17"
|
|
optional = true
|
|
|
|
[dependencies.tiny-skia-path]
|
|
version = "0.8.4"
|
|
default-features = false
|
|
|
|
[features]
|
|
default = [
|
|
"std",
|
|
"simd",
|
|
"png-format",
|
|
]
|
|
no-std-float = ["tiny-skia-path/no-std-float"]
|
|
png-format = [
|
|
"std",
|
|
"png",
|
|
]
|
|
simd = []
|
|
std = ["tiny-skia-path/std"]
|