Skip to content

Commit 64d46b1

Browse files
committed
fix invalid default feature, and remove short option for subcommand
1 parent cd64883 commit 64d46b1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ path = "src/lib.rs"
2020
features = ["lua54"]
2121

2222
[features]
23-
default = ["core_functions", "bevy_bindings", "unsafe_lua_modules"]
23+
default = ["core_functions", "bevy_bindings"]
2424

2525
## lua
26-
lua = ["bevy_mod_scripting_lua"]
26+
lua = ["bevy_mod_scripting_lua", "unsafe_lua_modules"]
2727
# one of these must be selected
2828
lua51 = ["bevy_mod_scripting_lua/lua51", "lua"]
2929
lua52 = ["bevy_mod_scripting_lua/lua52", "lua"]

crates/xtask/Dockerfile

Whitespace-only changes.

crates/xtask/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ enum Xtasks {
398398
package: Option<String>,
399399

400400
/// Run tests without coverage
401-
#[clap(long, short = "nc")]
401+
#[clap(long)]
402402
no_coverage: bool,
403403
},
404404
/// Perform a full check as it would be done in CI, except not parallelised

0 commit comments

Comments
 (0)