File tree Expand file tree Collapse file tree 6 files changed +35
-1
lines changed Expand file tree Collapse file tree 6 files changed +35
-1
lines changed Original file line number Diff line number Diff line change 55 * file, You can obtain one at https://mozilla.org/MPL/2.0/.
66 */
77
8+ //! # Internal crate of [**godot-rust**](https://godot-rust.github.io)
9+ //!
10+ //! Do not depend on this crate directly, instead use the `godot` crate.
11+ //! No SemVer or other guarantees are provided.
12+
813pub ( crate ) mod watch;
914
1015use std:: path:: Path ;
Original file line number Diff line number Diff line change 55 * file, You can obtain one at https://mozilla.org/MPL/2.0/.
66 */
77
8+ //! # Internal crate of [**godot-rust**](https://godot-rust.github.io)
9+ //!
10+ //! Do not depend on this crate directly, instead use the `godot` crate.
11+ //! No SemVer or other guarantees are provided.
12+ //!
13+ //! # Contributor docs
14+ //!
815//! A re-entrant cell implementation which allows for `&mut` references to be reborrowed even while `&mut`
916//! references still exist.
1017//!
Original file line number Diff line number Diff line change 55 * file, You can obtain one at https://mozilla.org/MPL/2.0/.
66 */
77
8+ //! # Internal crate of [**godot-rust**](https://godot-rust.github.io)
9+ //!
10+ //! Do not depend on this crate directly, instead use the `godot` crate.
11+ //! No SemVer or other guarantees are provided.
12+
813// Codegen has no FFI and thus no reason to use unsafe code.
914#![ forbid( unsafe_code) ]
1015
Original file line number Diff line number Diff line change 55 * file, You can obtain one at https://mozilla.org/MPL/2.0/.
66 */
77
8+ //! # Internal crate of [**godot-rust**](https://godot-rust.github.io)
9+ //!
10+ //! Do not depend on this crate directly, instead use the `godot` crate.
11+ //! No SemVer or other guarantees are provided.
12+
813// Note that a lot of those are public, but the godot crate still has the final say on what it wants to re-export.
914// Doing fine-grained visibility restrictions on every level is a useless maintenance chore.
1015pub mod builder;
Original file line number Diff line number Diff line change 55 * file, You can obtain one at https://mozilla.org/MPL/2.0/.
66 */
77
8- //! Low level bindings to the provided C core API
8+ //! # Internal crate of [**godot-rust**](https://godot-rust.github.io)
9+ //!
10+ //! Do not depend on this crate directly, instead use the `godot` crate.
11+ //! No SemVer or other guarantees are provided.
12+ //!
13+ //! # Contributor docs
14+ //!
15+ //! Low level bindings to the provided C core API.
916
1017#![ cfg_attr( test, allow( unused) ) ]
1118
Original file line number Diff line number Diff line change 55 * file, You can obtain one at https://mozilla.org/MPL/2.0/.
66 */
77
8+ //! # Internal crate of [**godot-rust**](https://godot-rust.github.io)
9+ //!
10+ //! Do not depend on this crate directly, instead use the `godot` crate.
11+ //! No SemVer or other guarantees are provided.
12+
813mod bench;
914mod class;
1015mod derive;
You can’t perform that action at this time.
0 commit comments