From 4a53673a3d9f6afbbf17df851b5b389795e1d740 Mon Sep 17 00:00:00 2001 From: Chitose Yuuzaki Date: Sun, 24 Sep 2023 09:43:10 +0000 Subject: [PATCH] Enable the one-class-one-file feature by default for IDEs Improves IDE compatibility by default with minimal impact on build performance. Close #1053 --- gdnative-bindings/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/gdnative-bindings/Cargo.toml b/gdnative-bindings/Cargo.toml index ac47e6b16..b939443a3 100644 --- a/gdnative-bindings/Cargo.toml +++ b/gdnative-bindings/Cargo.toml @@ -12,6 +12,7 @@ edition = "2021" rust-version = "1.67" [features] +default = ["one-class-one-file"] formatted = [] one-class-one-file = [] custom-godot = ["gdnative_bindings_generator/custom-godot"]