-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
23 lines (19 loc) · 788 Bytes
/
Cargo.toml
File metadata and controls
23 lines (19 loc) · 788 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "flowtr"
version = "0.1.0"
edition = "2024"
license = "MIT OR Apache-2.0"
[dependencies]
vello_hybrid = { git = "https://github.com/linebender/vello", default-features = false, features = ["wgpu"] }
vello_common = { git = "https://github.com/linebender/vello", default-features = false }
parley = "0.7.0"
bytemuck = "1.24.0"
wgpu = { version = "27", default-features = false, features = ["wgsl", "vulkan"] }
winit = { version = "0.30.12", default-features = false, features = ["wayland", "rwh_06"] }
pollster = "0.4.0"
[target.'cfg(target_arch = "wasm32")'.dependencies]
vello_hybrid = { git = "https://github.com/linebender/vello", default-features = false, features = ["webgl"] }
[profile.dev.package."*"]
opt-level = 3
[profile.dev.package."flowtr"]
opt-level = 1