-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
40 lines (34 loc) · 833 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
40
[package]
name = "bevy_copperfield"
description = "Procedural mesh editor, based on Half-Edge-Mesh datastructure"
repository = "https://github.com/Hexorg/bevy_copperfield"
version = "0.2.2"
edition = "2021"
license = "MIT"
readme = "README.md"
[workspace]
resolver = "2"
# Enable a small amount of optimization in debug mode
[profile.dev]
opt-level = 1
[profile.release]
opt-level = 3
lto = "thin"
# Enable high optimizations for dependencies (incl. Bevy), but not for our code:
[profile.dev.package."*"]
opt-level = 3
[dependencies]
glam = "0.29"
bevy_utils = "0.15"
bevy_transform = "0.15"
bevy_math = "0.15"
bevy_render = "0.15"
earcutr = "0.4.3"
itertools = "0.13.0"
line_drawing = "1.0.0"
noise = "0.9.0"
slotmap = "1.0.7"
smallvec = "1.13.2"
sprs = "0.11.2"
[dev-dependencies]
bevy = {version = "0.15", features=["jpeg"]}