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 5
5
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
6
6
*/
7
7
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
+
8
13
pub ( crate ) mod watch;
9
14
10
15
use std:: path:: Path ;
Original file line number Diff line number Diff line change 5
5
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
6
6
*/
7
7
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
+ //!
8
15
//! A re-entrant cell implementation which allows for `&mut` references to be reborrowed even while `&mut`
9
16
//! references still exist.
10
17
//!
Original file line number Diff line number Diff line change 5
5
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
6
6
*/
7
7
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
+
8
13
// Codegen has no FFI and thus no reason to use unsafe code.
9
14
#![ forbid( unsafe_code) ]
10
15
Original file line number Diff line number Diff line change 5
5
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
6
6
*/
7
7
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
+
8
13
// Note that a lot of those are public, but the godot crate still has the final say on what it wants to re-export.
9
14
// Doing fine-grained visibility restrictions on every level is a useless maintenance chore.
10
15
pub mod builder;
Original file line number Diff line number Diff line change 5
5
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
6
6
*/
7
7
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.
9
16
10
17
#![ cfg_attr( test, allow( unused) ) ]
11
18
Original file line number Diff line number Diff line change 5
5
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
6
6
*/
7
7
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
+
8
13
mod bench;
9
14
mod class;
10
15
mod derive;
You can’t perform that action at this time.
0 commit comments