-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
47 lines (39 loc) · 1.16 KB
/
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
40
41
42
43
44
45
46
47
[workspace]
resolver = "2"
members = ["crates/*"]
[workspace.package]
version = "0.0.12"
license = "MIT OR Apache-2.0"
repository = "https://github.com/unavi-xyz/bevy_vrm"
edition = "2021"
[workspace.lints.clippy]
type_complexity = "allow"
[workspace.dependencies]
bevy_shader_mtoon = { path = "crates/bevy_shader_mtoon", version = "0.0.12" }
bevy_vrm = { path = "crates/bevy_vrm", version = "0.0.12" }
gltf_kun_vrm = { path = "crates/gltf_kun_vrm", version = "0.0.12" }
serde_vrm = { path = "crates/serde_vrm", version = "0.0.12" }
bevy = { version = "0.14.0", default-features = false, features = [
"bevy_asset",
"bevy_scene",
"bevy_pbr",
] }
bevy_egui = { version = "0.28.0", default-features = false, features = [
"open_url",
"default_fonts",
"render",
] }
bevy_panorbit_camera = { version = "0.19.0", features = ["bevy_egui"] }
gltf_kun = { version = "0.0.13", default-features = false }
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.115"
thiserror = "1.0.57"
[workspace.metadata.release]
shared-version = true
tag-name = "v{{version}}"
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3
[profile.release]
lto = true