-
Notifications
You must be signed in to change notification settings - Fork 24
/
Cargo.toml
48 lines (39 loc) · 1.32 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
#======================#
#=== WORKSPACE INFO ===#
[workspace]
resolver = "2"
members = ["crates/*", "examples/*"]
exclude = [".vscode", "docs/*", "examples/*", "promo/*", ".gitignore"]
[workspace.package]
authors = ["IDEDARY"]
version = "0.2.4"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/bytestring-net/bevy-lunex"
keywords = ["ui", "layout", "bevy", "lunex", "bevy-lunex"]
categories = ["gui", "mathematics", "game-development"]
#========================#
#=== PACKAGE SETTINGS ===#
[profile.dev]
opt-level = 1
#===============================#
#=== DEPENDENCIES & FEATURES ===#
[workspace.dependencies]
# LOCAL CRATES
bevy_lunex = { path = "crates/bevy_lunex", version = "0.2.4" }
lunex_engine = { path = "crates/lunex_engine", version = "0.2.4" }
# STANDART DEPENDENCIES
colored = { version = "^2.1" }
indexmap = { version = "^2.1" }
thiserror = { version = "^1.0" }
# GAME ENGINE
bevy = { version = "^0.14", default-features = false, features = [
"bevy_pbr",
"bevy_sprite",
"bevy_text",
"multi_threaded",
"bevy_gizmos",
] }
# 3RD-PARTY GAME ENGINE CRATES
bevy_kira_audio = { version = "^0.20" }
bevy_mod_picking = { version = "^0.20", default-features = false, features = ["selection", "backend_raycast"] }