Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 11 additions & 31 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ vello = { version = "0.5.0", path = "vello" }
vello_encoding = { version = "0.5.0", path = "vello_encoding" }
vello_shaders = { version = "0.5.0", path = "vello_shaders" }
bytemuck = { version = "1.23.0", features = ["derive"] }
skrifa = { version = "0.36.0", default-features = false, features = ["autohint_shaping"] }
skrifa = { version = "0.31.3", default-features = false, features = ["autohint_shaping"] }
# The version of kurbo used below should be kept in sync
# with the version of kurbo used by peniko.
peniko = { version = "0.4.0", default-features = false }
Expand All @@ -119,7 +119,7 @@ fearless_simd = { version = "0.2.0", default-features = false }

# The below crates are experimental!
vello_api = { path = "sparse_strips/vello_api", default-features = false }
vello_common = { version = "0.0.1", path = "sparse_strips/vello_common", default-features = false }
vello_common = { version = "0.0.2", path = "sparse_strips/vello_common", default-features = false }
vello_cpu = { path = "sparse_strips/vello_cpu" }
vello_hybrid = { path = "sparse_strips/vello_hybrid" }
vello_sparse_shaders = { path = "sparse_strips/vello_sparse_shaders" }
Expand Down
2 changes: 1 addition & 1 deletion sparse_strips/vello_common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "vello_common"
# When updating, also update the version in the workspace dependency in the root Cargo.toml
version = "0.0.1"
version = "0.0.2"
description = "Core data structures and utilities shared across the Vello rendering, including geometry processing and tiling logic."
categories = ["rendering", "graphics"]
keywords = ["2d", "vector-graphics"]
Expand Down
2 changes: 1 addition & 1 deletion sparse_strips/vello_cpu/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "vello_cpu"
# When moving past 0.0.x, also update caveats in the README
version = "0.0.1"
version = "0.0.2"
description = "A CPU-based renderer for Vello, optimized for SIMD and multithreaded execution."
categories = ["rendering", "graphics"]
keywords = ["2d", "vector-graphics"]
Expand Down
Loading