1
0
Fork 0
mirror of https://git.kittycat.homes/zoe/codename-routes.git synced 2024-08-15 03:18:26 +00:00

add godot project

This commit is contained in:
zoe 2022-04-30 18:55:43 +02:00
parent 6775181c50
commit 7a9d615060
1235 changed files with 66514 additions and 2 deletions
.gitignorebuild-native.sh
godot
routes-native
Cargo.lockCargo.toml
target
.rustc_info.jsonCACHEDIR.TAG
debug
.cargo-lock
.fingerprint
ahash-2630453b3f603189
ahash-5d75827d94097274
ahash-b111d3fc12043faf
approx-5b9adb66bad6d7ff
atomic-take-264457d052c452bf
autocfg-b903f59dba3dcf2d
bindgen-a82b7164fd7a96be
bindgen-c95165fdd5ab5ba4
bindgen-d542835680653226
bitflags-f1ca410388ec357f
cexpr-3c7f2496da519778
cfg-if-56df745b5175507b
clang-sys-04bab8b41c45d4bd
clang-sys-2921c5f9ffc77902
clang-sys-71ba9f2712f8120b
gdnative-69cdde9aa1d12064
gdnative-bindings-7e92d76d00476c11
gdnative-bindings-abc16d61e7a6b17c
gdnative-bindings-ed60e0e92351b409
gdnative-core-ca0a9f458df9cccb
gdnative-derive-6ef15b933928716b
gdnative-impl-proc-macros-7cbc5ed0cafd992b
gdnative-sys-54500d97c6dd7402
gdnative-sys-d4d6f7846d434b05

4
.gitignore vendored
View file

@ -1,2 +1,2 @@
/target
/Cargo.lock
/routes-native/target
/routes-native/Cargo.lock

7
build-native.sh Executable file
View file

@ -0,0 +1,7 @@
#!/usr/bin/bash
cd "./routes-native"
cargo build --release
cd "../"
cp "./routes-native/target/release/libroutes_native.so" "./godot/native/" -i

1
godot/.import/.gdignore Normal file
View file

@ -0,0 +1 @@

View file

@ -0,0 +1,3 @@
source_md5="47313fa4c47a9963fddd764e1ec6e4a8"
dest_md5="26ea799ea0a3da9e753b3ebe822e0570"

5
godot/default_env.tres Normal file
View file

@ -0,0 +1,5 @@
[gd_resource type="Environment" load_steps=2 format=2]
[sub_resource type="ProceduralSky" id=1]
[resource]
background_mode = 2
background_sky = SubResource( 1 )

BIN
godot/icon.png Normal file

Binary file not shown.

After

(image error) Size: 3.2 KiB

35
godot/icon.png.import Normal file
View file

