Skip to content

Commit c0409d9

Browse files
committed
Rename godot feature rustfmt -> codegen-rustfmt
1 parent 0dc4ef0 commit c0409d9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/release-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515

1616
env:
1717
# Note: used for test and clippy, not for publish
18-
GDEXT_FEATURES: "--features godot/experimental-godot-api,godot/formatted,godot/serde"
18+
GDEXT_FEATURES: "--features godot/experimental-godot-api,godot/codegen-rustfmt,godot/serde"
1919

2020
# Crates to publish -- important, this doesn't work when there are spaces in any of the paths!
2121
# Keep in sync with update-version.sh

godot/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ double-precision = ["godot-core/double-precision"]
1919
experimental-godot-api = ["godot-core/experimental-godot-api"]
2020
experimental-threads = ["godot-core/experimental-threads"]
2121
experimental-wasm = []
22-
rustfmt = ["godot-core/codegen-rustfmt"]
22+
codegen-rustfmt = ["godot-core/codegen-rustfmt"]
2323
lazy-function-tables = ["godot-core/codegen-lazy-fptrs"]
2424
serde = ["godot-core/serde"]
2525

godot/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102
//! to explicitly opt in to any instabilities or rough edges that may result. Due to a limitation in Godot, it might currently not
103103
//! work Firefox browser.<br><br>
104104
//!
105-
//! * **`rustfmt`**
105+
//! * **`codegen-rustfmt`**
106106
//!
107107
//! Use rustfmt to format generated binding code. Because rustfmt is so slow, this is detrimental to initial compile time.
108108
//! Without it, we use a lightweight and fast custom formatter to enable basic human readability.

0 commit comments

Comments
 (0)