added godot-rs scaffolding

This commit is contained in:
2025-07-16 18:29:50 +02:00
parent 56c4b7452a
commit 85b73ad963
1280 changed files with 434199 additions and 0 deletions

View File

Before

Width:  |  Height:  |  Size: 994 B

After

Width:  |  Height:  |  Size: 994 B

View File

@@ -11,5 +11,6 @@ config_version=5
[application]
config/name="Space Salvage Co"
config/description="a FOSS rogue-like game about salvaging space trash made in godot with godot-rs "
config/features=PackedStringArray("4.4", "Forward Plus")
config/icon="res://icon.svg"

View File

@@ -0,0 +1,14 @@
[configuration]
entry_symbol = "gdext_rust_init"
compatibility_minimum = 4.1
reloadable = true
[libraries]
linux.debug.x86_64 = "res://../rust/target/debug/lib{YourCrate}.so"
linux.release.x86_64 = "res://../rust/target/release/lib{YourCrate}.so"
windows.debug.x86_64 = "res://../rust/target/debug/{YourCrate}.dll"
windows.release.x86_64 = "res://../rust/target/release/{YourCrate}.dll"
macos.debug = "res://../rust/target/debug/lib{YourCrate}.dylib"
macos.release = "res://../rust/target/release/lib{YourCrate}.dylib"
macos.debug.arm64 = "res://../rust/target/debug/lib{YourCrate}.dylib"
macos.release.arm64 = "res://../rust/target/release/lib{YourCrate}.dylib"

385
rust/Cargo.lock generated Normal file
View File

