-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (23 loc) · 706 Bytes
/
Cargo.toml
File metadata and controls
26 lines (23 loc) · 706 Bytes
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
[package]
name = "bevy_debug_menu"
version = "0.1.0"
authors = ["Brice DAVIER <bricedavier@gmail.com>"]
edition = "2018"
description = "A debug memu for bevy apps that can explore and edit entities and resources live"
repository = "https://github.com/Davier/bevy_debug_menu"
license = "MIT"
keywords = ["gamedev", "bevy"]
readme = "README.md"
exclude = ["assets/**/*"]
[features]
default = []
extra = ["enum"]
enum = []
[dependencies]
bevy = { version = "0.4.0", default-features = false, features = ["render"]}
ron = "0.6.4"
serde = "1.0"
interpolation = "0.2.0"
image = "0.23.12"
[patch.crates-io]
bevy = { git = "https://github.com/bevyengine/bevy", rev = "e6e23fdfa97b0ebfad3495407d9dff27d75ab843" }