-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (38 loc) · 1 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
[package]
name = "bevy_daz"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
authors = ["Danny McGee <dannymcgee@gmailcom>"]
[workspace]
resolver = "2"
members = [
"crates/*",
]
[dependencies]
anyhow = { workspace = true }
async-fs = "2.1.1"
bevy = { workspace = true }
bevy_dqskinning = { path = "crates/bevy_dqskinning" }
daz_asset_types = { path = "crates/daz_asset_types", features = ["bevy"] }
futures-lite = "2.3.0"
merge-streams = "0.1.2"
regex = "1.10.4"
serde = { workspace = true }
serde_json = { workspace = true }
[workspace.dependencies]
anyhow = "1.0.75"
bevy = { version = "0.13.2", features = ["dynamic_linking"] }
serde = { version = "1.0.192", features = ["derive"] }
serde_json = "1.0.108"
[dev-dependencies]
bevy-inspector-egui = "0.23.4"
bevy_panorbit_camera = { version = "0.17.0", features = ["bevy_egui"] }
[[example]]
name = "base_genesis9"
path = "examples/base_genesis9.rs"
[profile.dev-custom]
inherits = "dev"
opt-level = 1
[profile.dev-custom.package."*"]
opt-level = 3