@@ -0,0 +1,385 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "aho-corasick"
version = "1.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
dependencies = [
"memchr",
]
[[package]]
name = "bitflags"
version = "2.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
[[package]]
name = "bumpalo"
version = "3.19.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
[[package]]
name = "cfg-if"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268"
[[package]]
name = "gdextension-api"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2ec0a03c8f9c91e3d8eb7ca56dea81c7248c03826dd3f545f33cd22ef275d4d1"
[[package]]
name = "gensym"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "913dce4c5f06c2ea40fc178c06f777ac89fc6b1383e90c254fafb1abe4ba3c82"
dependencies = [
"proc-macro2",
"quote",
"syn",
"uuid",
]
[[package]]
name = "getrandom"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
dependencies = [
"cfg-if",
"libc",
"r-efi",
"wasi",
]
[[package]]
name = "glam"
version = "0.28.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "779ae4bf7e8421cf91c0b3b64e7e8b40b862fba4d393f59150042de7c4965a94"
[[package]]
name = "godot"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a29a3646d4b02bf4587fedba4ac7b44a47d45c933fd85ba7e61292408818eaa4"
dependencies = [
"godot-core",
"godot-macros",
]
[[package]]
name = "godot-bindings"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a0014540bff93ba275031bc852f1cf9a3ff3216f02cdd51dc249745dccc8c578"
dependencies = [
"gdextension-api",
]
[[package]]
name = "godot-cell"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "88184d525d763ebc88ff6806ffee35e19c7118d5c9e4eedbc74e70e069f8a671"
[[package]]
name = "godot-codegen"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "caa72d9b8be812fef2932f2a172b80c8b3feaee030571682f8f770c3d1c348d8"
dependencies = [
"godot-bindings",
"heck",
"nanoserde",
"proc-macro2",
"quote",
"regex",
]
[[package]]
name = "godot-core"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2ff8345372e4c990ca592d7b61490ef88ff249fc77226f5b79beca173b4a0458"
dependencies = [
"glam",
"godot-bindings",
"godot-cell",
"godot-codegen",
"godot-ffi",
]
[[package]]
name = "godot-ffi"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "606d08085bd590d2f9c72633d4d218fee665ab3a0760b2d9daff2d964d628def"
dependencies = [
"gensym",
"godot-bindings",
"godot-codegen",
"libc",
"paste",
]
[[package]]
name = "godot-macros"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c11b3188e54ebacf88feb4c968ed19048a71a329c4cfd4a06cf374f18357a36"
dependencies = [
"godot-bindings",
"proc-macro2",
"quote",
"venial",
]
[[package]]
name = "heck"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
[[package]]
name = "js-sys"
version = "0.3.77"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
dependencies = [
"once_cell",
"wasm-bindgen",
]
[[package]]
name = "libc"
version = "0.2.174"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
[[package]]
name = "log"
version = "0.4.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
[[package]]
name = "memchr"
version = "2.7.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
[[package]]
name = "nanoserde"
version = "0.1.37"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5de9cf844ab1e25a0353525bd74cb889843a6215fa4a0d156fd446f4857a1b99"
dependencies = [
"nanoserde-derive",
]
[[package]]
name = "nanoserde-derive"
version = "0.1.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e943b2c21337b7e3ec6678500687cdc741b7639ad457f234693352075c082204"
[[package]]
name = "once_cell"
version = "1.21.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
[[package]]
name = "paste"
version = "1.0.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
[[package]]
name = "proc-macro2"
version = "1.0.95"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
dependencies = [
"unicode-ident",
]
[[package]]
name = "quote"
version = "1.0.40"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
dependencies = [
"proc-macro2",
]
[[package]]
name = "r-efi"
version = "5.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
[[package]]
name = "regex"
version = "1.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
dependencies = [
"aho-corasick",
"memchr",
"regex-automata",
"regex-syntax",
]
[[package]]
name = "regex-automata"
version = "0.4.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
]
[[package]]
name = "regex-syntax"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
[[package]]
name = "rust"
version = "0.1.0"
dependencies = [
"godot",
"log",
]
[[package]]
name = "rustversion"
version = "1.0.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d"
[[package]]
name = "syn"
version = "2.0.104"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40"
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
[[package]]
name = "unicode-ident"
version = "1.0.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
[[package]]
name = "uuid"
version = "1.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d"
dependencies = [
"getrandom",
"js-sys",
"wasm-bindgen",
]
[[package]]
name = "venial"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a42528baceab6c7784446df2a10f4185078c39bf73dc614f154353f1a6b1229"
dependencies = [
"proc-macro2",
"quote",
]
[[package]]
name = "wasi"
version = "0.14.2+wasi-0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
dependencies = [
"wit-bindgen-rt",
]
[[package]]
name = "wasm-bindgen"
version = "0.2.100"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
dependencies = [
"cfg-if",
"once_cell",
"rustversion",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
version = "0.2.100"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
dependencies = [
"bumpalo",
"log",
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-macro"
version = "0.2.100"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
version = "0.2.100"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
dependencies = [
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
version = "0.2.100"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
dependencies = [
"unicode-ident",
]
[[package]]
name = "wit-bindgen-rt"
version = "0.39.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
dependencies = [
"bitflags",
]

12
rust/Cargo.toml Normal file
View File

@@ -0,0 +1,12 @@
[package]
name = "rust"
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ["cdylib"]
[dependencies]
godot = "0.2.4"
log = "0.4.27"

6
rust/src/lib.rs Normal file
View File

@@ -0,0 +1,6 @@
use godot::prelude::*;
struct MyExtension;
#[gdextension]
unsafe impl ExtensionLibrary for MyExtension {}

View File

@@ -0,0 +1 @@
{"rustc_fingerprint":14932112049468881071,"outputs":{"15729799797837862367":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.so\nlib___.so\nlib___.a\nlib___.so\n/home/nihil/.rustup/toolchains/stable-x86_64-unknown-linux-gnu\noff\npacked\nunpacked\n___\ndebug_assertions\nfmt_debug=\"full\"\noverflow_checks\npanic=\"unwind\"\nproc_macro\nrelocation_model=\"pic\"\ntarget_abi=\"\"\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"gnu\"\ntarget_family=\"unix\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_has_atomic\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_has_atomic_equal_alignment=\"16\"\ntarget_has_atomic_equal_alignment=\"32\"\ntarget_has_atomic_equal_alignment=\"64\"\ntarget_has_atomic_equal_alignment=\"8\"\ntarget_has_atomic_equal_alignment=\"ptr\"\ntarget_has_atomic_load_store\ntarget_has_atomic_load_store=\"16\"\ntarget_has_atomic_load_store=\"32\"\ntarget_has_atomic_load_store=\"64\"\ntarget_has_atomic_load_store=\"8\"\ntarget_has_atomic_load_store=\"ptr\"\ntarget_os=\"linux\"\ntarget_pointer_width=\"64\"\ntarget_thread_local\ntarget_vendor=\"unknown\"\nub_checks\nunix\n","stderr":""},"14371922958718593042":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.so\nlib___.so\nlib___.a\nlib___.so\n/home/nihil/.rustup/toolchains/stable-x86_64-unknown-linux-gnu\noff\npacked\nunpacked\n___\ndebug_assertions\nfmt_debug=\"full\"\noverflow_checks\npanic=\"unwind\"\nproc_macro\nrelocation_model=\"pic\"\ntarget_abi=\"\"\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"gnu\"\ntarget_family=\"unix\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_has_atomic\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_has_atomic_equal_alignment=\"16\"\ntarget_has_atomic_equal_alignment=\"32\"\ntarget_has_atomic_equal_alignment=\"64\"\ntarget_has_atomic_equal_alignment=\"8\"\ntarget_has_atomic_equal_alignment=\"ptr\"\ntarget_has_atomic_load_store\ntarget_has_atomic_load_store=\"16\"\ntarget_has_atomic_load_store=\"32\"\ntarget_has_atomic_load_store=\"64\"\ntarget_has_atomic_load_store=\"8\"\ntarget_has_atomic_load_store=\"ptr\"\ntarget_os=\"linux\"\ntarget_pointer_width=\"64\"\ntarget_thread_local\ntarget_vendor=\"unknown\"\nub_checks\nunix\n","stderr":""},"4614504638168534921":{"success":true,"status":"","code":0,"stdout":"rustc 1.82.0 (f6e511eec 2024-10-15)\nbinary: rustc\ncommit-hash: f6e511eec7342f59a25f7c0534f1dbea00d01b14\ncommit-date: 2024-10-15\nhost: x86_64-unknown-linux-gnu\nrelease: 1.82.0\nLLVM version: 19.1.1\n","stderr":""}},"successes":{}}

3
rust/target/CACHEDIR.TAG Normal file
View File

@@ -0,0 +1,3 @@
Signature: 8a477f597d28d172789f06886806bc55
# This file is a cache directory tag created by cargo.
# For information about cache directory tags see https://bford.info/cachedir/

View File

View File

@@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@@ -0,0 +1 @@
834c8c30c60751a0

View File

@@ -0,0 +1 @@
{"rustc":2484451964687019519,"features":"[]","declared_features":"[]","target":15728348367772186907,"profile":8861558584828204938,"path":13918362297559787598,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/gdextension-api-6d97f213fc37c877/dep-lib-gdextension_api"}}],"rustflags":[],"metadata":6712965062728249898,"config":2202906307356721367,"compile_kind":0}

View File

@@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@@ -0,0 +1 @@
e01231dad3f68d3f

View File

@@ -0,0 +1 @@
{"rustc":2484451964687019519,"features":"[\"debug-glam-assert\", \"default\", \"std\"]","declared_features":"[\"approx\", \"bytecheck\", \"bytemuck\", \"core-simd\", \"cuda\", \"debug-glam-assert\", \"default\", \"fast-math\", \"glam-assert\", \"libm\", \"mint\", \"rand\", \"rkyv\", \"scalar-math\", \"serde\", \"std\"]","target":14389939500673794328,"profile":1740343547499479105,"path":1488616530229085175,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/glam-0ada94cae2bf25d4/dep-lib-glam"}}],"rustflags":[],"metadata":4763942199903081431,"config":2202906307356721367,"compile_kind":0}

View File

@@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@@ -0,0 +1 @@
5ea8525ba69f3e1a

View File

@@ -0,0 +1 @@
{"rustc":2484451964687019519,"features":"[\"debug-glam-assert\", \"default\", \"std\"]","declared_features":"[\"approx\", \"bytecheck\", \"bytemuck\", \"core-simd\", \"cuda\", \"debug-glam-assert\", \"default\", \"fast-math\", \"glam-assert\", \"libm\", \"mint\", \"rand\", \"rkyv\", \"scalar-math\", \"serde\", \"std\"]","target":14389939500673794328,"profile":16690480377348987070,"path":1488616530229085175,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/glam-79ad7624226140fb/dep-lib-glam"}}],"rustflags":[],"metadata":4763942199903081431,"config":2202906307356721367,"compile_kind":0}

View File

@@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@@ -0,0 +1 @@
6cd92f397d0f9a9b

View File

@@ -0,0 +1 @@
{"rustc":2484451964687019519,"features":"[\"__codegen-full\", \"default\"]","declared_features":"[\"__codegen-full\", \"__debug-log\", \"__trace\", \"api-4-1\", \"api-4-1-1\", \"api-4-1-2\", \"api-4-1-3\", \"api-4-1-4\", \"api-4-2\", \"api-4-2-1\", \"api-4-2-2\", \"api-4-3\", \"api-custom\", \"codegen-rustfmt\", \"custom-godot\", \"default\", \"double-precision\", \"experimental-godot-api\", \"experimental-threads\", \"experimental-wasm\", \"experimental-wasm-nothreads\", \"lazy-function-tables\", \"register-docs\", \"serde\"]","target":11616296856724566144,"profile":16690480377348987070,"path":4354987839519378656,"deps":[[198581089347708283,"godot_macros",false,18017722855704651263],[7961375887037303541,"godot_core",false,8630479561745524687]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/godot-a0e511448ba84fe1/dep-lib-godot"}}],"rustflags":[],"metadata":5629176293227263469,"config":2202906307356721367,"compile_kind":0}

View File

@@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@@ -0,0 +1 @@
ad664b8609c07b7d

View File

@@ -0,0 +1 @@
{"rustc":2484451964687019519,"features":"[\"default\"]","declared_features":"[\"api-4-1\", \"api-4-1-1\", \"api-4-1-2\", \"api-4-1-3\", \"api-4-1-4\", \"api-4-2\", \"api-4-2-1\", \"api-4-2-2\", \"api-4-3\", \"api-custom\", \"api-custom-extheader\", \"default\", \"experimental-wasm-nothreads\"]","target":9106819732827005763,"profile":8861558584828204938,"path":4517914003960976091,"deps":[[6711197758307512991,"build_script_build",false,2423189297194586224],[10274084422347512676,"gdextension_api",false,11552023066981452931]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/godot-bindings-7a1cf85e521cb62a/dep-lib-godot_bindings"}}],"rustflags":[],"metadata":2345819365201139512,"config":2202906307356721367,"compile_kind":0}

View File

@@ -0,0 +1 @@
{"rustc":2484451964687019519,"features":"[\"default\"]","declared_features":"[\"api-4-1\", \"api-4-1-1\", \"api-4-1-2\", \"api-4-1-3\", \"api-4-1-4\", \"api-4-2\", \"api-4-2-1\", \"api-4-2-2\", \"api-4-3\", \"api-custom\", \"api-custom-extheader\", \"default\", \"experimental-wasm-nothreads\"]","target":9652763411108993936,"profile":8861558584828204938,"path":8928764105373414324,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/godot-bindings-8a577aaf2b4a430e/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":2345819365201139512,"config":2202906307356721367,"compile_kind":0}

View File

@@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@@ -0,0 +1 @@
{"rustc":2484451964687019519,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[6711197758307512991,"build_script_build",false,6618476561125672576]],"local":[{"Precalculated":"0.2.4"}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0}

View File

@@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@@ -0,0 +1 @@
41ff5509bc928a46

View File

@@ -0,0 +1 @@
{"rustc":2484451964687019519,"features":"[]","declared_features":"[\"proptest\"]","target":16980799669652290044,"profile":1740343547499479105,"path":974655985332919031,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/godot-cell-3a331c71be885523/dep-lib-godot_cell"}}],"rustflags":[],"metadata":2345819365201139512,"config":2202906307356721367,"compile_kind":0}

View File

@@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@@ -0,0 +1 @@
322b08f631198d12

View File

@@ -0,0 +1 @@
{"rustc":2484451964687019519,"features":"[]","declared_features":"[\"proptest\"]","target":16980799669652290044,"profile":16690480377348987070,"path":974655985332919031,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/godot-cell-c9da65ad3dc1d5ab/dep-lib-godot_cell"}}],"rustflags":[],"metadata":2345819365201139512,"config":2202906307356721367,"compile_kind":0}

View File

@@ -0,0 +1 @@
{"rustc":2484451964687019519,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[9503678362519461980,"build_script_build",false,198415214267721107]],"local":[{"Precalculated":"0.2.4"}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0}

View File

@@ -0,0 +1 @@
{"rustc":2484451964687019519,"features":"[\"codegen-full\", \"default\"]","declared_features":"[\"api-custom\", \"codegen-full\", \"codegen-lazy-fptrs\", \"codegen-rustfmt\", \"default\", \"double-precision\", \"experimental-godot-api\", \"experimental-threads\"]","target":9652763411108993936,"profile":8861558584828204938,"path":4758560970613512908,"deps":[[6711197758307512991,"godot_bindings",false,9042031824016729773]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/godot-codegen-69ab218c83b1b6f5/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":2345819365201139512,"config":2202906307356721367,"compile_kind":0}

View File

@@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@@ -0,0 +1 @@
7d884ba26f424332

View File

@@ -0,0 +1 @@
{"rustc":2484451964687019519,"features":"[\"codegen-full\", \"default\"]","declared_features":"[\"api-custom\", \"codegen-full\", \"codegen-lazy-fptrs\", \"codegen-rustfmt\", \"default\", \"double-precision\", \"experimental-godot-api\", \"experimental-threads\"]","target":1394933086331267133,"profile":8861558584828204938,"path":7223573540221170375,"deps":[[3697356524269865483,"nanoserde",false,12040091363593673160],[6711197758307512991,"godot_bindings",false,9042031824016729773],[9503678362519461980,"build_script_build",false,5408877834097502024],[11641382387439738731,"regex",false,11720186453871079630],[17175234422038868540,"heck",false,1558237066194089951],[17525013869477438691,"quote",false,11834148687594711201],[18036439996138669183,"proc_macro2",false,10657756142504088255]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/godot-codegen-93d6a58f6d17b521/dep-lib-godot_codegen"}}],"rustflags":[],"metadata":2345819365201139512,"config":2202906307356721367,"compile_kind":0}

View File

@@ -0,0 +1 @@
{"rustc":2484451964687019519,"features":"[\"codegen-full\", \"default\"]","declared_features":"[\"api-4-1\", \"api-4-1-1\", \"api-4-1-2\", \"api-4-1-3\", \"api-4-1-4\", \"api-4-2\", \"api-4-2-1\", \"api-4-2-2\", \"api-4-3\", \"api-custom\", \"codegen-full\", \"codegen-lazy-fptrs\", \"codegen-rustfmt\", \"debug-log\", \"default\", \"double-precision\", \"experimental-godot-api\", \"experimental-threads\", \"experimental-wasm-nothreads\", \"register-docs\", \"serde\", \"trace\"]","target":9652763411108993936,"profile":8861558584828204938,"path":8853567310584147142,"deps":[[6711197758307512991,"godot_bindings",false,9042031824016729773],[9503678362519461980,"godot_codegen",false,3621811572567672957]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/godot-core-266e8b4c54477ed9/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":2345819365201139512,"config":2202906307356721367,"compile_kind":0}

View File

@@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@@ -0,0 +1 @@
{"rustc":2484451964687019519,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[7961375887037303541,"build_script_build",false,9368728136468989323]],"local":[{"RerunIfChanged":{"output":"debug/build/godot-core-3092dfa1ccdfdc52/output","paths":["build.rs"]}}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0}

View File

@@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@@ -0,0 +1 @@
cf671c676f9fc577

View File

@@ -0,0 +1 @@
{"rustc":2484451964687019519,"features":"[\"codegen-full\", \"default\"]","declared_features":"[\"api-4-1\", \"api-4-1-1\", \"api-4-1-2\", \"api-4-1-3\", \"api-4-1-4\", \"api-4-2\", \"api-4-2-1\", \"api-4-2-2\", \"api-4-3\", \"api-custom\", \"codegen-full\", \"codegen-lazy-fptrs\", \"codegen-rustfmt\", \"debug-log\", \"default\", \"double-precision\", \"experimental-godot-api\", \"experimental-threads\", \"experimental-wasm-nothreads\", \"register-docs\", \"serde\", \"trace\"]","target":13188520170328009108,"profile":16690480377348987070,"path":14004973714653655101,"deps":[[1427216893345610850,"glam",false,1891124430387718238],[7961375887037303541,"build_script_build",false,3501190305754653194],[8595155741976782012,"godot_cell",false,1336752366770727730],[15017043970713726718,"godot_ffi",false,7785242455882728308]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/godot-core-4f46dd1b0f50e4c4/dep-lib-godot_core"}}],"rustflags":[],"metadata":2345819365201139512,"config":2202906307356721367,"compile_kind":0}

View File

@@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@@ -0,0 +1 @@
ee6afe67578c6f6e

View File

@@ -0,0 +1 @@
{"rustc":2484451964687019519,"features":"[\"codegen-full\", \"default\"]","declared_features":"[\"api-4-1\", \"api-4-1-1\", \"api-4-1-2\", \"api-4-1-3\", \"api-4-1-4\", \"api-4-2\", \"api-4-2-1\", \"api-4-2-2\", \"api-4-3\", \"api-custom\", \"codegen-full\", \"codegen-lazy-fptrs\", \"codegen-rustfmt\", \"debug-log\", \"default\", \"double-precision\", \"experimental-godot-api\", \"experimental-threads\", \"experimental-wasm-nothreads\", \"register-docs\", \"serde\", \"trace\"]","target":13188520170328009108,"profile":1740343547499479105,"path":14004973714653655101,"deps":[[1427216893345610850,"glam",false,4579587785864844000],[7961375887037303541,"build_script_build",false,3501190305754653194],[8595155741976782012,"godot_cell",false,5083036465749163841],[15017043970713726718,"godot_ffi",false,15801834272292269452]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/godot-core-9212a4a3dfa7b92a/dep-lib-godot_core"}}],"rustflags":[],"metadata":2345819365201139512,"config":2202906307356721367,"compile_kind":0}

View File

@@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@@ -0,0 +1 @@
b02fe44e311742e4

View File

@@ -0,0 +1 @@
{"rustc":2484451964687019519,"features":"[\"__codegen-full\", \"default\"]","declared_features":"[\"__codegen-full\", \"__debug-log\", \"__trace\", \"api-4-1\", \"api-4-1-1\", \"api-4-1-2\", \"api-4-1-3\", \"api-4-1-4\", \"api-4-2\", \"api-4-2-1\", \"api-4-2-2\", \"api-4-3\", \"api-custom\", \"codegen-rustfmt\", \"custom-godot\", \"default\", \"double-precision\", \"experimental-godot-api\", \"experimental-threads\", \"experimental-wasm\", \"experimental-wasm-nothreads\", \"lazy-function-tables\", \"register-docs\", \"serde\"]","target":11616296856724566144,"profile":1740343547499479105,"path":4354987839519378656,"deps":[[198581089347708283,"godot_macros",false,18017722855704651263],[7961375887037303541,"godot_core",false,7957733373621725934]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/godot-fe81bc77f1823c17/dep-lib-godot"}}],"rustflags":[],"metadata":5629176293227263469,"config":2202906307356721367,"compile_kind":0}

View File

@@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@@ -0,0 +1 @@
74032e01c4bc0a6c

View File

@@ -0,0 +1 @@
{"rustc":2484451964687019519,"features":"[]","declared_features":"[\"api-4-1\", \"api-4-1-1\", \"api-4-1-2\", \"api-4-1-3\", \"api-4-1-4\", \"api-4-2\", \"api-4-2-1\", \"api-4-2-2\", \"api-4-3\", \"api-custom\", \"codegen-lazy-fptrs\", \"codegen-rustfmt\", \"debug-log\", \"experimental-godot-api\", \"experimental-threads\", \"experimental-wasm-nothreads\"]","target":17855864511133728455,"profile":16690480377348987070,"path":5127369342376256753,"deps":[[3767752438495319636,"paste",false,15636734392423563385],[12833142538252791333,"libc",false,3777224971784433498],[15017043970713726718,"build_script_build",false,128953092745259154]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/godot-ffi-0039a2694e6fdab6/dep-lib-godot_ffi"}}],"rustflags":[],"metadata":2345819365201139512,"config":2202906307356721367,"compile_kind":0}

View File

@@ -0,0 +1 @@
{"rustc":2484451964687019519,"features":"[]","declared_features":"[\"api-4-1\", \"api-4-1-1\", \"api-4-1-2\", \"api-4-1-3\", \"api-4-1-4\", \"api-4-2\", \"api-4-2-1\", \"api-4-2-2\", \"api-4-3\", \"api-custom\", \"codegen-lazy-fptrs\", \"codegen-rustfmt\", \"debug-log\", \"experimental-godot-api\", \"experimental-threads\", \"experimental-wasm-nothreads\"]","target":9652763411108993936,"profile":8861558584828204938,"path":6613953423797557929,"deps":[[6711197758307512991,"godot_bindings",false,9042031824016729773],[9503678362519461980,"godot_codegen",false,3621811572567672957]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/godot-ffi-984abbe9fe493578/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":2345819365201139512,"config":2202906307356721367,"compile_kind":0}

View File

@@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@@ -0,0 +1 @@
8ced92878c644bdb

View File

@@ -0,0 +1 @@
{"rustc":2484451964687019519,"features":"[]","declared_features":"[\"api-4-1\", \"api-4-1-1\", \"api-4-1-2\", \"api-4-1-3\", \"api-4-1-4\", \"api-4-2\", \"api-4-2-1\", \"api-4-2-2\", \"api-4-3\", \"api-custom\", \"codegen-lazy-fptrs\", \"codegen-rustfmt\", \"debug-log\", \"experimental-godot-api\", \"experimental-threads\", \"experimental-wasm-nothreads\"]","target":17855864511133728455,"profile":1740343547499479105,"path":5127369342376256753,"deps":[[3767752438495319636,"paste",false,15636734392423563385],[12833142538252791333,"libc",false,6969998901882127031],[15017043970713726718,"build_script_build",false,128953092745259154]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/godot-ffi-a278853389ba125a/dep-lib-godot_ffi"}}],"rustflags":[],"metadata":2345819365201139512,"config":2202906307356721367,"compile_kind":0}

View File

@@ -0,0 +1 @@
{"rustc":2484451964687019519,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[15017043970713726718,"build_script_build",false,10364125491854687799]],"local":[{"RerunIfChanged":{"output":"debug/build/godot-ffi-db0769e2cb0ad93f/output","paths":["build.rs"]}}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0}

View File

@@ -0,0 +1 @@
{"rustc":2484451964687019519,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[198581089347708283,"build_script_build",false,12607852980036780138]],"local":[{"Precalculated":"0.2.4"}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0}

View File

@@ -0,0 +1 @@
{"rustc":2484451964687019519,"features":"[\"codegen-full\"]","declared_features":"[\"api-custom\", \"codegen-full\", \"register-docs\"]","target":9652763411108993936,"profile":8861558584828204938,"path":8793510882580266761,"deps":[[6711197758307512991,"godot_bindings",false,9042031824016729773]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/godot-macros-81fdc89f926f6e52/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":2345819365201139512,"config":2202906307356721367,"compile_kind":0}

View File

@@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@@ -0,0 +1 @@
ff65b6ab79cf0bfa

View File

@@ -0,0 +1 @@
{"rustc":2484451964687019519,"features":"[\"codegen-full\"]","declared_features":"[\"api-custom\", \"codegen-full\", \"register-docs\"]","target":14734625520715826235,"profile":8861558584828204938,"path":17812049066069586807,"deps":[[198581089347708283,"build_script_build",false,2653188411307599888],[5363755331021344454,"venial",false,8341214709645987434],[17525013869477438691,"quote",false,11834148687594711201],[18036439996138669183,"proc_macro2",false,10657756142504088255]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/godot-macros-ba8d2ddf9b521fad/dep-lib-godot_macros"}}],"rustflags":[],"metadata":2345819365201139512,"config":2202906307356721367,"compile_kind":0}

View File

@@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@@ -0,0 +1 @@
df7758165bf89f15

Some files were not shown because too many files have changed in this diff Show More