-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
51 lines (45 loc) · 1.12 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
48
49
50
51
[package]
name = "bevy_pmetra"
description = "Parametric Modelling for Bevy using Truck CAD kernel."
version = "0.2.0"
edition = "2021"
authors = ["Nilay Savant"]
categories = [
"bevy",
"parametric",
"CAD",
"procedural",
"mesh",
"3D",
"graphics",
]
exclude = ["assets/", ".github/"]
keywords = [
"bevy",
"parametric",
"CAD",
"procedural",
"mesh",
"3D",
"gamedev",
"graphics",
]
license = "MIT OR Apache-2.0"
readme = "README.md"
[workspace]
resolver = "2"
members = ["crates/*", "pmetra_demo"]
[dependencies]
pmetra_internal = { path = "crates/pmetra_internal" }
[dev-dependencies]
bevy = "0.14"
# smooth-bevy-cameras = "0.11" // Use the git version for now as crate is not updated. As below.
smooth-bevy-cameras = { git = "https://github.com/bonsairobo/smooth-bevy-cameras", rev = "414fa90d1f0c4a95efbaa5f5cf5839b5c904966d" }
bevy_egui = "0.28"
bevy-inspector-egui = "0.25"
# Enable high optimizations for dependencies (incl. Bevy), but not for our code:
[profile.dev.package."*"]
opt-level = 3
# Enable a small amount of optimization in debug mode
[profile.dev]
opt-level = 1