-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathCargo.toml
27 lines (22 loc) · 806 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
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.package]
version = "0.11.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.11.0", path = "crates/bevy_editor_pls" }
bevy_editor_pls_core = { version = "0.11.0", path = "crates/bevy_editor_pls_core" }
bevy_editor_pls_default_windows = { version = "0.11.0", path = "crates/bevy_editor_pls_default_windows" }
bevy-inspector-egui = "0.28.0"
egui = "0.29"
egui_dock = "0.14"
transform-gizmo-bevy = "0.5"
[patch.crates-io]
transform-gizmo-bevy = { git = "https://github.com/ActuallyHappening/transform-gizmo" }
[profile.dev.package."*"]
opt-level = 2