2020-04-06 08:17:26 +10:00
|
|
|
[workspace]
|
2022-06-25 23:11:13 +10:00
|
|
|
resolver = "2"
|
2020-04-06 08:17:26 +10:00
|
|
|
|
2023-02-01 03:07:03 +11:00
|
|
|
members = [
|
2023-04-11 09:59:44 +10:00
|
|
|
"crates/encoding",
|
2023-03-30 06:24:28 +11:00
|
|
|
"crates/shaders",
|
|
|
|
|
2023-02-03 21:22:39 +11:00
|
|
|
"integrations/vello_svg",
|
|
|
|
|
2023-02-07 23:52:22 +11:00
|
|
|
"examples/headless",
|
2023-02-01 03:07:03 +11:00
|
|
|
"examples/with_winit",
|
2023-07-28 03:01:45 +10:00
|
|
|
# "examples/with_bevy", # Disable for now until bevy is using wgpu 0.17
|
2023-02-01 03:07:03 +11:00
|
|
|
"examples/run_wasm",
|
2023-02-03 21:22:39 +11:00
|
|
|
"examples/scenes",
|
2023-02-01 03:07:03 +11:00
|
|
|
]
|
2022-11-30 14:35:46 +11:00
|
|
|
|
|
|
|
[workspace.package]
|
|
|
|
edition = "2021"
|
2023-02-07 07:12:46 +11:00
|
|
|
version = "0.0.1"
|
2023-07-23 13:56:53 +10:00
|
|
|
license = "MIT OR Apache-2.0"
|
2023-02-07 07:12:46 +11:00
|
|
|
# homepage = "https://vello.dev" - Domain owned by us, but unused at present
|
|
|
|
# rust-version =
|
|
|
|
repository = "https://github.com/linebender/vello"
|
2023-01-05 20:32:09 +11:00
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "vello"
|
2023-02-07 07:12:46 +11:00
|
|
|
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
|
|
|
|
edition.workspace = true
|
|
|
|
repository.workspace = true
|
|
|
|
|
|
|
|
[features]
|
|
|
|
hot_reload = []
|
|
|
|
buffer_labels = []
|
2023-01-05 20:32:09 +11:00
|
|
|
|
|
|
|
[dependencies]
|
2023-04-11 09:59:44 +10:00
|
|
|
bytemuck = { workspace = true }
|
|
|
|
fello = { workspace = true }
|
|
|
|
peniko = { workspace = true }
|
2023-02-01 03:07:03 +11:00
|
|
|
wgpu = { workspace = true }
|
2023-01-05 20:32:09 +11:00
|
|
|
raw-window-handle = "0.5"
|
|
|
|
futures-intrusive = "0.5.0"
|
2023-04-11 09:59:44 +10:00
|
|
|
vello_encoding = { path = "crates/encoding" }
|
2023-06-02 01:10:27 +10:00
|
|
|
wgpu-profiler = { workspace = true, optional = true }
|
2023-01-17 04:16:45 +11:00
|
|
|
|
2023-02-07 07:12:46 +11:00
|
|
|
[workspace.dependencies]
|
2023-04-11 09:59:44 +10:00
|
|
|
bytemuck = { version = "1.12.1", features = ["derive"] }
|
2023-08-07 13:59:40 +10:00
|
|
|
fello = { git = "https://github.com/dfrg/fount", rev = "0a7c809716aeb96795325a74c91c048cf4980d73" }
|
2023-04-11 09:59:44 +10:00
|
|
|
peniko = { git = "https://github.com/linebender/peniko", rev = "cafdac9a211a0fb2fec5656bd663d1ac770bcc81" }
|
2023-07-28 03:01:45 +10:00
|
|
|
wgpu = "0.17" # NOTE: Make sure to keep this in sync with the version badge in README.md
|
2023-06-02 01:10:27 +10:00
|
|
|
|
2023-02-07 07:12:46 +11:00
|
|
|
|
|
|
|
# Used for examples
|
|
|
|
clap = "4.1.0"
|
|
|
|
anyhow = "1.0"
|
2023-06-02 01:10:27 +10:00
|
|
|
instant = { version = "0.1.12", features = ["wasm-bindgen"] }
|
2023-03-17 02:44:10 +11:00
|
|
|
pollster = "0.3.0"
|
2023-07-28 03:01:45 +10:00
|
|
|
wgpu-profiler = "0.13"
|