forked from makspll/bevy-console
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (28 loc) · 890 Bytes
/
Cargo.toml
File metadata and controls
32 lines (28 loc) · 890 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
27
28
29
30
31
32
[package]
name = "bevy_console"
version = "0.12.1"
edition = "2021"
authors = ["RichoDemus <git@richodemus.com>"]
homepage = "https://github.com/RichoDemus/bevy-console"
repository = "https://github.com/RichoDemus/bevy-console"
description = "dev console for bevy"
license = "MIT"
readme = "README.md"
[dependencies]
bevy = { version = "0.14", default-features = false }
clap = { version = "4.5", features = ["derive", "color", "help"] }
bevy_console_derive = { path = "./bevy_console_derive", version = "0.5.0" }
bevy_egui = { version = "0.29.0", optional = true }
shlex = "1.3"
ansi-parser = "0.9"
strip-ansi-escapes = "0.2"
rustyline = { version = "14.0.0", optional = true }
[dev-dependencies]
bevy = { version = "0.14" }
color-print = { version = "0.3" }
[workspace]
members = ["bevy_console_derive"]
[features]
default = ["ui"]
ui = ["dep:bevy_egui"]
rustyline = ["dep:rustyline"]