-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (32 loc) · 1.17 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
[package]
name = "bevy-graph-view"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rand="*"
forceatlas2 = { git = "https://github.com/simonas-notcat/forceatlas2-rs.git", branch = "stable-fix" }
[dev-dependencies]
bevy = "0.13.2"
bevy_panorbit_camera = { version="0.17", features = ["bevy_egui"] }
bevy_egui = { version = "0.25", default-features = false, features = ["render", "default_fonts"] }
[dependencies.bevy]
version = "0.13.2"
default-features = false
features = [
"bevy_asset", # Assets management
"bevy_scene", # Scenes management
"bevy_winit", # Window management (cross-platform Winit backend)
"bevy_render", # Rendering framework core
"bevy_core_pipeline", # Common rendering abstractions
"bevy_pbr", # 3D (physically-based) rendering
"animation", # Animation support
"tonemapping_luts", # Support different camera Tonemapping modes (enables KTX2+zstd)
"webgl2", # Web: use WebGL2 instead of WebGPU
]
[profile.release]
lto = true
opt-level = 3
codegen-units = 1
incremental = false
debug = false