vello_cpu 0.0.6

A CPU-based renderer for Vello, optimized for SIMD and multithreaded execution.
Documentation
[dependencies.bytemuck]
features = ["derive"]
version = "1.24.0"

[dependencies.crossbeam-channel]
optional = true
version = "0.5.15"

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

[dependencies.ordered-channel]
features = ["crossbeam-channel", "crossbeam-channel"]
optional = true
version = "1.2.0"

[dependencies.rayon]
optional = true
version = "1.11.0"

[dependencies.thread_local]
optional = true
version = "1.1.9"

[dependencies.vello_common]
default-features = false
version = "0.0.6"

[[example]]
name = "basic"
path = "examples/basic.rs"
required-features = ["png", "std"]

[[example]]
name = "clipping"
path = "examples/clipping.rs"
required-features = ["png", "std"]

[[example]]
name = "masking"
path = "examples/masking.rs"
required-features = ["png", "std"]

[[example]]
name = "paints"
path = "examples/paints.rs"
required-features = ["png", "std"]

[features]
default = ["std", "png", "text", "u8_pipeline"]
f32_pipeline = []
libm = ["vello_common/libm"]
multithreading = ["std", "dep:rayon", "dep:thread_local", "dep:ordered-channel", "dep:crossbeam-channel", "vello_common/multithreading"]
png = ["vello_common/png"]
std = ["vello_common/std"]
text = ["vello_common/text"]
u8_pipeline = []

[lib]
name = "vello_cpu"
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 = "A CPU-based renderer for Vello, optimized for SIMD and multithreaded execution."
edition = "2024"
keywords = ["2d", "vector-graphics"]
license = "Apache-2.0 OR MIT"
name = "vello_cpu"
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 = []