vello_common 0.0.6

Core data structures and utilities shared across the Vello rendering, including geometry processing and tiling logic.
Documentation
[dependencies.bytemuck]
features = ["derive", "derive"]
version = "1.24.0"

[dependencies.fearless_simd]
default-features = false
version = "0.3.0"

[dependencies.hashbrown]
default-features = false
features = ["default-hasher", "raw-entry"]
version = "0.16.1"

[dependencies.libm]
optional = true
version = "0.2.15"

[dependencies.log]
version = "0.4.29"

[dependencies.peniko]
default-features = false
features = ["bytemuck"]
version = "0.6.0"

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

[dependencies.roxmltree]
optional = true
version = "0.20.0"

[dependencies.skrifa]
default-features = false
features = ["autohint_shaping"]
optional = true
version = "0.40.0"

[dependencies.smallvec]
version = "1.15.1"

[features]
default = ["std", "png", "text"]
libm = ["peniko/libm", "skrifa?/libm", "dep:libm", "fearless_simd/libm"]
multithreading = ["std"]
pico_svg = ["dep:roxmltree"]
png = ["std", "dep:png"]
std = ["peniko/std", "skrifa?/std", "fearless_simd/std"]
text = ["dep:skrifa"]

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

[lints.clippy]
allow_attributes_without_reason = "warn"
cargo_common_metadata = "warn"
cast_possible_truncation = "warn"
collection_is_never_read = "warn"
dbg_macro = "warn"
debug_assert_with_mut_call = "warn"
doc_markdown = "warn"
fn_to_numeric_cast_any = "warn"
infinite_loop = "warn"
large_stack_arrays = "warn"
mismatching_type_param_order = "warn"
missing_assert_message = "warn"
missing_fields_in_debug = "warn"
negative_feature_names = "warn"
redundant_feature_names = "warn"
same_functions_in_if_condition = "warn"
semicolon_if_nothing_returned = "warn"
shadow_unrelated = "warn"
should_panic_without_expect = "warn"
todo = "warn"
too_many_arguments = "allow"
unseparated_literal_suffix = "warn"
use_self = "warn"
wildcard_dependencies = "warn"

[lints.rust]
elided_lifetimes_in_paths = "warn"
keyword_idents_2024 = "forbid"
missing_debug_implementations = "warn"
missing_docs = "warn"
non_ascii_idents = "forbid"
non_local_definitions = "forbid"
trivial_numeric_casts = "warn"
unexpected_cfgs = "warn"
unnameable_types = "warn"
unreachable_pub = "warn"
unsafe_op_in_unsafe_fn = "forbid"
unused_import_braces = "warn"
unused_lifetimes = "warn"
unused_macro_rules = "warn"

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["rendering", "graphics"]
description = "Core data structures and utilities shared across the Vello rendering, including geometry processing and tiling logic."
edition = "2024"
keywords = ["2d", "vector-graphics"]
license = "Apache-2.0 OR MIT"
name = "vello_common"
readme = "README.md"
repository = "https://github.com/linebender/vello"
resolver = "2"
rust-version = "1.88"
version = "0.0.6"

[package.metadata.docs.rs]
all-features = true
default-target = "x86_64-unknown-linux-gnu"
targets = []