diff --git a/gdnative-core/src/lib.rs b/gdnative-core/src/lib.rs index 593d52f6f..6fa302aea 100644 --- a/gdnative-core/src/lib.rs +++ b/gdnative-core/src/lib.rs @@ -45,7 +45,6 @@ pub mod core_types; #[cfg(feature = "nativescript")] pub mod nativescript; -#[doc(hidden)] pub mod log; pub mod object; diff --git a/gdnative/src/lib.rs b/gdnative/src/lib.rs index 705d4740d..33d74d6ed 100644 --- a/gdnative/src/lib.rs +++ b/gdnative/src/lib.rs @@ -58,7 +58,7 @@ // Items, which are #[doc(hidden)] in their original crate and re-exported with a wildcard, lose // their hidden status. Re-exporting them manually and hiding the wildcard solves this. #[doc(inline)] -pub use gdnative_core::{core_types, nativescript, object}; +pub use gdnative_core::{core_types, log, nativescript, object}; /// Collection of declarative `godot_*` macros, mostly for GDNative registration and output. pub mod macros {