forked from jakobhellermann/bevy_editor_pls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
24 lines (21 loc) · 777 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
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.package]
version = "0.9.0"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/jakobhellermann/bevy_editor_pls"
description = "In-App editor tools for bevy apps"
readme = "README.md"
[workspace.dependencies]
bevy_editor_pls = { version = "0.9.0", path = "crates/bevy_editor_pls" }
bevy_editor_pls_core = { version = "0.9.0", path = "crates/bevy_editor_pls_core" }
bevy_editor_pls_default_windows = { version = "0.9.0", path = "crates/bevy_editor_pls_default_windows" }
bevy-inspector-egui = { git = "https://github.com/Occuros/bevy-inspector-egui.git" }
egui = "0.28"
egui_dock = "0.13"
# used to be egui-gizmo 0.16
transform-gizmo-bevy = "0.3"
[profile.dev.package."*"]
opt-level = 2