-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (34 loc) · 935 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
41
42
43
44
[package]
name = "graph-view"
version = "0.1.23"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bevy = "0.12"
bevy-inspector-egui="0.21"
bevy_window="0.12"
bevy_egui="0.23"
rand="*"
bevy_panorbit_camera = { version="0.9" }
bevy_easings = "0.12.2"
forceatlas2 = "0.5.0"
bevy_mod_picking = { version="0.17.0", features = ["bevy_egui", "bevy_picking_egui"]}
graph = "0.3.1"
[profile.release]
lto = true
codegen-units = 1
# Enable a small amount of optimization in debug mode
[profile.dev]
opt-level = 1
# Enable high optimizations for dependencies (incl. Bevy), but not for our code:
[profile.dev.package."*"]
opt-level = 2
[profile.release.package."bevy-inspector-egui"]
opt-level = 1
[profile.dev.package."bevy-inspector-egui"]
opt-level = 1
[lints.clippy]
type_complexity = "allow"
too_many_arguments = "allow"
[toolchain]
channel = "nightly"