valo 0.1.0

A 2D render engine on wgpu: display lists, planned GPU passes, and a Skia-shaped text stack
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"
rust-version = "1.87"
name = "valo"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A 2D render engine on wgpu: display lists, planned GPU passes, and a Skia-shaped text stack"
readme = "README.md"
keywords = [
    "graphics",
    "gpu",
    "wgpu",
    "2d",
    "renderer",
]
categories = [
    "graphics",
    "rendering::engine",
]
license = "MIT"
repository = "https://github.com/seedeai/valo"

[features]
counters = ["valo-renderer/counters"]
serde = ["valo-dl/serde"]
trace = ["valo-renderer/trace"]
woff2 = ["valo-text/woff2"]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

[[test]]
name = "golden"
path = "tests/golden.rs"

[[test]]
name = "perf_probe"
path = "tests/perf_probe.rs"

[[test]]
name = "persistent_canvas"
path = "tests/persistent_canvas.rs"

[[test]]
name = "raster_cache"
path = "tests/raster_cache.rs"

[[test]]
name = "resources"
path = "tests/resources.rs"

[[test]]
name = "shared_device"
path = "tests/shared_device.rs"

[[bench]]
name = "bench_fonts"
path = "benches/bench_fonts.rs"

[[bench]]
name = "frame"
path = "benches/frame.rs"
harness = false

[[bench]]
name = "geometry"
path = "benches/geometry.rs"
harness = false

[[bench]]
name = "record"
path = "benches/record.rs"
harness = false

[[bench]]
name = "text"
path = "benches/text.rs"
harness = false

[dependencies.valo-dl]
version = "0.1.0"

[dependencies.valo-geometry]
version = "0.1.0"

[dependencies.valo-renderer]
version = "0.1.0"

[dependencies.valo-text]
version = "0.1.0"

[dependencies.wgpu]
version = "30"

[dev-dependencies.criterion]
version = "0.7"
features = ["cargo_bench_support"]
default-features = false

[dev-dependencies.png]
version = "0.17"

[dev-dependencies.pollster]
version = "0.4"

[dev-dependencies.valo-svg]
version = "0.1.0"

[dev-dependencies.winit]
version = "0.30"

[target.'cfg(target_arch = "wasm32")'.dependencies.web-sys]
version = "0.3"
features = ["ImageBitmap"]

[target.'cfg(target_os = "macos")'.dependencies.objc2]
version = "0.6"

[target.'cfg(target_os = "macos")'.dependencies.objc2-metal]
version = "0.3.2"
features = [
    "MTLTexture",
    "MTLDevice",
]