diff --git a/Cargo.toml b/Cargo.toml index 8214a982..8977a09d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,5 @@ [workspace] resolver = "2" - members = [ "crates/encoding", "crates/shaders", @@ -17,23 +16,29 @@ members = [ ] [workspace.package] +# Vello version, also used by other packages which want to mimic Vello's version. +# Right now those packages include vello_encoding and vello_shaders. +# +# NOTE: When bumping this, remember to also bump the aforementioned other packages' +# version in the dependencies section at the bottom of this file. +# Additionally, bump the Vello dependency version in the 'simple' example. +version = "0.1.0" + edition = "2021" -version = "0.0.1" -license = "MIT OR Apache-2.0" +rust-version = "1.75" +license = "Apache-2.0 OR MIT" repository = "https://github.com/linebender/vello" [package] name = "vello" -description = "An experimental GPU compute-centric 2D renderer" +version.workspace = true +description = "An experimental GPU compute-centric 2D renderer." categories = ["rendering", "graphics"] keywords = ["2d", "vector-graphics"] - -# This crate is intended for publishing, but not ready yet -publish = false - -version.workspace = true -license.workspace = true +exclude = ["/.github/", "/doc/", "/examples/", ".gitignore"] edition.workspace = true +rust-version.workspace = true +license.workspace = true repository.workspace = true [features] @@ -42,19 +47,22 @@ hot_reload = [] buffer_labels = [] [dependencies] +vello_encoding = { workspace = true } bytemuck = { workspace = true } skrifa = { workspace = true } peniko = { workspace = true } wgpu = { workspace = true, optional = true } -raw-window-handle = "0.6" -futures-intrusive = "0.5.0" -vello_encoding = { path = "crates/encoding" } +raw-window-handle = { workspace = true } +futures-intrusive = { workspace = true } wgpu-profiler = { workspace = true, optional = true } [workspace.dependencies] +vello_encoding = { version = "0.1.0", path = "crates/encoding" } bytemuck = { version = "1.14.3", features = ["derive"] } skrifa = "0.15.5" peniko = "0.1.0" +futures-intrusive = "0.5.0" +raw-window-handle = "0.6" # NOTE: Make sure to keep this in sync with the version badge in README.md wgpu = { version = "0.19" } diff --git a/crates/encoding/Cargo.toml b/crates/encoding/Cargo.toml index bb2c590b..763e5fba 100644 --- a/crates/encoding/Cargo.toml +++ b/crates/encoding/Cargo.toml @@ -1,7 +1,9 @@ [package] name = "vello_encoding" -version = "0.1.0" +version.workspace = true # We mimic Vello's version +description = "Vello types that represent the data that needs to be rendered." edition.workspace = true +rust-version.workspace = true license.workspace = true repository.workspace = true diff --git a/crates/shaders/Cargo.toml b/crates/shaders/Cargo.toml index 18eb5383..9114fef3 100644 --- a/crates/shaders/Cargo.toml +++ b/crates/shaders/Cargo.toml @@ -1,10 +1,14 @@ [package] name = "vello_shaders" -version = "0.1.0" +version.workspace = true # We mimic Vello's version +description = "Vello infrastructure to preprocess and cross-compile shaders at compile time." edition.workspace = true +rust-version.workspace = true license.workspace = true repository.workspace = true +publish = false # Remove this when the package is ready for publishing + [features] default = ["compile", "wgsl", "msl"] compile = ["naga", "thiserror"] diff --git a/crates/tests/Cargo.toml b/crates/tests/Cargo.toml index 7f1dbaa0..8a6ce575 100644 --- a/crates/tests/Cargo.toml +++ b/crates/tests/Cargo.toml @@ -1,13 +1,11 @@ [package] name = "vello_tests" +description = "Integration tests for Vello." edition.workspace = true -version.workspace = true license.workspace = true repository.workspace = true publish = false -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - [dependencies] vello = { path = "../.." } image = "0.24.9" @@ -16,4 +14,4 @@ anyhow = { workspace = true } wgpu = { workspace = true } pollster = { workspace = true } png = "0.17.13" -futures-intrusive = "0.5.0" +futures-intrusive = { workspace = true } diff --git a/examples/headless/Cargo.toml b/examples/headless/Cargo.toml index caf86f66..6c04262a 100644 --- a/examples/headless/Cargo.toml +++ b/examples/headless/Cargo.toml @@ -1,23 +1,19 @@ [package] name = "headless" -description = "An example showing how to use `vello` to create raster images" -publish = false - -version.workspace = true -license.workspace = true +description = "An example showing how to use Vello to create raster images." edition.workspace = true +license.workspace = true repository.workspace = true - -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +publish = false [dependencies] -anyhow = { workspace = true } -clap = { workspace = true, features = ["derive"] } vello = { path = "../../" } scenes = { path = "../scenes" } +anyhow = { workspace = true } +clap = { workspace = true, features = ["derive"] } wgpu = { workspace = true } pollster = { workspace = true } env_logger = "0.11.2" png = "0.17.13" -futures-intrusive = "0.5.0" +futures-intrusive = { workspace = true } diff --git a/examples/run_wasm/Cargo.toml b/examples/run_wasm/Cargo.toml index de51958a..76068dd0 100644 --- a/examples/run_wasm/Cargo.toml +++ b/examples/run_wasm/Cargo.toml @@ -1,13 +1,9 @@ [package] name = "run_wasm" -publish = false - -version.workspace = true -license.workspace = true edition.workspace = true +license.workspace = true repository.workspace = true - -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +publish = false [dependencies] cargo-run-wasm = "0.3.2" diff --git a/examples/scenes/Cargo.toml b/examples/scenes/Cargo.toml index cf382326..dd23a7d4 100644 --- a/examples/scenes/Cargo.toml +++ b/examples/scenes/Cargo.toml @@ -1,14 +1,10 @@ [package] name = "scenes" -description = "Vello scenes used in the other examples" -publish = false - -version.workspace = true -license.workspace = true +description = "Vello scenes used in the other examples." edition.workspace = true +license.workspace = true repository.workspace = true - -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +publish = false [dependencies] vello = { path = "../../" } diff --git a/examples/simple/Cargo.toml b/examples/simple/Cargo.toml index 417ef71b..639818ef 100644 --- a/examples/simple/Cargo.toml +++ b/examples/simple/Cargo.toml @@ -1,17 +1,16 @@ [package] name = "simple" edition.workspace = true -version.workspace = true license.workspace = true repository.workspace = true publish = false # The dependencies here are independent from the workspace versions [dependencies] +# When using this example outside of the original Vello workspace, +# remove the path property of the following Vello dependency requirement. +vello = { version = "0.1.0", path = "../../" } anyhow = "1.0.80" pollster = "0.3.0" wgpu = "0.19.1" winit = "0.29.11" -vello = { path = "../../" } -# When using, replace the above line with this: -#vello = { git = "https://github.com/linebender/vello" } diff --git a/examples/with_bevy/Cargo.toml b/examples/with_bevy/Cargo.toml index d4cdbea6..7c8b01bb 100644 --- a/examples/with_bevy/Cargo.toml +++ b/examples/with_bevy/Cargo.toml @@ -1,15 +1,13 @@ [package] name = "with_bevy" -description = "Example of using Vello in a Bevy application" - -version.workspace = true -license.workspace = true +description = "Example of using Vello in a Bevy application." edition.workspace = true +license.workspace = true repository.workspace = true - -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +publish = false [dependencies] +vello = { path = "../../" } bevy = { version = "0.13", features = [ "bevy_winit", "bevy_core_pipeline", @@ -19,5 +17,3 @@ bevy = { version = "0.13", features = [ "x11", "tonemapping_luts", ], default-features = false } - -vello = { path = "../../" } diff --git a/examples/with_winit/Cargo.toml b/examples/with_winit/Cargo.toml index 7bdd0925..2b2c12a7 100644 --- a/examples/with_winit/Cargo.toml +++ b/examples/with_winit/Cargo.toml @@ -1,14 +1,11 @@ [package] name = "with_winit" +version = "0.0.0" description = "An example using vello to render to a winit window" -publish = false - -version.workspace = true -license.workspace = true edition.workspace = true +license.workspace = true repository.workspace = true - -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +publish = false [lib] name = "with_winit" diff --git a/integrations/vello_svg/Cargo.toml b/integrations/vello_svg/Cargo.toml index 89ec0dc1..fcb421e9 100644 --- a/integrations/vello_svg/Cargo.toml +++ b/integrations/vello_svg/Cargo.toml @@ -3,13 +3,10 @@ name = "vello_svg" description = "Render a usvg document to a Vello scene" categories = ["rendering", "graphics"] keywords = ["2d", "vector-graphics", "vello"] - -version.workspace = true -license.workspace = true edition.workspace = true +license.workspace = true repository.workspace = true - -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +publish = false [dependencies] vello = { path = "../../" }