@ -0,0 +1,35 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://icon.png"
dest_files=[ "res://.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=true
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
process/normal_map_invert_y=false
stream=false
size_limit=0
detect_3d=true
svg/scale=1.0

BIN
godot/native/libroutes_native.so Executable file

Binary file not shown.

22
godot/project.godot Normal file
View file

@ -0,0 +1,22 @@
; Engine configuration file.
; It's best edited using the editor UI and not directly,
; since the parameters that go here are not all obvious.
;
; Format:
; [section] ; section goes between []
; param=value ; assign values to parameters
config_version=4
[application]
config/name="routes"
config/icon="res://icon.png"
[physics]
common/enable_pause_aware_picking=true
[rendering]
environment/default_environment="res://default_env.tres"

559
routes-native/Cargo.lock generated Normal file
View file

@ -0,0 +1,559 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "ahash"
version = "0.7.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
dependencies = [
"getrandom",
"once_cell",
"version_check",
]
[[package]]
name = "approx"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
dependencies = [
"num-traits",
]
[[package]]
name = "atomic-take"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f9f65e4fb35ff6a80b3298d1f028649f3a23da141fa3951e9b24dde1d515b67e"
[[package]]
name = "autocfg"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
[[package]]
name = "bindgen"
version = "0.59.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2bd2a9a458e8f4304c52c43ebb0cfbd520289f8379a52e329a38afda99bf8eb8"
dependencies = [
"bitflags",
"cexpr",
"clang-sys",
"lazy_static",
"lazycell",
"peeking_take_while",
"proc-macro2",
"quote",
"regex",
"rustc-hash",
"shlex",
]
[[package]]
name = "bitflags"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
[[package]]
name = "cexpr"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
dependencies = [
"nom",
]
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "clang-sys"
version = "1.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4cc00842eed744b858222c4c9faf7243aafc6d33f92f96935263ef4d8a41ce21"
dependencies = [
"glob",
"libc",
"libloading",
]
[[package]]
name = "gdnative"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "629bee0adcf738df35857b2138d19fc06c08dda52dc436f174d706598014a75f"
dependencies = [
"gdnative-bindings",
"gdnative-core",
"gdnative-derive",
]
[[package]]
name = "gdnative-bindings"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3b64c284f6fb4e9773ac36be7a20b942562d142979703568fedf4b04a65f6991"
dependencies = [
"bitflags",
"gdnative-core",
"gdnative-sys",
"gdnative_bindings_generator",
"libc",
]
[[package]]
name = "gdnative-core"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ab96ca7f3484ee0c36518237ba79165c7ca5dc8c9922722e55a9d71f50dce1e5"
dependencies = [
"ahash",
"approx",
"atomic-take",
"bitflags",
"gdnative-impl-proc-macros",
"gdnative-sys",
"glam",
"indexmap",
"libc",
"once_cell",
"parking_lot",
]
[[package]]
name = "gdnative-derive"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f1d2921c7d2ecb418346761766f441b190a3293327228a1cd8491a1ff60a973"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "gdnative-impl-proc-macros"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b3fd167778dd006489c1995c24429ecee16b8ebe53a5e2b76a6796a5ff697e2c"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "gdnative-sys"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "813a974fadc7287d4afc6ea3caeba123ebdd9292e672d8886fd7542329f01ade"
dependencies = [
"bindgen",
"libc",
"miniserde",
"proc-macro2",
"quote",
"semver",
]
[[package]]
name = "gdnative_bindings_generator"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b0a0ebb63923612b59efe96d76b26053a3124e42ddb329028eecedc1ceb792be"
dependencies = [
"heck",
"memchr",
"miniserde",
"proc-macro2",
"quote",
"regex",
"roxmltree",
"syn",
"unindent",
]
[[package]]
name = "getrandom"
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9be70c98951c83b8d2f8f60d7065fa6d5146873094452a1008da8c2f1e4205ad"
dependencies = [
"cfg-if",
"libc",
"wasi",
]
[[package]]
name = "glam"
version = "0.20.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f43e957e744be03f5801a55472f593d43fabdebf25a4585db250f04d86b1675f"
[[package]]
name = "glob"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
[[package]]
name = "hashbrown"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
[[package]]
name = "heck"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
[[package]]
name = "indexmap"
version = "1.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0f647032dfaa1f8b6dc29bd3edb7bbef4861b8b8007ebb118d6db284fd59f6ee"
dependencies = [
"autocfg",
"hashbrown",
]
[[package]]
name = "itoa"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1aab8fc367588b89dcee83ab0fd66b72b50b72fa1904d7095045ace2b0c81c35"
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[[package]]
name = "lazycell"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
[[package]]
name = "libc"
version = "0.2.125"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5916d2ae698f6de9bfb891ad7a8d65c09d232dc58cc4ac433c7da3b2fd84bc2b"
[[package]]
name = "libloading"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "efbc0f03f9a775e9f6aed295c6a1ba2253c5757a9e03d55c6caa46a681abcddd"
dependencies = [
"cfg-if",
"winapi",
]
[[package]]
name = "lock_api"
version = "0.4.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "327fa5b6a6940e4699ec49a9beae1ea4845c6bab9314e4f84ac68742139d8c53"
dependencies = [
"autocfg",
"scopeguard",
]
[[package]]
name = "memchr"
version = "2.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a"
[[package]]
name = "mini-internal"
version = "0.1.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "60bbf2d78a45808eba478a0660f050bbce70dafc011e275cf00f6f8500a8be88"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "minimal-lexical"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
[[package]]
name = "miniserde"
version = "0.1.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a89fcaf0064d3361240ae91a1f773d874302a62b4e6fdbd37b2888cb7d5aba3e"
dependencies = [
"itoa",
"mini-internal",
"ryu",
]
[[package]]
name = "nom"
version = "7.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36"
dependencies = [
"memchr",
"minimal-lexical",
]
[[package]]
name = "num-traits"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
dependencies = [
"autocfg",
]
[[package]]
name = "once_cell"
version = "1.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87f3e037eac156d1775da914196f0f37741a274155e34a0b7e427c35d2a2ecb9"
[[package]]
name = "parking_lot"
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87f5ec2493a61ac0506c0f4199f99070cbe83857b0337006a30f3e6719b8ef58"
dependencies = [
"lock_api",
"parking_lot_core",
]
[[package]]
name = "parking_lot_core"
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09a279cbf25cb0757810394fbc1e359949b59e348145c643a939a525692e6929"
dependencies = [
"cfg-if",
"libc",
"redox_syscall",
"smallvec",
"windows-sys",
]
[[package]]
name = "peeking_take_while"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
[[package]]
name = "proc-macro2"
version = "1.0.37"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec757218438d5fda206afc041538b2f6d889286160d649a86a24d37e1235afd1"
dependencies = [
"unicode-xid",
]
[[package]]
name = "quote"
version = "1.0.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1feb54ed693b93a84e14094943b84b7c4eae204c512b7ccb95ab0c66d278ad1"
dependencies = [
"proc-macro2",
]
[[package]]
name = "redox_syscall"
version = "0.2.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62f25bc4c7e55e0b0b7a1d43fb893f4fa1361d0abe38b9ce4f323c2adfe6ef42"
dependencies = [
"bitflags",
]
[[package]]
name = "regex"
version = "1.5.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a11647b6b25ff05a515cb92c365cec08801e83423a235b51e231e1808747286"
dependencies = [
"regex-syntax",
]
[[package]]
name = "regex-syntax"
version = "0.6.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
[[package]]
name = "routes-native"
version = "0.1.0"
dependencies = [
"gdnative",
]
[[package]]
name = "roxmltree"
version = "0.14.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "921904a62e410e37e215c40381b7117f830d9d89ba60ab5236170541dd25646b"
dependencies = [
"xmlparser",
]
[[package]]
name = "rustc-hash"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
[[package]]
name = "ryu"
version = "1.0.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73b4b750c782965c211b42f022f59af1fbceabdd026623714f104152f1ec149f"
[[package]]
name = "scopeguard"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
[[package]]
name = "semver"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d65bd28f48be7196d222d95b9243287f48d27aca604e08497513019ff0502cc4"
[[package]]
name = "shlex"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3"
[[package]]
name = "smallvec"
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f2dd574626839106c320a323308629dcb1acfc96e32a8cba364ddc61ac23ee83"
[[package]]
name = "syn"
version = "1.0.92"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ff7c592601f11445996a06f8ad0c27f094a58857c2f89e97974ab9235b92c52"
dependencies = [
"proc-macro2",
"quote",
"unicode-xid",
]
[[package]]
name = "unicode-xid"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
[[package]]
name = "unindent"
version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "514672a55d7380da379785a4d70ca8386c8883ff7eaae877be4d2081cebe73d8"
[[package]]
name = "version_check"
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
[[package]]
name = "wasi"
version = "0.10.2+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"
[[package]]
name = "winapi"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
dependencies = [
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
[[package]]
name = "windows-sys"
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
dependencies = [
"windows_aarch64_msvc",
"windows_i686_gnu",
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_msvc",
]
[[package]]
name = "windows_aarch64_msvc"
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
[[package]]
name = "windows_i686_gnu"
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
[[package]]
name = "windows_i686_msvc"
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
[[package]]
name = "windows_x86_64_gnu"
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
[[package]]
name = "windows_x86_64_msvc"
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
[[package]]
name = "xmlparser"
version = "0.13.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "114ba2b24d2167ef6d67d7d04c8cc86522b87f490025f39f0303b7db5bf5e3d8"

View file

@ -5,4 +5,8 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["cdylib"]
[dependencies]
gdnative = "0.10"

View file

@ -0,0 +1 @@
{"rustc_fingerprint":13256077329193398778,"outputs":{"17598535894874457435":{"success":true,"status":"","code":0,"stdout":"rustc 1.60.0 (7737e0b5c 2022-04-04)\nbinary: rustc\ncommit-hash: 7737e0b5c4103216d6fd8cf941b7ab9bdbaace7c\ncommit-date: 2022-04-04\nhost: x86_64-unknown-linux-gnu\nrelease: 1.60.0\nLLVM version: 14.0.0\n","stderr":""},"5309432699494263626":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.so\nlib___.so\nlib___.a\nlib___.so\n","stderr":""},"2797684049618456168":{"success":false,"status":"exit status: 1","code":1,"stdout":"","stderr":"error: `-Csplit-debuginfo` is unstable on this platform\n\n"},"931469667778813386":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.so\nlib___.so\nlib___.a\nlib___.so\n/home/zoe/.rustup/toolchains/stable-x86_64-unknown-linux-gnu\ndebug_assertions\npanic=\"unwind\"\nproc_macro\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=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_os=\"linux\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"unknown\"\nunix\n","stderr":""}},"successes":{}}

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 @@
{"rustc":6064785002308032717,"features":"","target":0,"profile":0,"path":0,"deps":[[6564554279330852038,"build_script_build",false,14084001663636551174]],"local":[{"RerunIfChanged":{"output":"debug/build/ahash-2630453b3f603189/output","paths":["build.rs"]}}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0}

View file

@ -0,0 +1 @@
{"rustc":6064785002308032717,"features":"[\"default\", \"std\"]","target":13294766831966498538,"profile":12637318739757120569,"path":4023298576778330176,"deps":[[16079472387499994964,"version_check",false,10051556008059648599]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/ahash-5d75827d94097274/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":6548036084630991988,"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 @@
262a70f2fcc28faa

View file

@ -0,0 +1 @@
{"rustc":6064785002308032717,"features":"[\"default\", \"std\"]","target":17564961922320999190,"profile":12637318739757120569,"path":4419051203216952884,"deps":[[6564554279330852038,"build_script_build",false,12392618978299541551],[7302727332017343960,"once_cell",false,8961730798078168495],[9767896882406009942,"getrandom",false,18261597655996986773]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/ahash-b111d3fc12043faf/dep-lib-ahash"}}],"rustflags":[],"metadata":6548036084630991988,"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 @@
f54814753204cf50

View file

@ -0,0 +1 @@
{"rustc":6064785002308032717,"features":"[\"default\", \"std\"]","target":2980193658766147291,"profile":12637318739757120569,"path":7648408881417145631,"deps":[[3889717946063921280,"num_traits",false,572348154869696019]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/approx-5b9adb66bad6d7ff/dep-lib-approx"}}],"rustflags":[],"metadata":863325941844274782,"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 @@
0a22c334a20af753

View file

@ -0,0 +1 @@
{"rustc":6064785002308032717,"features":"[]","target":8200556832765282028,"profile":12637318739757120569,"path":14391058966067902208,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/atomic-take-264457d052c452bf/dep-lib-atomic-take"}}],"rustflags":[],"metadata":17299345262636651292,"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 @@
460ba4be6cb32ded

View file

@ -0,0 +1 @@
{"rustc":6064785002308032717,"features":"[]","target":10236397793970852656,"profile":12637318739757120569,"path":1409463810854821739,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/autocfg-b903f59dba3dcf2d/dep-lib-autocfg"}}],"rustflags":[],"metadata":13102859075309379048,"config":2202906307356721367,"compile_kind":0}

View file

@ -0,0 +1 @@
{"rustc":6064785002308032717,"features":"","target":0,"profile":0,"path":0,"deps":[[3655076474373965230,"build_script_build",false,12792807099017575916],[3581024382420903141,"build_script_build",false,13714927900957642761]],"local":[{"RerunIfEnvChanged":{"var":"LLVM_CONFIG_PATH","val":null}},{"RerunIfEnvChanged":{"var":"LIBCLANG_PATH","val":null}},{"RerunIfEnvChanged":{"var":"LIBCLANG_STATIC_PATH","val":null}},{"RerunIfEnvChanged":{"var":"BINDGEN_EXTRA_CLANG_ARGS","val":null}},{"RerunIfEnvChanged":{"var":"BINDGEN_EXTRA_CLANG_ARGS_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"BINDGEN_EXTRA_CLANG_ARGS_x86_64_unknown_linux_gnu","val":null}}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0}

View file

@ -0,0 +1 @@
{"rustc":6064785002308032717,"features":"[\"runtime\"]","target":13294766831966498538,"profile":12637318739757120569,"path":9485022569353282020,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/bindgen-c95165fdd5ab5ba4/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":12047033523087941064,"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 @@
a56b6867adb571e9

View file

@ -0,0 +1 @@
{"rustc":6064785002308032717,"features":"[\"runtime\"]","target":7224839871425721104,"profile":12637318739757120569,"path":2834995441779849689,"deps":[[1098045598771442027,"rustc_hash",false,17678278838470898185],[3581024382420903141,"clang_sys",false,16370020922836219018],[3655076474373965230,"build_script_build",false,13577601397115814069],[6685014296130524576,"lazy_static",false,3425666009972784596],[7386227322185763782,"proc_macro2",false,7454357900268587315],[7725987725645960022,"shlex",false,4780976730268615151],[9753392182303062405,"regex",false,1636036508895253889],[9919038314455684856,"cexpr",false,10072395942535834114],[12636925991761420976,"peeking_take_while",false,11812152855528677267],[13094229560132741661,"quote",false,8056921881826523452],[14051957667571541382,"bitflags",false,6875899849814503760],[17982777832778715688,"lazycell",false,9025074344645006762]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/bindgen-d542835680653226/dep-lib-bindgen"}}],"rustflags":[],"metadata":12047033523087941064,"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 @@
50f15abb7b1a6c5f

View file

@ -0,0 +1 @@
{"rustc":6064785002308032717,"features":"[\"default\"]","target":7112745982619283648,"profile":12637318739757120569,"path":4991671955075395840,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/bitflags-f1ca410388ec357f/dep-lib-bitflags"}}],"rustflags":[],"metadata":14564035643000669268,"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 @@
022aef6fbe56c88b

View file

@ -0,0 +1 @@
{"rustc":6064785002308032717,"features":"[]","target":7187792687348689354,"profile":12637318739757120569,"path":15795481279918816493,"deps":[[5771837383577606813,"nom",false,13981079451694841946]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cexpr-3c7f2496da519778/dep-lib-cexpr"}}],"rustflags":[],"metadata":10749519017815238760,"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 @@
0d0bc30d28373449

View file

@ -0,0 +1 @@
{"rustc":6064785002308032717,"features":"[]","target":10094334937643343087,"profile":12637318739757120569,"path":11667330631113131709,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cfg-if-56df745b5175507b/dep-lib-cfg-if"}}],"rustflags":[],"metadata":8462187951337715540,"config":2202906307356721367,"compile_kind":0}

View file

@ -0,0 +1 @@
{"rustc":6064785002308032717,"features":"[\"clang_3_5\", \"clang_3_6\", \"clang_3_7\", \"clang_3_8\", \"clang_3_9\", \"clang_4_0\", \"clang_5_0\", \"clang_6_0\", \"libloading\", \"runtime\"]","target":2709041430195671023,"profile":12637318739757120569,"path":4031834175187874166,"deps":[[9129200827725628554,"glob",false,9004737807482082527]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/clang-sys-04bab8b41c45d4bd/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":16670924540240920614,"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":6064785002308032717,"features":"","target":0,"profile":0,"path":0,"deps":[[3581024382420903141,"build_script_build",false,12738726360456510042]],"local":[{"Precalculated":"1.3.1"}],"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 @@
8a745d174cff2de3

View file

@ -0,0 +1 @@
{"rustc":6064785002308032717,"features":"[\"clang_3_5\", \"clang_3_6\", \"clang_3_7\", \"clang_3_8\", \"clang_3_9\", \"clang_4_0\", \"clang_5_0\", \"clang_6_0\", \"libloading\", \"runtime\"]","target":12710154409850582712,"profile":12637318739757120569,"path":3359982353918832115,"deps":[[3581024382420903141,"build_script_build",false,13714927900957642761],[5071438224780403860,"libc",false,2331829189172081134],[9129200827725628554,"glob",false,9004737807482082527],[10926091475141088729,"libloading",false,14719123704717178419]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/clang-sys-71ba9f2712f8120b/dep-lib-clang-sys"}}],"rustflags":[],"metadata":16670924540240920614,"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 @@
e3e9e8472d035926

View file

@ -0,0 +1 @@
{"rustc":6064785002308032717,"features":"[\"default\"]","target":5819875451147594530,"profile":12637318739757120569,"path":969867229298234732,"deps":[[577249407559305256,"gdnative_bindings",false,11042358186541744335],[7421961324888187689,"gdnative_core",false,3497753983232169619],[13694630300747789612,"gdnative_derive",false,6918519728723433214]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/gdnative-69cdde9aa1d12064/dep-lib-gdnative"}}],"rustflags":[],"metadata":10376247421246212444,"config":2202906307356721367,"compile_kind":0}

View file

@ -0,0 +1 @@
{"rustc":6064785002308032717,"features":"[]","target":1559088092588622537,"profile":12637318739757120569,"path":12392982487484771885,"deps":[[16215953064351730951,"gdnative_bindings_generator",false,14461477102587533485]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/gdnative-bindings-7e92d76d00476c11/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":16281680329341247518,"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 @@
{"rustc":6064785002308032717,"features":"[]","target":7775780637324613336,"profile":12637318739757120569,"path":4535400350702291915,"deps":[[536886099498584783,"gdnative_sys",false,12128898302916054785],[577249407559305256,"build_script_build",false,4543478511536443328],[5071438224780403860,"libc",false,2097896562174691182],[7421961324888187689,"gdnative_core",false,3497753983232169619],[14051957667571541382,"bitflags",false,6875899849814503760]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/gdnative-bindings-abc16d61e7a6b17c/dep-lib-gdnative-bindings"}}],"rustflags":[],"metadata":16281680329341247518,"config":2202906307356721367,"compile_kind":0}

View file

@ -0,0 +1 @@
{"rustc":6064785002308032717,"features":"","target":0,"profile":0,"path":0,"deps":[[577249407559305256,"build_script_build",false,1648779009843961009]],"local":[{"RerunIfChanged":{"output":"debug/build/gdnative-bindings-ed60e0e92351b409/output","paths":["build.rs","docs/","api.json"]}}],"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 @@
{"rustc":6064785002308032717,"features":"[\"default\"]","target":5668341410035141585,"profile":12637318739757120569,"path":16778619348735121054,"deps":[[536886099498584783,"gdnative_sys",false,12128898302916054785],[2864359239492897762,"glam",false,7304967770287449147],[5071438224780403860,"libc",false,2097896562174691182],[6564554279330852038,"ahash",false,12290256299772357158],[6627098484702760421,"parking_lot",false,5372317777888618993],[7302727332017343960,"once_cell",false,8961730798078168495],[11995297841706435829,"indexmap",false,13633050443005399464],[14051957667571541382,"bitflags",false,6875899849814503760],[14237089126401807785,"atomic_take",false,6050316316181733898],[16162457231963610897,"approx",false,5822877457972480245],[17516828853467214551,"gdnative_impl_proc_macros",false,11593222290181788703]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/gdnative-core-ca0a9f458df9cccb/dep-lib-gdnative-core"}}],"rustflags":[],"metadata":880730059408193285,"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":6064785002308032717,"features":"[]","target":5267663726408350433,"profile":12637318739757120569,"path":11319225634948163645,"deps":[[7386227322185763782,"proc_macro2",false,7454357900268587315],[13094229560132741661,"quote",false,8056921881826523452],[13934974258080046961,"syn",false,10795890689992436143]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/gdnative-derive-6ef15b933928716b/dep-lib-gdnative-derive"}}],"rustflags":[],"metadata":12422137774791981303,"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":6064785002308032717,"features":"[]","target":9000055156009002917,"profile":12637318739757120569,"path":15462431045382844870,"deps":[[7386227322185763782,"proc_macro2",false,7454357900268587315],[13094229560132741661,"quote",false,8056921881826523452],[13934974258080046961,"syn",false,10795890689992436143]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/gdnative-impl-proc-macros-7cbc5ed0cafd992b/dep-lib-gdnative-impl-proc-macros"}}],"rustflags":[],"metadata":3105689872115122983,"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":6064785002308032717,"features":"[]","target":38308178912204214,"profile":12637318739757120569,"path":17233156624996662504,"deps":[[536886099498584783,"build_script_build",false,1007629872839820545],[5071438224780403860,"libc",false,2097896562174691182]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/gdnative-sys-54500d97c6dd7402/dep-lib-gdnative-sys"}}],"rustflags":[],"metadata":4943864796875740218,"config":2202906307356721367,"compile_kind":0}

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