-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
39 lines (32 loc) · 826 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[package]
name = "cleave"
version = "0.1.0"
edition = "2021"
[workspace]
members = ["cleave-graphics"]
[dependencies]
bytemuck = { workspace = true }
glam = { workspace = true }
winit = { workspace = true }
anyhow = { workspace = true }
arboard = { workspace = true }
image = { workspace = true }
pollster = { workspace = true }
wgpu = { workspace = true }
xcap = { workspace = true }
cleave-graphics = { path = "cleave-graphics" }
[workspace.dependencies]
anyhow = "1"
arboard = "3.4.1"
bytemuck = { version = "1.19.0", features = ["derive"] }
glam = { version = "0.29.1", features = ["bytemuck"] }
image = "0.25.4"
pollster = "0.4.0"
wgpu = "23.0.0"
winit = { version = "0.30.5", features = ["rwh_06"] }
xcap = "0.0.14"
[profile.release]
codegen-units = 1
lto = "thin"
[build]
rustflags = ["-C", "target-cpu=native"]