|
1 | 1 | [package] |
2 | 2 | name = "bevy_mod_scripting" |
3 | | -version = "0.7.1" |
| 3 | +version = "0.8.0-alpha.0" |
4 | 4 | authors = ["Maksymilian Mozolewski <makspl17@gmail.com>"] |
5 | 5 | edition = "2021" |
6 | 6 | license = "MIT OR Apache-2.0" |
@@ -63,16 +63,16 @@ rune = ["bevy_mod_scripting_rune"] |
63 | 63 | [dependencies] |
64 | 64 | bevy = { workspace = true } |
65 | 65 | bevy_mod_scripting_core = { workspace = true } |
66 | | -bevy_mod_scripting_lua = { path = "crates/languages/bevy_mod_scripting_lua", version = "0.7.1", optional = true } |
67 | | -bevy_mod_scripting_rhai = { path = "crates/languages/bevy_mod_scripting_rhai", version = "0.7.1", optional = true } |
68 | | -bevy_mod_scripting_rune = { path = "crates/languages/bevy_mod_scripting_rune", version = "0.7.1", optional = true } |
69 | | -bevy_script_api = { path = "crates/bevy_script_api", version = "0.7.1", optional = true } |
| 66 | +bevy_mod_scripting_lua = { path = "crates/languages/bevy_mod_scripting_lua", version = "0.8.0-alpha.0", optional = true } |
| 67 | +bevy_mod_scripting_rhai = { path = "crates/languages/bevy_mod_scripting_rhai", version = "0.8.0-alpha.0", optional = true } |
| 68 | +bevy_mod_scripting_rune = { path = "crates/languages/bevy_mod_scripting_rune", version = "0.8.0-alpha.0", optional = true } |
| 69 | +bevy_script_api = { path = "crates/bevy_script_api", version = "0.8.0-alpha.0", optional = true } |
70 | 70 |
|
71 | 71 |
|
72 | 72 | [workspace.dependencies] |
73 | | -bevy = { version = "0.14.2", default-features = false } |
74 | | -bevy_mod_scripting_core = { path = "crates/bevy_mod_scripting_core", version = "0.7.1" } |
75 | | -bevy_mod_scripting_common = { path = "crates/bevy_mod_scripting_common", version = "0.7.1" } |
| 73 | +bevy = { version = "0.15.0-rc.2", default-features = false } |
| 74 | +bevy_mod_scripting_core = { path = "crates/bevy_mod_scripting_core", version = "0.8.0-alpha.0" } |
| 75 | +bevy_mod_scripting_common = { path = "crates/bevy_mod_scripting_common", version = "0.8.0-alpha.0" } |
76 | 76 |
|
77 | 77 | [dev-dependencies] |
78 | 78 | bevy = { workspace = true, default-features = true } |
@@ -111,25 +111,26 @@ codegen-units = 8 |
111 | 111 | incremental = false |
112 | 112 | debug = false |
113 | 113 |
|
114 | | -[[example]] |
115 | | -name = "console_integration_lua" |
116 | | -path = "examples/lua/console_integration.rs" |
117 | | -required-features = [ |
118 | | - "lua54", |
119 | | - "lua_script_api", |
120 | | - "bevy/file_watcher", |
121 | | - "bevy/multi_threaded", |
122 | | -] |
123 | | - |
124 | | -[[example]] |
125 | | -name = "console_integration_rhai" |
126 | | -path = "examples/rhai/console_integration.rs" |
127 | | -required-features = [ |
128 | | - "rhai", |
129 | | - "rhai_script_api", |
130 | | - "bevy/file_watcher", |
131 | | - "bevy/multi_threaded", |
132 | | -] |
| 114 | +# TODO: bump once bevy is released and the lib is updated |
| 115 | +# [[example]] |
| 116 | +# name = "console_integration_lua" |
| 117 | +# path = "examples/lua/console_integration.rs" |
| 118 | +# required-features = [ |
| 119 | +# "lua54", |
| 120 | +# "lua_script_api", |
| 121 | +# "bevy/file_watcher", |
| 122 | +# "bevy/multi_threaded", |
| 123 | +# ] |
| 124 | + |
| 125 | +# [[example]] |
| 126 | +# name = "console_integration_rhai" |
| 127 | +# path = "examples/rhai/console_integration.rs" |
| 128 | +# required-features = [ |
| 129 | +# "rhai", |
| 130 | +# "rhai_script_api", |
| 131 | +# "bevy/file_watcher", |
| 132 | +# "bevy/multi_threaded", |
| 133 | +# ] |
133 | 134 |
|
134 | 135 | [[example]] |
135 | 136 | name = "complex_game_loop_lua" |
|
0 commit comments