-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (36 loc) · 965 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 = "morningstar"
version = "0.1.0"
edition = "2021"
default-run = "morningstar"
[dependencies]
nalgebra = { version = "0.33.0", features = [
"convert-glam028",
"convert-glam027",
] }
prism = { git = "https://github.com/entropylost/prism" }
color-eyre = "0.6.2"
sefirot = { git = "https://github.com/entropylost/sefirot", features = [
"bevy",
"glam",
"nalgebra",
] }
sefirot_grid = { git = "https://github.com/entropylost/sefirot" }
bevy_sefirot = { git = "https://github.com/entropylost/sefirot" }
bevy_egui = "0.29.0"
egui = "0.28.1"
bevy_flycam = "0.14.1"
serde = { version = "1.0.210", features = ["derive"] }
ron = "0.8.1"
smallvec = "1.13.2"
parking_lot = "0.12.3"
[dependencies.bevy]
version = "0.14.2"
[features]
default = ["dylib"]
dylib = ["bevy/dynamic_linking"]
timed = ["bevy_sefirot/trace"]
debug = ["bevy_sefirot/debug"]
trace = ["bevy/trace_chrome", "bevy_sefirot/trace"]
[profile.dev.package.'*']
opt-level = 3