-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
93 lines (72 loc) · 1.72 KB
/
Cargo.toml
File metadata and controls
93 lines (72 loc) · 1.72 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[package]
name = "processing"
version = "0.1.0"
edition = "2024"
autoexamples = false
[lints]
workspace = true
[features]
default = ["wayland"]
wayland = ["processing_render/wayland"]
x11 = ["processing_render/x11"]
[workspace]
resolver = "3"
members = ["crates/*"]
[workspace.lints.clippy]
type_complexity = "allow"
too_many_arguments = "allow"
[workspace.dependencies]
bevy = { git = "https://github.com/bevyengine/bevy",?target=https://github.com branch = "main" }
processing = { path = "." }
processing_pyo3 = { path = "crates/processing_pyo3" }
processing_render = { path = "crates/processing_render" }
processing_midi = { path = "crates/processing_midi" }
[dependencies]
bevy = { workspace = true }
processing_render = { workspace = true }
processing_midi = { workspace = true }
[dev-dependencies]
glfw = "0.60.0"
[target.'cfg(target_os = "linux")'.dev-dependencies]
glfw = { version = "0.60.0", features = ["wayland"] }
[[example]]
name = "rectangle"
path = "examples/rectangle.rs"
[[example]]
name = "background_image"
path = "examples/background_image.rs"
[[example]]
name = "update_pixels"
path = "examples/update_pixels.rs"
[[example]]
name = "transforms"
path = "examples/transforms.rs"
[[example]]
name = "box"
path = "examples/box.rs"
[[example]]
name = "animated_mesh"
path = "examples/animated_mesh.rs"
[[example]]
name = "custom_attribute"
path = "examples/custom_attribute.rs"
[[example]]
name = "lights"
path = "examples/lights.rs"
[[example]]
name = "materials"
path = "examples/materials.rs"
[[example]]
name = "pbr"
path = "examples/pbr.rs"
[[example]]
name = "midi"
path = "examples/midi.rs"
[[example]]
name = "gltf_load"
path = "examples/gltf_load.rs"
[profile.wasm-release]
inherits = "release"
opt-level = "z"
lto = "fat"
codegen-units = 1