-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
50 lines (38 loc) · 1.22 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[package]
name = "bevy_dev_console"
version = "0.1.0"
edition = "2021"
exclude = ["assets/", "docs/", ".github/"]
keywords = ["bevy", "console", "development", "source"]
license = "MIT OR Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["builtin-parser", "completions", "builtin-parser-completions"]
completions = []
builtin-parser-completions = [
"completions",
"builtin-parser",
"dep:fuzzy-matcher",
]
builtin-parser = ["dep:logos"]
[dependencies]
# This crate by itself doesn't use any bevy features, but `bevy_egui` (dep) uses "bevy_asset".
bevy = { version = "0.14.0", default-features = false, features = [] }
bevy_egui = "0.28.0"
chrono = "0.4.31"
tracing-log = "0.2.0"
tracing-subscriber = "0.3.18"
web-time = "1.0.0"
# builtin-parser features
logos = { version = "0.14.0", optional = true }
fuzzy-matcher = { version = "0.3.7", optional = true }
[dev-dependencies]
bevy = "0.14.0"
[target.'cfg(target_os = "android")'.dependencies]
android_log-sys = "0.3.0"
[target.'cfg(target_arch = "wasm32")'.dependencies]
console_error_panic_hook = "0.1.7"
tracing-wasm = "0.2.1"
[lints]
clippy.useless_format = "allow"
rust.missing_docs = "warn"