|
2 | 2 | #=== WORKSPACE INFO ===# |
3 | 3 |
|
4 | 4 | [workspace] |
5 | | - resolver = "2" |
| 5 | + exclude = [".gitattributes", ".github", ".gitignore", ".vscode", "docs/*", "promo/*"] |
6 | 6 | members = ["crate", "examples/*"] |
7 | | - exclude = [".github", ".vscode", "docs/*", "promo/*", ".gitattributes", ".gitignore"] |
| 7 | + resolver = "2" |
8 | 8 |
|
9 | 9 | [workspace.package] |
10 | 10 | authors = ["IDEDARY"] |
11 | | - version = "0.5.0" |
| 11 | + categories = ["game-development", "gui", "mathematics"] |
12 | 12 | edition = "2024" |
| 13 | + keywords = ["bevy", "bevy-lunex", "layout", "lunex", "ui"] |
13 | 14 | license = "MIT OR Apache-2.0" |
14 | 15 | repository = "https://github.com/bytestring-net/bevy-lunex" |
15 | | - keywords = ["ui", "layout", "bevy", "lunex", "bevy-lunex"] |
16 | | - categories = ["gui", "mathematics", "game-development"] |
| 16 | + version = "0.6.0" |
17 | 17 |
|
18 | | -#========================# |
19 | | -#=== PROFILE SETTINGS ===# |
| 18 | + #========================# |
| 19 | + #=== PROFILE SETTINGS ===# |
20 | 20 |
|
21 | 21 | [profile.dev] |
22 | | - debug = 0 |
23 | | - strip = "debuginfo" |
| 22 | + debug = 0 |
24 | 23 | opt-level = 1 |
| 24 | + strip = "debuginfo" |
25 | 25 |
|
26 | 26 | [profile.dev.package."*"] |
27 | 27 | opt-level = 3 |
28 | 28 |
|
29 | 29 | [profile.release] |
30 | | - opt-level = 3 |
31 | | - panic = 'abort' |
32 | | - debug = 0 |
33 | | - strip = true |
34 | | - lto = "thin" |
35 | 30 | codegen-units = 1 |
| 31 | + debug = 0 |
| 32 | + lto = "thin" |
| 33 | + opt-level = 3 |
| 34 | + panic = 'abort' |
| 35 | + strip = true |
36 | 36 |
|
37 | | -#===============================# |
38 | | -#=== DEPENDENCIES & FEATURES ===# |
| 37 | + #===============================# |
| 38 | + #=== DEPENDENCIES & FEATURES ===# |
39 | 39 |
|
40 | 40 | [workspace.dependencies] |
41 | 41 |
|
|
46 | 46 | #=== GAME ENGINE SOURCE === # |
47 | 47 |
|
48 | 48 | ## GAME ENGINE |
49 | | - bevy_asset = { version = "^0.17.0", default-features = false } |
50 | | - bevy_app = { version = "^0.17.0", default-features = false } |
51 | | - bevy_color = { version = "^0.17.0", default-features = false } |
52 | | - bevy_ecs = { version = "^0.17.0", default-features = false } |
53 | | - bevy_math = { version = "^0.17.0", default-features = false } |
54 | | - bevy_mesh = { version = "^0.17.0", default-features = false } |
55 | | - bevy_text = { version = "^0.17.0", default-features = false } |
56 | | - bevy_sprite = { version = "^0.17.0", default-features = false, features = [ |
57 | | - "bevy_text", |
58 | | - ] } |
59 | | - bevy_sprite_render = { version = "^0.17.0", default-features = false } |
60 | | - bevy_image = { version = "^0.17.0", default-features = false } |
61 | | - bevy_render = { version = "^0.17.0", default-features = false } |
62 | | - bevy_camera = { version = "^0.17.0", default-features = false } |
63 | | - bevy_platform = { version = "^0.17.0", default-features = false } |
64 | | - bevy_reflect = { version = "^0.17.0", default-features = false, features = [ |
65 | | - "functions", |
66 | | - ] } |
67 | | - bevy_transform = { version = "^0.17.0", default-features = false } |
68 | | - bevy_log = { version = "^0.17.0", default-features = false } |
69 | | - bevy_gizmos = { version = "^0.17.0", default-features = false, features = [ |
70 | | - "bevy_render", |
71 | | - ] } |
72 | | - bevy_window = { version = "^0.17.0", default-features = false } |
73 | | - bevy_picking = { version = "^0.17.0", default-features = false } |
74 | | - bevy_input = { version = "^0.17.0", default-features = false } |
75 | | - bevy_time = { version = "^0.17.0", default-features = false } |
76 | | - bevy_pbr = { version = "^0.17.0", default-features = false } |
77 | | - bevy_winit = { version = "^0.17.0", default-features = false, features = [ |
78 | | - "custom_cursor", |
79 | | - ] } |
80 | | - bevy_derive = { version = "^0.17.0", default-features = false } |
81 | | - cosmic-text = { version = "0.14", features = ["shape-run-cache"] } |
| 49 | + bevy_app = { version = "0.18", default-features = false } |
| 50 | + bevy_asset = { version = "0.18", default-features = false } |
| 51 | + bevy_camera = { version = "0.18", default-features = false } |
| 52 | + bevy_color = { version = "0.18", default-features = false } |
| 53 | + bevy_derive = { version = "0.18", default-features = false } |
| 54 | + bevy_ecs = { version = "0.18", default-features = false } |
| 55 | + bevy_gizmos = { version = "0.18", default-features = false } |
| 56 | + bevy_image = { version = "0.18", default-features = false } |
| 57 | + bevy_input = { version = "0.18", default-features = false } |
| 58 | + bevy_log = { version = "0.18", default-features = false } |
| 59 | + bevy_math = { version = "0.18", default-features = false } |
| 60 | + bevy_mesh = { version = "0.18", default-features = false } |
| 61 | + bevy_pbr = { version = "0.18", default-features = false } |
| 62 | + bevy_picking = { version = "0.18", default-features = false } |
| 63 | + bevy_platform = { version = "0.18", default-features = false } |
| 64 | + bevy_reflect = { version = "0.18", default-features = false, features = ["functions"] } |
| 65 | + bevy_render = { version = "0.18", default-features = false } |
| 66 | + bevy_sprite = { version = "0.18", default-features = false, features = ["bevy_text"] } |
| 67 | + bevy_sprite_render = { version = "0.18", default-features = false } |
| 68 | + bevy_text = { version = "0.18", default-features = false } |
| 69 | + bevy_time = { version = "0.18", default-features = false } |
| 70 | + bevy_transform = { version = "0.18", default-features = false } |
| 71 | + bevy_window = { version = "0.18", default-features = false } |
| 72 | + bevy_winit = { version = "0.18", default-features = false, features = ["custom_cursor"] } |
| 73 | + cosmic-text = { version = "0.16", features = ["shape-run-cache"] } |
82 | 74 |
|
83 | 75 | #===============================# |
84 | 76 | #=== GAME ENGINE EXTENSIONS === # |
85 | 77 |
|
86 | | - bevy_rich_text3d = { version = "^0.5" } |
| 78 | + bevy_rich_text3d = { version = "^0.6" } |
87 | 79 |
|
88 | 80 | #===========================# |
89 | 81 | #=== RUST MISCELLANEOUS === # |
90 | | - |
| 82 | + |
| 83 | + colored = { version = "^3.1.1" } |
| 84 | + getrandom = { version = "^0.3.3", features = ["wasm_js"] } |
91 | 85 | radsort = { version = "^0.1.1" } |
92 | | - colored = { version = "^3.0.0" } |
93 | 86 | rand = { version = "^0.9.1" } |
94 | | - getrandom = { version = "^0.3.3", features = ["wasm_js"]} |
0 commit comments