From cc694774a3e21cd81eba24689540922bd1668b08 Mon Sep 17 00:00:00 2001 From: funman300 Date: Fri, 7 Aug 2026 12:03:22 -0700 Subject: [PATCH] wip: checkpoint FIFA 17 SBC research for Windows migration --- Cargo.lock | 6480 +++++++++++++++++ Cargo.toml | 10 + SECURITY_AUDIT_REPORT.json | 340 + fifa-blaze | 2 +- .../tools/ghidra_queries/q_md_draft_1.py | 26 + .../tools/ghidra_queries/q_md_draft_2.py | 50 + .../tools/ghidra_queries/q_md_draft_3.py | 41 + .../tools/ghidra_queries/q_md_draft_4.py | 20 + .../tools/ghidra_queries/q_md_draft_5.py | 37 + .../tools/ghidra_queries/q_md_draft_6.py | 38 + .../tools/ghidra_queries/q_md_draft_7.py | 29 + .../tools/ghidra_queries/q_md_draft_8.py | 12 + .../tools/ghidra_queries/q_md_feature_1.py | 37 + .../tools/ghidra_queries/q_md_feature_2.py | 51 + .../tools/ghidra_queries/q_md_feature_3.py | 55 + .../tools/ghidra_queries/q_md_gates_1.py | 40 + .../tools/ghidra_queries/q_md_gates_2.py | 93 + .../tools/ghidra_queries/q_md_gates_3.py | 58 + .../tools/ghidra_queries/q_md_gates_4.py | 77 + .../tools/ghidra_queries/q_md_gates_5.py | 16 + .../tools/ghidra_queries/q_md_sbc_1.py | 47 + .../tools/ghidra_queries/q_md_sbc_2.py | 39 + .../tools/ghidra_queries/q_md_sbc_3.py | 41 + .../tools/ghidra_queries/q_md_sbc_4.py | 38 + .../tools/ghidra_queries/q_md_sbc_5.py | 37 + .../tools/ghidra_queries/q_md_sbc_6.py | 42 + .../tools/ghidra_queries/q_md_sbc_7.py | 54 + .../tools/ghidra_queries/q_md_sbc_8.py | 19 + .../tools/ghidra_queries/q_md_seasons_1.py | 54 + .../tools/ghidra_queries/q_md_seasons_2.py | 42 + .../tools/ghidra_queries/q_md_seasons_3.py | 45 + .../tools/ghidra_queries/q_md_seasons_4.py | 70 + .../tools/ghidra_queries/q_md_seasons_5.py | 39 + .../tools/ghidra_queries/q_md_seasons_6.py | 59 + .../tools/ghidra_queries/q_md_seasons_7.py | 50 + .../tools/ghidra_queries/q_md_seasons_8.py | 47 + .../tools/ghidra_queries/q_md_seasons_9.py | 23 + .../tools/ghidra_queries/q_md_v1_A.py | 64 + .../tools/ghidra_queries/q_md_v1_B.py | 38 + .../tools/ghidra_queries/q_md_v2_adv1.py | 52 + .../tools/ghidra_queries/q_md_v3_1.py | 45 + fifa17-recon/tools/sbc_hook_poke.py | 290 + fifa17-recon/tools/sbc_populate_poke.py | 105 + fifa17-recon/tools/utas_server.py | 251 + openfut-bridge | 2 +- openfut-core | 2 +- openfut-launcher | 2 +- 47 files changed, 9105 insertions(+), 4 deletions(-) create mode 100644 Cargo.lock create mode 100644 Cargo.toml create mode 100644 SECURITY_AUDIT_REPORT.json create mode 100644 fifa17-recon/tools/ghidra_queries/q_md_draft_1.py create mode 100644 fifa17-recon/tools/ghidra_queries/q_md_draft_2.py create mode 100644 fifa17-recon/tools/ghidra_queries/q_md_draft_3.py create mode 100644 fifa17-recon/tools/ghidra_queries/q_md_draft_4.py create mode 100644 fifa17-recon/tools/ghidra_queries/q_md_draft_5.py create mode 100644 fifa17-recon/tools/ghidra_queries/q_md_draft_6.py create mode 100644 fifa17-recon/tools/ghidra_queries/q_md_draft_7.py create mode 100644 fifa17-recon/tools/ghidra_queries/q_md_draft_8.py create mode 100644 fifa17-recon/tools/ghidra_queries/q_md_feature_1.py create mode 100644 fifa17-recon/tools/ghidra_queries/q_md_feature_2.py create mode 100644 fifa17-recon/tools/ghidra_queries/q_md_feature_3.py create mode 100644 fifa17-recon/tools/ghidra_queries/q_md_gates_1.py create mode 100644 fifa17-recon/tools/ghidra_queries/q_md_gates_2.py create mode 100644 fifa17-recon/tools/ghidra_queries/q_md_gates_3.py create mode 100644 fifa17-recon/tools/ghidra_queries/q_md_gates_4.py create mode 100644 fifa17-recon/tools/ghidra_queries/q_md_gates_5.py create mode 100644 fifa17-recon/tools/ghidra_queries/q_md_sbc_1.py create mode 100644 fifa17-recon/tools/ghidra_queries/q_md_sbc_2.py create mode 100644 fifa17-recon/tools/ghidra_queries/q_md_sbc_3.py create mode 100644 fifa17-recon/tools/ghidra_queries/q_md_sbc_4.py create mode 100644 fifa17-recon/tools/ghidra_queries/q_md_sbc_5.py create mode 100644 fifa17-recon/tools/ghidra_queries/q_md_sbc_6.py create mode 100644 fifa17-recon/tools/ghidra_queries/q_md_sbc_7.py create mode 100644 fifa17-recon/tools/ghidra_queries/q_md_sbc_8.py create mode 100644 fifa17-recon/tools/ghidra_queries/q_md_seasons_1.py create mode 100644 fifa17-recon/tools/ghidra_queries/q_md_seasons_2.py create mode 100644 fifa17-recon/tools/ghidra_queries/q_md_seasons_3.py create mode 100644 fifa17-recon/tools/ghidra_queries/q_md_seasons_4.py create mode 100644 fifa17-recon/tools/ghidra_queries/q_md_seasons_5.py create mode 100644 fifa17-recon/tools/ghidra_queries/q_md_seasons_6.py create mode 100644 fifa17-recon/tools/ghidra_queries/q_md_seasons_7.py create mode 100644 fifa17-recon/tools/ghidra_queries/q_md_seasons_8.py create mode 100644 fifa17-recon/tools/ghidra_queries/q_md_seasons_9.py create mode 100644 fifa17-recon/tools/ghidra_queries/q_md_v1_A.py create mode 100644 fifa17-recon/tools/ghidra_queries/q_md_v1_B.py create mode 100644 fifa17-recon/tools/ghidra_queries/q_md_v2_adv1.py create mode 100644 fifa17-recon/tools/ghidra_queries/q_md_v3_1.py create mode 100644 fifa17-recon/tools/sbc_hook_poke.py create mode 100644 fifa17-recon/tools/sbc_populate_poke.py diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..bb28c4b --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,6480 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 4 + +[[package]] +name = "ab_glyph" +version = "0.2.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "01c0457472c38ea5bd1c3b5ada5e368271cb550be7a4ca4a0b4634e9913f6cc2" +dependencies = [ + "ab_glyph_rasterizer", + "owned_ttf_parser", +] + +[[package]] +name = "ab_glyph_rasterizer" +version = "0.1.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "366ffbaa4442f4684d91e2cd7c5ea7c4ed8add41959a31447066e279e432b618" + +[[package]] +name = "accesskit" +version = "0.16.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "99b76d84ee70e30a4a7e39ab9018e2b17a6a09e31084176cc7c0b2dec036ba45" + +[[package]] +name = "accesskit_atspi_common" +version = "0.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f5393c75d4666f580f4cac0a968bc97c36076bb536a129f28210dac54ee127ed" +dependencies = [ + "accesskit", + "accesskit_consumer", + "atspi-common", + "serde", + "thiserror 1.0.69", + "zvariant", +] + +[[package]] +name = "accesskit_consumer" +version = "0.24.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7a12dc159d52233c43d9fe5415969433cbdd52c3d6e0df51bda7d447427b9986" +dependencies = [ + "accesskit", + "immutable-chunkmap", +] + +[[package]] +name = "accesskit_macos" +version = "0.17.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bfc6c1ecd82053d127961ad80a8beaa6004fb851a3a5b96506d7a6bd462403f6" +dependencies = [ + "accesskit", + "accesskit_consumer", + "objc2 0.5.2", + "objc2-app-kit 0.2.2", + "objc2-foundation 0.2.2", + "once_cell", +] + +[[package]] +name = "accesskit_unix" +version = "0.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "be7f5cf6165be10a54b2655fa2e0e12b2509f38ed6fc43e11c31fdb7ee6230bb" +dependencies = [ + "accesskit", + "accesskit_atspi_common", + "async-channel", + "async-executor", + "async-task", + "atspi", + "futures-lite", + "futures-util", + "serde", + "zbus", +] + +[[package]] +name = "accesskit_windows" +version = "0.23.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "974e96c347384d9133427167fb8a58c340cb0496988dacceebdc1ed27071023b" +dependencies = [ + "accesskit", + "accesskit_consumer", + "paste", + "static_assertions", + "windows 0.58.0", + "windows-core 0.58.0", +] + +[[package]] +name = "accesskit_winit" +version = "0.22.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aea3522719f1c44564d03e9469a8e2f3a98b3a8a880bd66d0789c6b9c4a669dd" +dependencies = [ + "accesskit", + "accesskit_macos", + "accesskit_unix", + "accesskit_windows", + "raw-window-handle", + "winit", +] + +[[package]] +name = "adler2" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" + +[[package]] +name = "aes" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0" +dependencies = [ + "cfg-if", + "cipher", + "cpufeatures", +] + +[[package]] +name = "ahash" +version = "0.8.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75" +dependencies = [ + "cfg-if", + "getrandom 0.3.4", + "once_cell", + "version_check", + "zerocopy", +] + +[[package]] +name = "aho-corasick" +version = "1.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba" +dependencies = [ + "memchr", +] + +[[package]] +name = "allocator-api2" +version = "0.2.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" + +[[package]] +name = "android-activity" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0f2a1bb052857d5dd49572219344a7332b31b76405648eabac5bc68978251bcd" +dependencies = [ + "android-properties", + "bitflags 2.13.1", + "cc", + "jni", + "libc", + "log", + "ndk", + "ndk-context", + "ndk-sys 0.6.0+11769913", + "num_enum", + "thiserror 2.0.19", +] + +[[package]] +name = "android-properties" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc7eb209b1518d6bb87b283c20095f5228ecda460da70b44f0802523dea6da04" + +[[package]] +name = "android_system_properties" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" +dependencies = [ + "libc", +] + +[[package]] +name = "anyhow" +version = "1.0.104" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "330a5ed07fa54e4702c9d6c4174f74427fc0ef6e214bbd677ae50a5099946470" + +[[package]] +name = "arboard" +version = "3.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0348a1c054491f4bfe6ab86a7b6ab1e44e45d899005de92f58b3df180b36ddaf" +dependencies = [ + "clipboard-win", + "log", + "objc2 0.6.4", + "objc2-app-kit 0.3.2", + "objc2-foundation 0.3.2", + "parking_lot", + "percent-encoding", + "windows-sys 0.60.2", + "x11rb", +] + +[[package]] +name = "arrayref" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb" + +[[package]] +name = "arrayvec" +version = "0.7.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3fb67a6e08acf24fdeccbac2cb6ac4305825bd1f117462e0e6f2f193345ad56" + +[[package]] +name = "as-raw-xcb-connection" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "175571dd1d178ced59193a6fc02dde1b972eb0bc56c892cde9beeceac5bf0f6b" + +[[package]] +name = "ash" +version = "0.38.0+1.3.281" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0bb44936d800fea8f016d7f2311c6a4f97aebd5dc86f09906139ec848cf3a46f" +dependencies = [ + "libloading", +] + +[[package]] +name = "async-broadcast" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "435a87a52755b8f27fcf321ac4f04b2802e337c8c4872923137471ec39c37532" +dependencies = [ + "event-listener 5.4.2", + "event-listener-strategy", + "futures-core", + "pin-project-lite", +] + +[[package]] +name = "async-channel" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2" +dependencies = [ + "concurrent-queue", + "event-listener-strategy", + "futures-core", + "pin-project-lite", +] + +[[package]] +name = "async-executor" +version = "1.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c96bf972d85afc50bf5ab8fe2d54d1586b4e0b46c97c50a0c9e71e2f7bcd812a" +dependencies = [ + "async-task", + "concurrent-queue", + "fastrand", + "futures-lite", + "pin-project-lite", + "slab", +] + +[[package]] +name = "async-fs" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8034a681df4aed8b8edbd7fbe472401ecf009251c8b40556b304567052e294c5" +dependencies = [ + "async-lock", + "blocking", + "futures-lite", +] + +[[package]] +name = "async-io" +version = "2.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "456b8a8feb6f42d237746d4b3e9a178494627745c3c56c6ea55d92ba50d026fc" +dependencies = [ + "autocfg", + "cfg-if", + "concurrent-queue", + "futures-io", + "futures-lite", + "parking", + "polling", + "rustix 1.1.4", + "slab", + "windows-sys 0.61.2", +] + +[[package]] +name = "async-lock" +version = "3.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "290f7f2596bd5b78a9fec8088ccd89180d7f9f55b94b0576823bbbdc72ee8311" +dependencies = [ + "event-listener 5.4.2", + "event-listener-strategy", + "pin-project-lite", +] + +[[package]] +name = "async-process" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc50921ec0055cdd8a16de48773bfeec5c972598674347252c0399676be7da75" +dependencies = [ + "async-channel", + "async-io", + "async-lock", + "async-signal", + "async-task", + "blocking", + "cfg-if", + "event-listener 5.4.2", + "futures-lite", + "rustix 1.1.4", +] + +[[package]] +name = "async-recursion" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "async-signal" +version = "0.2.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52b5aaafa020cf5053a01f2a60e8ff5dccf550f0f77ec54a4e47285ac2bab485" +dependencies = [ + "async-io", + "async-lock", + "atomic-waker", + "cfg-if", + "futures-core", + "futures-io", + "rustix 1.1.4", + "signal-hook-registry", + "slab", + "windows-sys 0.61.2", +] + +[[package]] +name = "async-task" +version = "4.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de" + +[[package]] +name = "async-trait" +version = "0.1.91" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ae36dc4177970ef04fde5178d3e2429882def40e57a451f919c098f72baa6cec" +dependencies = [ + "proc-macro2", + "quote", + "syn 3.0.3", +] + +[[package]] +name = "atoi" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528" +dependencies = [ + "num-traits", +] + +[[package]] +name = "atomic-waker" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" + +[[package]] +name = "atspi" +version = "0.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "be534b16650e35237bb1ed189ba2aab86ce65e88cc84c66f4935ba38575cecbf" +dependencies = [ + "atspi-common", + "atspi-connection", + "atspi-proxies", +] + +[[package]] +name = "atspi-common" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1909ed2dc01d0a17505d89311d192518507e8a056a48148e3598fef5e7bb6ba7" +dependencies = [ + "enumflags2", + "serde", + "static_assertions", + "zbus", + "zbus-lockstep", + "zbus-lockstep-macros", + "zbus_names", + "zvariant", +] + +[[package]] +name = "atspi-connection" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "430c5960624a4baaa511c9c0fcc2218e3b58f5dbcc47e6190cafee344b873333" +dependencies = [ + "atspi-common", + "atspi-proxies", + "futures-lite", + "zbus", +] + +[[package]] +name = "atspi-proxies" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a5e6c5de3e524cf967569722446bcd458d5032348554d9a17d7d72b041ab7496" +dependencies = [ + "atspi-common", + "serde", + "zbus", + "zvariant", +] + +[[package]] +name = "auto-future" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3c1e7e457ea78e524f48639f551fd79703ac3f2237f5ecccdf4708f8a75ad373" + +[[package]] +name = "autocfg" +version = "1.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53" + +[[package]] +name = "axum" +version = "0.7.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f" +dependencies = [ + "async-trait", + "axum-core", + "axum-macros", + "bytes", + "futures-util", + "http 1.5.0", + "http-body 1.1.0", + "http-body-util", + "hyper 1.11.0", + "hyper-util", + "itoa", + "matchit", + "memchr", + "mime", + "percent-encoding", + "pin-project-lite", + "rustversion", + "serde", + "serde_json", + "serde_path_to_error", + "serde_urlencoded", + "sync_wrapper 1.0.2", + "tokio", + "tower 0.5.3", + "tower-layer", + "tower-service", + "tracing", +] + +[[package]] +name = "axum-core" +version = "0.4.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199" +dependencies = [ + "async-trait", + "bytes", + "futures-util", + "http 1.5.0", + "http-body 1.1.0", + "http-body-util", + "mime", + "pin-project-lite", + "rustversion", + "sync_wrapper 1.0.2", + "tower-layer", + "tower-service", + "tracing", +] + +[[package]] +name = "axum-macros" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57d123550fa8d071b7255cb0cc04dc302baa6c8c4a79f55701552684d8399bce" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "axum-test" +version = "14.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "167294800740b4b6bc7bfbccbf3a1d50a6c6e097342580ec4c11d1672e456292" +dependencies = [ + "anyhow", + "async-trait", + "auto-future", + "axum", + "bytes", + "cookie", + "http 1.5.0", + "http-body-util", + "hyper 1.11.0", + "hyper-util", + "mime", + "pretty_assertions", + "reserve-port", + "rust-multipart-rfc7578_2", + "serde", + "serde_json", + "serde_urlencoded", + "smallvec", + "tokio", + "tower 0.4.13", + "url", +] + +[[package]] +name = "base64" +version = "0.21.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" + +[[package]] +name = "base64" +version = "0.22.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" + +[[package]] +name = "base64ct" +version = "1.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06" + +[[package]] +name = "bit-set" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0481a0e032742109b1133a095184ee93d88f3dc9e0d28a5d033dc77a073f44f" +dependencies = [ + "bit-vec", +] + +[[package]] +name = "bit-vec" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d2c54ff287cfc0a34f38a6b832ea1bd8e448a330b3e40a50859e6488bee07f22" + +[[package]] +name = "bitflags" +version = "1.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" + +[[package]] +name = "bitflags" +version = "2.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da" +dependencies = [ + "serde_core", +] + +[[package]] +name = "blaze-proto" +version = "0.1.0" +dependencies = [ + "bytes", + "hex", + "serde", + "tdf", + "thiserror 1.0.69", + "tokio-util", +] + +[[package]] +name = "blaze-ssl-async" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6fec08f35919613bda0b3eb3bc772c2f793b3634133923b931874b18e1ac55de" +dependencies = [ + "bytes", + "num_enum", + "rsa", + "tokio", + "x509-cert", +] + +[[package]] +name = "block" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a" + +[[package]] +name = "block-buffer" +version = "0.10.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" +dependencies = [ + "generic-array", +] + +[[package]] +name = "block2" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2c132eebf10f5cad5289222520a4a058514204aed6d791f1cf4fe8088b82d15f" +dependencies = [ + "objc2 0.5.2", +] + +[[package]] +name = "blocking" +version = "1.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e83f8d02be6967315521be875afa792a316e28d57b5a2d401897e2a7921b7f21" +dependencies = [ + "async-channel", + "async-task", + "futures-io", + "futures-lite", + "piper", +] + +[[package]] +name = "bumpalo" +version = "3.20.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649" + +[[package]] +name = "bytemuck" +version = "1.25.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "95832e849adfb21180ccb6826a99da14e5d266ae5c2e668e1602cf234f153797" +dependencies = [ + "bytemuck_derive", +] + +[[package]] +name = "bytemuck_derive" +version = "1.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f65693059b6b9c588b9f62fed1cedbf0a8b805631457ea162d68f0de186f3de5" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "byteorder" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" + +[[package]] +name = "byteorder-lite" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495" + +[[package]] +name = "bytes" +version = "1.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04" + +[[package]] +name = "calloop" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b99da2f8558ca23c71f4fd15dc57c906239752dd27ff3c00a1d56b685b7cbfec" +dependencies = [ + "bitflags 2.13.1", + "log", + "polling", + "rustix 0.38.44", + "slab", + "thiserror 1.0.69", +] + +[[package]] +name = "calloop" +version = "0.14.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4dbf9978365bac10f54d1d4b04f7ce4427e51f71d61f2fe15e3fed5166474df7" +dependencies = [ + "bitflags 2.13.1", + "polling", + "rustix 1.1.4", + "slab", + "tracing", +] + +[[package]] +name = "calloop-wayland-source" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "95a66a987056935f7efce4ab5668920b5d0dac4a7c99991a67395f13702ddd20" +dependencies = [ + "calloop 0.13.0", + "rustix 0.38.44", + "wayland-backend", + "wayland-client", +] + +[[package]] +name = "calloop-wayland-source" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "138efcf0940a02ebf0cc8d1eff41a1682a46b431630f4c52450d6265876021fa" +dependencies = [ + "calloop 0.14.4", + "rustix 1.1.4", + "wayland-backend", + "wayland-client", +] + +[[package]] +name = "cc" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5add81bb678e6cb321aff7fa0dc7689ad82b112dbc032cea19f91d6b8e3582b9" +dependencies = [ + "find-msvc-tools", + "jobserver", + "libc", + "shlex", +] + +[[package]] +name = "cfg-if" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" + +[[package]] +name = "cfg_aliases" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e" + +[[package]] +name = "cfg_aliases" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f079e83a288787bcd14a6aea84cee5c87a67c5a3e660c30f557a3d24761b3527" + +[[package]] +name = "cgl" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ced0551234e87afee12411d535648dd89d2e7f34c78b753395567aff3d447ff" +dependencies = [ + "libc", +] + +[[package]] +name = "chrono" +version = "0.4.45" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327" +dependencies = [ + "iana-time-zone", + "js-sys", + "num-traits", + "serde", + "wasm-bindgen", + "windows-link", +] + +[[package]] +name = "cipher" +version = "0.4.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" +dependencies = [ + "crypto-common", + "inout", +] + +[[package]] +name = "clipboard-win" +version = "5.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bde03770d3df201d4fb868f2c9c59e66a3e4e2bd06692a0fe701e7103c7e84d4" +dependencies = [ + "error-code", +] + +[[package]] +name = "codespan-reporting" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" +dependencies = [ + "termcolor", + "unicode-width", +] + +[[package]] +name = "com" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7e17887fd17353b65b1b2ef1c526c83e26cd72e74f598a8dc1bee13a48f3d9f6" +dependencies = [ + "com_macros", +] + +[[package]] +name = "com_macros" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d375883580a668c7481ea6631fc1a8863e33cc335bf56bfad8d7e6d4b04b13a5" +dependencies = [ + "com_macros_support", + "proc-macro2", + "syn 1.0.109", +] + +[[package]] +name = "com_macros_support" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ad899a1087a9296d5644792d7cb72b8e34c1bec8e7d4fbc002230169a6e8710c" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "combine" +version = "4.6.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd" +dependencies = [ + "bytes", + "memchr", +] + +[[package]] +name = "concurrent-queue" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" +dependencies = [ + "crossbeam-utils", +] + +[[package]] +name = "const-oid" +version = "0.9.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" + +[[package]] +name = "cookie" +version = "0.18.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747" +dependencies = [ + "time", + "version_check", +] + +[[package]] +name = "core-foundation" +version = "0.9.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "core-foundation" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "core-foundation-sys" +version = "0.8.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" + +[[package]] +name = "core-graphics" +version = "0.23.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c07782be35f9e1140080c6b96f0d44b739e2278479f64e02fdab4e32dfd8b081" +dependencies = [ + "bitflags 1.3.2", + "core-foundation 0.9.4", + "core-graphics-types", + "foreign-types 0.5.0", + "libc", +] + +[[package]] +name = "core-graphics-types" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "45390e6114f68f718cc7a830514a96f903cccd70d02a8f6d9f643ac4ba45afaf" +dependencies = [ + "bitflags 1.3.2", + "core-foundation 0.9.4", + "libc", +] + +[[package]] +name = "cpufeatures" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" +dependencies = [ + "libc", +] + +[[package]] +name = "crc" +version = "3.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5eb8a2a1cd12ab0d987a5d5e825195d372001a4094a0376319d5a0ad71c1ba0d" +dependencies = [ + "crc-catalog", +] + +[[package]] +name = "crc-catalog" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "217698eaf96b4a3f0bc4f3662aaa55bdf913cd54d7204591faa790070c6d0853" + +[[package]] +name = "crc32fast" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "crossbeam-queue" +version = "0.3.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "803d13fb3b09d88be9f4dbc29062c66b19bf7170867ceb746d2a8689bf6c7a26" +dependencies = [ + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-utils" +version = "0.8.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17" + +[[package]] +name = "crypto-common" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a" +dependencies = [ + "generic-array", + "typenum", +] + +[[package]] +name = "cursor-icon" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f27ae1dd37df86211c42e150270f82743308803d90a6f6e6651cd730d5e1732f" + +[[package]] +name = "darling" +version = "0.20.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee" +dependencies = [ + "darling_core", + "darling_macro", +] + +[[package]] +name = "darling_core" +version = "0.20.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e" +dependencies = [ + "fnv", + "ident_case", + "proc-macro2", + "quote", + "strsim", + "syn 2.0.119", +] + +[[package]] +name = "darling_macro" +version = "0.20.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead" +dependencies = [ + "darling_core", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "der" +version = "0.7.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb" +dependencies = [ + "const-oid", + "der_derive", + "flagset", + "pem-rfc7468", + "zeroize", +] + +[[package]] +name = "der_derive" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8034092389675178f570469e6c3b0465d3d30b4505c294a6550db47f3c17ad18" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "deranged" +version = "0.5.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c" + +[[package]] +name = "diff" +version = "0.1.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8" + +[[package]] +name = "digest" +version = "0.10.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" +dependencies = [ + "block-buffer", + "const-oid", + "crypto-common", + "subtle", +] + +[[package]] +name = "dirs" +version = "5.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225" +dependencies = [ + "dirs-sys", +] + +[[package]] +name = "dirs-sys" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c" +dependencies = [ + "libc", + "option-ext", + "redox_users", + "windows-sys 0.48.0", +] + +[[package]] +name = "dispatch" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b" + +[[package]] +name = "dispatch2" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e0e367e4e7da84520dedcac1901e4da967309406d1e51017ae1abfb97adbd38" +dependencies = [ + "bitflags 2.13.1", + "objc2 0.6.4", +] + +[[package]] +name = "displaydoc" +version = "0.2.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c6232dd377dcc64799954cbd3a9bb882e9cdc1308ccd87b1c098f1fb2eaf82a8" +dependencies = [ + "proc-macro2", + "quote", + "syn 3.0.3", +] + +[[package]] +name = "dlib" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ab8ecd87370524b461f8557c119c405552c396ed91fc0a8eec68679eab26f94a" +dependencies = [ + "libloading", +] + +[[package]] +name = "document-features" +version = "0.2.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61" +dependencies = [ + "litrs", +] + +[[package]] +name = "dotenvy" +version = "0.15.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b" + +[[package]] +name = "downcast-rs" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2" + +[[package]] +name = "dpi" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d8b14ccef22fc6f5a8f4d7d768562a182c04ce9a3b3157b91390b52ddfdf1a76" + +[[package]] +name = "ecolor" +version = "0.29.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "775cfde491852059e386c4e1deb4aef381c617dc364184c6f6afee99b87c402b" +dependencies = [ + "bytemuck", + "emath", +] + +[[package]] +name = "eframe" +version = "0.29.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ac2645a9bf4826eb4e91488b1f17b8eaddeef09396706b2f14066461338e24f" +dependencies = [ + "ahash", + "bytemuck", + "document-features", + "egui", + "egui-wgpu", + "egui-winit", + "egui_glow", + "glow 0.14.2", + "glutin", + "glutin-winit", + "image", + "js-sys", + "log", + "objc2 0.5.2", + "objc2-app-kit 0.2.2", + "objc2-foundation 0.2.2", + "parking_lot", + "percent-encoding", + "raw-window-handle", + "static_assertions", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", + "web-time", + "winapi", + "windows-sys 0.52.0", + "winit", +] + +[[package]] +name = "egui" +version = "0.29.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "53eafabcce0cb2325a59a98736efe0bf060585b437763f8c476957fb274bb974" +dependencies = [ + "accesskit", + "ahash", + "emath", + "epaint", + "log", + "nohash-hasher", +] + +[[package]] +name = "egui-wgpu" +version = "0.29.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d00fd5d06d8405397e64a928fa0ef3934b3c30273ea7603e3dc4627b1f7a1a82" +dependencies = [ + "ahash", + "bytemuck", + "document-features", + "egui", + "epaint", + "log", + "thiserror 1.0.69", + "type-map", + "web-time", + "wgpu", + "winit", +] + +[[package]] +name = "egui-winit" +version = "0.29.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0a9c430f4f816340e8e8c1b20eec274186b1be6bc4c7dfc467ed50d57abc36c6" +dependencies = [ + "accesskit_winit", + "ahash", + "arboard", + "egui", + "log", + "raw-window-handle", + "smithay-clipboard", + "web-time", + "webbrowser", + "winit", +] + +[[package]] +name = "egui_glow" +version = "0.29.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0e39bccc683cd43adab530d8f21a13eb91e80de10bcc38c3f1c16601b6f62b26" +dependencies = [ + "ahash", + "bytemuck", + "egui", + "glow 0.14.2", + "log", + "memoffset", + "wasm-bindgen", + "web-sys", + "winit", +] + +[[package]] +name = "either" +version = "1.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9e5e8f6c15a24b9a3ee5efec809ccd006d3b30e8b3bb63c39af737c7f87daa1d" +dependencies = [ + "serde", +] + +[[package]] +name = "emath" +version = "0.29.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b1fe0049ce51d0fb414d029e668dd72eb30bc2b739bf34296ed97bd33df544f3" +dependencies = [ + "bytemuck", +] + +[[package]] +name = "encoding_rs" +version = "0.8.35" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "endi" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "66b7e2430c6dff6a955451e2cfc438f09cea1965a9d6f87f7e3b90decc014099" + +[[package]] +name = "enumflags2" +version = "0.7.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1027f7680c853e056ebcec683615fb6fbbc07dbaa13b4d5d9442b146ded4ecef" +dependencies = [ + "enumflags2_derive", + "serde", +] + +[[package]] +name = "enumflags2_derive" +version = "0.7.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67c78a4d8fdf9953a5c9d458f9efe940fd97a0cab0941c075a813ac594733827" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "epaint" +version = "0.29.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a32af8da821bd4f43f2c137e295459ee2e1661d87ca8779dfa0eaf45d870e20f" +dependencies = [ + "ab_glyph", + "ahash", + "bytemuck", + "ecolor", + "emath", + "epaint_default_fonts", + "log", + "nohash-hasher", + "parking_lot", +] + +[[package]] +name = "epaint_default_fonts" +version = "0.29.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "483440db0b7993cf77a20314f08311dbe95675092405518c0677aa08c151a3ea" + +[[package]] +name = "equivalent" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" + +[[package]] +name = "errno" +version = "0.3.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" +dependencies = [ + "libc", + "windows-sys 0.61.2", +] + +[[package]] +name = "error-code" +version = "3.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dea2df4cf52843e0452895c455a1a2cfbb842a1e7329671acf418fdc53ed4c59" + +[[package]] +name = "etcetera" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "136d1b5283a1ab77bd9257427ffd09d8667ced0570b6f938942bc7568ed5b943" +dependencies = [ + "cfg-if", + "home", + "windows-sys 0.48.0", +] + +[[package]] +name = "event-listener" +version = "2.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" + +[[package]] +name = "event-listener" +version = "5.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a23add41df1562121a9393cb065eab5146a1242410f23a644851e90cfd669d2" +dependencies = [ + "parking", + "pin-project-lite", +] + +[[package]] +name = "event-listener-strategy" +version = "0.5.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93" +dependencies = [ + "event-listener 5.4.2", + "pin-project-lite", +] + +[[package]] +name = "fastrand" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223" + +[[package]] +name = "fdeflate" +version = "0.3.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c" +dependencies = [ + "simd-adler32", +] + +[[package]] +name = "find-msvc-tools" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582" + +[[package]] +name = "flagset" +version = "0.4.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b7ac824320a75a52197e8f2d787f6a38b6718bb6897a35142d749af3c0e8f4fe" + +[[package]] +name = "flate2" +version = "1.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c" +dependencies = [ + "crc32fast", + "miniz_oxide", +] + +[[package]] +name = "flume" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095" +dependencies = [ + "futures-core", + "futures-sink", + "spin 0.9.9", +] + +[[package]] +name = "fnv" +version = "1.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" + +[[package]] +name = "foldhash" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" + +[[package]] +name = "foreign-types" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" +dependencies = [ + "foreign-types-shared 0.1.1", +] + +[[package]] +name = "foreign-types" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965" +dependencies = [ + "foreign-types-macros", + "foreign-types-shared 0.3.1", +] + +[[package]] +name = "foreign-types-macros" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ea5190182e6915eb873ddbc16e23b711b6eb1f9c00a0d0a3a91b5f6228475225" +dependencies = [ + "proc-macro2", + "quote", + "syn 3.0.3", +] + +[[package]] +name = "foreign-types-shared" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" + +[[package]] +name = "foreign-types-shared" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b" + +[[package]] +name = "form_urlencoded" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" +dependencies = [ + "percent-encoding", +] + +[[package]] +name = "futures-channel" +version = "0.3.33" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "262590f4fe6afeb0bc83be1daa64e52657fe185690a958af7f3ad0e92085c5ae" +dependencies = [ + "futures-core", + "futures-sink", +] + +[[package]] +name = "futures-core" +version = "0.3.33" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2cd50c473c80f6d7c3670a752354b8e569b1a7cbfdc0419ec88e5edad85e0dc7" + +[[package]] +name = "futures-executor" +version = "0.3.33" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6754879cc9f2c66f88c6e5c35344bb0bdb0708b0352b1201815667c7eabc7458" +dependencies = [ + "futures-core", + "futures-task", + "futures-util", +] + +[[package]] +name = "futures-intrusive" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d930c203dd0b6ff06e0201a4a2fe9149b43c684fd4420555b26d21b1a02956f" +dependencies = [ + "futures-core", + "lock_api", + "parking_lot", +] + +[[package]] +name = "futures-io" +version = "0.3.33" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4577ecaa3c4f96589d473f679a71b596316f6641bc350038b962a5daf0085d7a" + +[[package]] +name = "futures-lite" +version = "2.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad" +dependencies = [ + "fastrand", + "futures-core", + "futures-io", + "parking", + "pin-project-lite", +] + +[[package]] +name = "futures-macro" +version = "0.3.33" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2d6d3cde68c518367be28956066ddfef33813991b77a55005a69dae04bf3b10b" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "futures-sink" +version = "0.3.33" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e34418ac499d6305c2fb5ad0ed2f6ac998c5f8ca209b4510f7f94242c647e307" + +[[package]] +name = "futures-task" +version = "0.3.33" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b231ed28831efb4a61a08580c4bc233ec56bc009f4cd8f52da2c3cb97df0c109" + +[[package]] +name = "futures-util" +version = "0.3.33" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a77a90a256fce34da66415271e30f94ee91c57b04b8a2c042d9cf3220179deaa" +dependencies = [ + "futures-core", + "futures-io", + "futures-macro", + "futures-sink", + "futures-task", + "memchr", + "pin-project-lite", + "slab", +] + +[[package]] +name = "generic-array" +version = "0.14.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" +dependencies = [ + "typenum", + "version_check", +] + +[[package]] +name = "gethostname" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1bd49230192a3797a9a4d6abe9b3eed6f7fa4c8a8a4947977c6f80025f92cbd8" +dependencies = [ + "rustix 1.1.4", + "windows-link", +] + +[[package]] +name = "getrandom" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" +dependencies = [ + "cfg-if", + "libc", + "wasi", +] + +[[package]] +name = "getrandom" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" +dependencies = [ + "cfg-if", + "libc", + "r-efi 5.3.0", + "wasip2", +] + +[[package]] +name = "getrandom" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099" +dependencies = [ + "cfg-if", + "libc", + "r-efi 6.0.0", +] + +[[package]] +name = "gl_generator" +version = "0.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1a95dfc23a2b4a9a2f5ab41d194f8bfda3cabec42af4e39f08c339eb2a0c124d" +dependencies = [ + "khronos_api", + "log", + "xml-rs", +] + +[[package]] +name = "glow" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bd348e04c43b32574f2de31c8bb397d96c9fcfa1371bd4ca6d8bdc464ab121b1" +dependencies = [ + "js-sys", + "slotmap", + "wasm-bindgen", + "web-sys", +] + +[[package]] +name = "glow" +version = "0.14.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d51fa363f025f5c111e03f13eda21162faeacb6911fe8caa0c0349f9cf0c4483" +dependencies = [ + "js-sys", + "slotmap", + "wasm-bindgen", + "web-sys", +] + +[[package]] +name = "glutin" +version = "0.32.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "12124de845cacfebedff80e877bb37b5b75c34c5a4c89e47e1cdd67fb6041325" +dependencies = [ + "bitflags 2.13.1", + "cfg_aliases 0.2.2", + "cgl", + "dispatch2", + "glutin_egl_sys", + "glutin_glx_sys", + "glutin_wgl_sys", + "libloading", + "objc2 0.6.4", + "objc2-app-kit 0.3.2", + "objc2-core-foundation", + "objc2-foundation 0.3.2", + "once_cell", + "raw-window-handle", + "wayland-sys", + "windows-sys 0.52.0", + "x11-dl", +] + +[[package]] +name = "glutin-winit" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85edca7075f8fc728f28cb8fbb111a96c3b89e930574369e3e9c27eb75d3788f" +dependencies = [ + "cfg_aliases 0.2.2", + "glutin", + "raw-window-handle", + "winit", +] + +[[package]] +name = "glutin_egl_sys" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4c4680ba6195f424febdc3ba46e7a42a0e58743f2edb115297b86d7f8ecc02d2" +dependencies = [ + "gl_generator", + "windows-sys 0.52.0", +] + +[[package]] +name = "glutin_glx_sys" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a7bb2938045a88b612499fbcba375a77198e01306f52272e692f8c1f3751185" +dependencies = [ + "gl_generator", + "x11-dl", +] + +[[package]] +name = "glutin_wgl_sys" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2c4ee00b289aba7a9e5306d57c2d05499b2e5dc427f84ac708bd2c090212cf3e" +dependencies = [ + "gl_generator", +] + +[[package]] +name = "gpu-alloc" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "45cf04b2726f02df5508c6de726acdc90cdf97ac771a9a0ffd8ba10a6e696bf9" +dependencies = [ + "bitflags 2.13.1", + "gpu-alloc-types", +] + +[[package]] +name = "gpu-alloc-types" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2bbed164dd10ed526c2e4fe3e721ca4a71c61730e5aafac6844b417b3227058" +dependencies = [ + "bitflags 2.13.1", +] + +[[package]] +name = "gpu-allocator" +version = "0.26.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fdd4240fc91d3433d5e5b0fc5b67672d771850dc19bbee03c1381e19322803d7" +dependencies = [ + "log", + "presser", + "thiserror 1.0.69", + "winapi", + "windows 0.52.0", +] + +[[package]] +name = "gpu-descriptor" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b89c83349105e3732062a895becfc71a8f921bb71ecbbdd8ff99263e3b53a0ca" +dependencies = [ + "bitflags 2.13.1", + "gpu-descriptor-types", + "hashbrown 0.15.5", +] + +[[package]] +name = "gpu-descriptor-types" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fdf242682df893b86f33a73828fb09ca4b2d3bb6cc95249707fc684d27484b91" +dependencies = [ + "bitflags 2.13.1", +] + +[[package]] +name = "h2" +version = "0.3.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0beca50380b1fc32983fc1cb4587bfa4bb9e78fc259aad4a0032d2080309222d" +dependencies = [ + "bytes", + "fnv", + "futures-core", + "futures-sink", + "futures-util", + "http 0.2.12", + "indexmap", + "slab", + "tokio", + "tokio-util", + "tracing", +] + +[[package]] +name = "h2" +version = "0.4.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6cb093c84e8bd9b188d4c4a8cb6579fc016968d14c99882163cd3ff402a4f155" +dependencies = [ + "atomic-waker", + "bytes", + "fnv", + "futures-core", + "futures-sink", + "http 1.5.0", + "indexmap", + "slab", + "tokio", + "tokio-util", + "tracing", +] + +[[package]] +name = "hashbrown" +version = "0.14.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" +dependencies = [ + "ahash", + "allocator-api2", +] + +[[package]] +name = "hashbrown" +version = "0.15.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" +dependencies = [ + "foldhash", +] + +[[package]] +name = "hashbrown" +version = "0.17.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a" + +[[package]] +name = "hashlink" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e8094feaf31ff591f651a2664fb9cfd92bba7a60ce3197265e9482ebe753c8f7" +dependencies = [ + "hashbrown 0.14.5", +] + +[[package]] +name = "hassle-rs" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "af2a7e73e1f34c48da31fb668a907f250794837e08faa144fd24f0b8b741e890" +dependencies = [ + "bitflags 2.13.1", + "com", + "libc", + "libloading", + "thiserror 1.0.69", + "widestring", + "winapi", +] + +[[package]] +name = "heck" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" +dependencies = [ + "unicode-segmentation", +] + +[[package]] +name = "hermit-abi" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c" + +[[package]] +name = "hex" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" + +[[package]] +name = "hexf-parse" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dfa686283ad6dd069f105e5ab091b04c62850d3e4cf5d67debad1933f55023df" + +[[package]] +name = "hkdf" +version = "0.12.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7" +dependencies = [ + "hmac", +] + +[[package]] +name = "hmac" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" +dependencies = [ + "digest", +] + +[[package]] +name = "home" +version = "0.5.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d" +dependencies = [ + "windows-sys 0.61.2", +] + +[[package]] +name = "http" +version = "0.2.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1" +dependencies = [ + "bytes", + "fnv", + "itoa", +] + +[[package]] +name = "http" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "918d3568bebf352712bc2ef3d46a8bcf1a75b373be6539de198e9105cbbf9ce0" +dependencies = [ + "bytes", + "itoa", +] + +[[package]] +name = "http-body" +version = "0.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" +dependencies = [ + "bytes", + "http 0.2.12", + "pin-project-lite", +] + +[[package]] +name = "http-body" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ca2a8f2913ee65f60facd6a5905613afaa448497a0230cc41ce022d93290bc2c" +dependencies = [ + "bytes", + "http 1.5.0", +] + +[[package]] +name = "http-body-util" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e9f41fd6a08e4d4ec69df65976da761afd5ad5e58a9d4acb46bd1c953a9e3ff2" +dependencies = [ + "bytes", + "futures-core", + "http 1.5.0", + "http-body 1.1.0", + "pin-project-lite", +] + +[[package]] +name = "httparse" +version = "1.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" + +[[package]] +name = "httpdate" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" + +[[package]] +name = "hyper" +version = "0.14.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7" +dependencies = [ + "bytes", + "futures-channel", + "futures-core", + "futures-util", + "h2 0.3.27", + "http 0.2.12", + "http-body 0.4.6", + "httparse", + "httpdate", + "itoa", + "pin-project-lite", + "socket2 0.5.10", + "tokio", + "tower-service", + "tracing", + "want", +] + +[[package]] +name = "hyper" +version = "1.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d22053281f852e11534f5198498373cbb59295120a20771d90f7ed1897490a72" +dependencies = [ + "atomic-waker", + "bytes", + "futures-channel", + "futures-core", + "h2 0.4.15", + "http 1.5.0", + "http-body 1.1.0", + "httparse", + "httpdate", + "itoa", + "pin-project-lite", + "smallvec", + "tokio", + "want", +] + +[[package]] +name = "hyper-rustls" +version = "0.24.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" +dependencies = [ + "futures-util", + "http 0.2.12", + "hyper 0.14.32", + "rustls", + "tokio", + "tokio-rustls", +] + +[[package]] +name = "hyper-tls" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905" +dependencies = [ + "bytes", + "hyper 0.14.32", + "native-tls", + "tokio", + "tokio-native-tls", +] + +[[package]] +name = "hyper-util" +version = "0.1.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0" +dependencies = [ + "bytes", + "futures-channel", + "futures-util", + "http 1.5.0", + "http-body 1.1.0", + "hyper 1.11.0", + "libc", + "pin-project-lite", + "socket2 0.6.5", + "tokio", + "tower-service", + "tracing", +] + +[[package]] +name = "iana-time-zone" +version = "0.1.65" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470" +dependencies = [ + "android_system_properties", + "core-foundation-sys", + "iana-time-zone-haiku", + "js-sys", + "log", + "wasm-bindgen", + "windows-core 0.62.2", +] + +[[package]] +name = "iana-time-zone-haiku" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" +dependencies = [ + "cc", +] + +[[package]] +name = "icu_collections" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c" +dependencies = [ + "displaydoc", + "potential_utf", + "utf8_iter", + "yoke", + "zerofrom", + "zerovec", +] + +[[package]] +name = "icu_locale_core" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29" +dependencies = [ + "displaydoc", + "litemap", + "tinystr", + "writeable", + "zerovec", +] + +[[package]] +name = "icu_normalizer" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4" +dependencies = [ + "icu_collections", + "icu_normalizer_data", + "icu_properties", + "icu_provider", + "smallvec", + "zerovec", +] + +[[package]] +name = "icu_normalizer_data" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38" + +[[package]] +name = "icu_properties" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de" +dependencies = [ + "icu_collections", + "icu_locale_core", + "icu_properties_data", + "icu_provider", + "zerotrie", + "zerovec", +] + +[[package]] +name = "icu_properties_data" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14" + +[[package]] +name = "icu_provider" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421" +dependencies = [ + "displaydoc", + "icu_locale_core", + "writeable", + "yoke", + "zerofrom", + "zerotrie", + "zerovec", +] + +[[package]] +name = "ident_case" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" + +[[package]] +name = "idna" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" +dependencies = [ + "idna_adapter", + "smallvec", + "utf8_iter", +] + +[[package]] +name = "idna_adapter" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714" +dependencies = [ + "icu_normalizer", + "icu_properties", +] + +[[package]] +name = "image" +version = "0.25.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85ab80394333c02fe689eaf900ab500fbd0c2213da414687ebf995a65d5a6104" +dependencies = [ + "bytemuck", + "byteorder-lite", + "moxcms", + "num-traits", + "png", +] + +[[package]] +name = "immutable-chunkmap" +version = "2.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "45b30d0eb3d4282f694894b75bc50807ab6e3203436681cc235fa364acf7f5e1" +dependencies = [ + "arrayvec", +] + +[[package]] +name = "indexmap" +version = "2.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9" +dependencies = [ + "equivalent", + "hashbrown 0.17.1", +] + +[[package]] +name = "inout" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01" +dependencies = [ + "generic-array", +] + +[[package]] +name = "ipnet" +version = "2.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6a756c3fac73139e83f14c2d742155dd2b78d3ee56597b419a0579b7bdd6dd78" + +[[package]] +name = "itoa" +version = "1.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682" + +[[package]] +name = "jni" +version = "0.22.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5efd9a482cf3a427f00d6b35f14332adc7902ce91efb778580e180ff90fa3498" +dependencies = [ + "cfg-if", + "combine", + "jni-macros", + "jni-sys 0.4.1", + "log", + "simd_cesu8", + "thiserror 2.0.19", + "walkdir", + "windows-link", +] + +[[package]] +name = "jni-macros" +version = "0.22.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a00109accc170f0bdb141fed3e393c565b6f5e072365c3bd58f5b062591560a3" +dependencies = [ + "proc-macro2", + "quote", + "rustc_version", + "simd_cesu8", + "syn 2.0.119", +] + +[[package]] +name = "jni-sys" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41a652e1f9b6e0275df1f15b32661cf0d4b78d4d87ddec5e0c3c20f097433258" +dependencies = [ + "jni-sys 0.4.1", +] + +[[package]] +name = "jni-sys" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2" +dependencies = [ + "jni-sys-macros", +] + +[[package]] +name = "jni-sys-macros" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264" +dependencies = [ + "quote", + "syn 2.0.119", +] + +[[package]] +name = "jobserver" +version = "0.1.35" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1c00acbd29eabad4a2392fa0e921c874934dbbf4194312ad20f04a0ed67a3cb3" +dependencies = [ + "getrandom 0.4.3", + "libc", +] + +[[package]] +name = "js-sys" +version = "0.3.103" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102" +dependencies = [ + "cfg-if", + "futures-util", + "wasm-bindgen", +] + +[[package]] +name = "khronos-egl" +version = "6.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6aae1df220ece3c0ada96b8153459b67eebe9ae9212258bb0134ae60416fdf76" +dependencies = [ + "libc", + "libloading", + "pkg-config", +] + +[[package]] +name = "khronos_api" +version = "3.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e2db585e1d738fc771bf08a151420d3ed193d9d895a36df7f6f8a9456b911ddc" + +[[package]] +name = "lazy_static" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" +dependencies = [ + "spin 0.9.9", +] + +[[package]] +name = "libc" +version = "0.2.189" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2" + +[[package]] +name = "libloading" +version = "0.8.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55" +dependencies = [ + "cfg-if", + "windows-link", +] + +[[package]] +name = "libm" +version = "0.2.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981" + +[[package]] +name = "libredox" +version = "0.1.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2026a5056764a10b2bf5d56488cba40da507f5493a6a429340e2004d9ed085fa" +dependencies = [ + "bitflags 2.13.1", + "libc", + "plain", + "redox_syscall 0.9.1", +] + +[[package]] +name = "libsqlite3-sys" +version = "0.27.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cf4e226dcd58b4be396f7bd3c20da8fdee2911400705297ba7d2d7cc2c30f716" +dependencies = [ + "cc", + "pkg-config", + "vcpkg", +] + +[[package]] +name = "linux-raw-sys" +version = "0.4.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab" + +[[package]] +name = "linux-raw-sys" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53" + +[[package]] +name = "litemap" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0" + +[[package]] +name = "litrs" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092" + +[[package]] +name = "lock_api" +version = "0.4.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" +dependencies = [ + "scopeguard", +] + +[[package]] +name = "log" +version = "0.4.33" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad" + +[[package]] +name = "malloc_buf" +version = "0.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb" +dependencies = [ + "libc", +] + +[[package]] +name = "matchers" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9" +dependencies = [ + "regex-automata", +] + +[[package]] +name = "matchit" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94" + +[[package]] +name = "md-5" +version = "0.10.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf" +dependencies = [ + "cfg-if", + "digest", +] + +[[package]] +name = "memchr" +version = "2.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98" + +[[package]] +name = "memmap2" +version = "0.9.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d1219ed1b7f229ee7104d281dd01d6802fe28bb6e95d292942c4daacdeb798c0" +dependencies = [ + "libc", +] + +[[package]] +name = "memoffset" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" +dependencies = [ + "autocfg", +] + +[[package]] +name = "metal" +version = "0.29.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7ecfd3296f8c56b7c1f6fbac3c71cefa9d78ce009850c45000015f206dc7fa21" +dependencies = [ + "bitflags 2.13.1", + "block", + "core-graphics-types", + "foreign-types 0.5.0", + "log", + "objc", + "paste", +] + +[[package]] +name = "mime" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" + +[[package]] +name = "mime_guess" +version = "2.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e" +dependencies = [ + "mime", + "unicase", +] + +[[package]] +name = "minimal-lexical" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" + +[[package]] +name = "miniz_oxide" +version = "0.8.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" +dependencies = [ + "adler2", + "simd-adler32", +] + +[[package]] +name = "mio" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "30d65c71f1ce40ab09135ce117d742b9f8a19ff91a41a8b57ed50bc2de59c427" +dependencies = [ + "libc", + "wasi", + "windows-sys 0.61.2", +] + +[[package]] +name = "moxcms" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb85c154ba489f01b25c0d36ae69a87e4a1c73a72631fc6c0eb6dde34a73e44b" +dependencies = [ + "num-traits", + "pxfm", +] + +[[package]] +name = "naga" +version = "22.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8bd5a652b6faf21496f2cfd88fc49989c8db0825d1f6746b1a71a6ede24a63ad" +dependencies = [ + "arrayvec", + "bit-set", + "bitflags 2.13.1", + "cfg_aliases 0.1.1", + "codespan-reporting", + "hexf-parse", + "indexmap", + "log", + "rustc-hash 1.1.0", + "spirv", + "termcolor", + "thiserror 1.0.69", + "unicode-xid", +] + +[[package]] +name = "native-tls" +version = "0.2.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "465500e14ea162429d264d44189adc38b199b62b1c21eea9f69e4b73cb03bbf2" +dependencies = [ + "libc", + "log", + "openssl", + "openssl-probe", + "openssl-sys", + "schannel", + "security-framework", + "security-framework-sys", + "tempfile", +] + +[[package]] +name = "ndk" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3f42e7bbe13d351b6bead8286a43aac9534b82bd3cc43e47037f012ebfd62d4" +dependencies = [ + "bitflags 2.13.1", + "jni-sys 0.3.1", + "log", + "ndk-sys 0.6.0+11769913", + "num_enum", + "raw-window-handle", + "thiserror 1.0.69", +] + +[[package]] +name = "ndk-context" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b" + +[[package]] +name = "ndk-sys" +version = "0.5.0+25.2.9519653" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8c196769dd60fd4f363e11d948139556a344e79d451aeb2fa2fd040738ef7691" +dependencies = [ + "jni-sys 0.3.1", +] + +[[package]] +name = "ndk-sys" +version = "0.6.0+11769913" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee6cda3051665f1fb8d9e08fc35c96d5a244fb1be711a03b71118828afc9a873" +dependencies = [ + "jni-sys 0.3.1", +] + +[[package]] +name = "nix" +version = "0.29.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46" +dependencies = [ + "bitflags 2.13.1", + "cfg-if", + "cfg_aliases 0.2.2", + "libc", + "memoffset", +] + +[[package]] +name = "nohash-hasher" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451" + +[[package]] +name = "nom" +version = "7.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" +dependencies = [ + "memchr", + "minimal-lexical", +] + +[[package]] +name = "nu-ansi-term" +version = "0.50.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5" +dependencies = [ + "windows-sys 0.61.2", +] + +[[package]] +name = "num-bigint-dig" +version = "0.8.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7" +dependencies = [ + "lazy_static", + "libm", + "num-integer", + "num-iter", + "num-traits", + "rand", + "smallvec", + "zeroize", +] + +[[package]] +name = "num-conv" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441" + +[[package]] +name = "num-integer" +version = "0.1.46" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" +dependencies = [ + "num-traits", +] + +[[package]] +name = "num-iter" +version = "0.1.46" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c92800bd69a1eac91786bcfe9da64a897eb72911b8dc3095decbd07429e8048b" +dependencies = [ + "num-integer", + "num-traits", +] + +[[package]] +name = "num-traits" +version = "0.2.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" +dependencies = [ + "autocfg", + "libm", +] + +[[package]] +name = "num_enum" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5d0bca838442ec211fa11de3a8b0e0e8f3a4522575b5c4c06ed722e005036f26" +dependencies = [ + "num_enum_derive", + "rustversion", +] + +[[package]] +name = "num_enum_derive" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "680998035259dcfcafe653688bf2aa6d3e2dc05e98be6ab46afb089dc84f1df8" +dependencies = [ + "proc-macro-crate", + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "objc" +version = "0.2.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1" +dependencies = [ + "malloc_buf", +] + +[[package]] +name = "objc-sys" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cdb91bdd390c7ce1a8607f35f3ca7151b65afc0ff5ff3b34fa350f7d7c7e4310" + +[[package]] +name = "objc2" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "46a785d4eeff09c14c487497c162e92766fbb3e4059a71840cecc03d9a50b804" +dependencies = [ + "objc-sys", + "objc2-encode", +] + +[[package]] +name = "objc2" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3a12a8ed07aefc768292f076dc3ac8c48f3781c8f2d5851dd3d98950e8c5a89f" +dependencies = [ + "objc2-encode", +] + +[[package]] +name = "objc2-app-kit" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e4e89ad9e3d7d297152b17d39ed92cd50ca8063a89a9fa569046d41568891eff" +dependencies = [ + "bitflags 2.13.1", + "block2", + "libc", + "objc2 0.5.2", + "objc2-core-data", + "objc2-core-image", + "objc2-foundation 0.2.2", + "objc2-quartz-core", +] + +[[package]] +name = "objc2-app-kit" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d49e936b501e5c5bf01fda3a9452ff86dc3ea98ad5f283e1455153142d97518c" +dependencies = [ + "bitflags 2.13.1", + "objc2 0.6.4", + "objc2-core-foundation", + "objc2-core-graphics", + "objc2-foundation 0.3.2", +] + +[[package]] +name = "objc2-cloud-kit" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "74dd3b56391c7a0596a295029734d3c1c5e7e510a4cb30245f8221ccea96b009" +dependencies = [ + "bitflags 2.13.1", + "block2", + "objc2 0.5.2", + "objc2-core-location", + "objc2-foundation 0.2.2", +] + +[[package]] +name = "objc2-contacts" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a5ff520e9c33812fd374d8deecef01d4a840e7b41862d849513de77e44aa4889" +dependencies = [ + "block2", + "objc2 0.5.2", + "objc2-foundation 0.2.2", +] + +[[package]] +name = "objc2-core-data" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "617fbf49e071c178c0b24c080767db52958f716d9eabdf0890523aeae54773ef" +dependencies = [ + "bitflags 2.13.1", + "block2", + "objc2 0.5.2", + "objc2-foundation 0.2.2", +] + +[[package]] +name = "objc2-core-foundation" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536" +dependencies = [ + "bitflags 2.13.1", + "dispatch2", + "objc2 0.6.4", +] + +[[package]] +name = "objc2-core-graphics" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e022c9d066895efa1345f8e33e584b9f958da2fd4cd116792e15e07e4720a807" +dependencies = [ + "bitflags 2.13.1", + "dispatch2", + "objc2 0.6.4", + "objc2-core-foundation", + "objc2-io-surface", +] + +[[package]] +name = "objc2-core-image" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "55260963a527c99f1819c4f8e3b47fe04f9650694ef348ffd2227e8196d34c80" +dependencies = [ + "block2", + "objc2 0.5.2", + "objc2-foundation 0.2.2", + "objc2-metal", +] + +[[package]] +name = "objc2-core-location" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "000cfee34e683244f284252ee206a27953279d370e309649dc3ee317b37e5781" +dependencies = [ + "block2", + "objc2 0.5.2", + "objc2-contacts", + "objc2-foundation 0.2.2", +] + +[[package]] +name = "objc2-encode" +version = "4.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33" + +[[package]] +name = "objc2-foundation" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ee638a5da3799329310ad4cfa62fbf045d5f56e3ef5ba4149e7452dcf89d5a8" +dependencies = [ + "bitflags 2.13.1", + "block2", + "dispatch", + "libc", + "objc2 0.5.2", +] + +[[package]] +name = "objc2-foundation" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3e0adef53c21f888deb4fa59fc59f7eb17404926ee8a6f59f5df0fd7f9f3272" +dependencies = [ + "bitflags 2.13.1", + "objc2 0.6.4", + "objc2-core-foundation", +] + +[[package]] +name = "objc2-io-surface" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "180788110936d59bab6bd83b6060ffdfffb3b922ba1396b312ae795e1de9d81d" +dependencies = [ + "bitflags 2.13.1", + "objc2 0.6.4", + "objc2-core-foundation", +] + +[[package]] +name = "objc2-link-presentation" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1a1ae721c5e35be65f01a03b6d2ac13a54cb4fa70d8a5da293d7b0020261398" +dependencies = [ + "block2", + "objc2 0.5.2", + "objc2-app-kit 0.2.2", + "objc2-foundation 0.2.2", +] + +[[package]] +name = "objc2-metal" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd0cba1276f6023976a406a14ffa85e1fdd19df6b0f737b063b95f6c8c7aadd6" +dependencies = [ + "bitflags 2.13.1", + "block2", + "objc2 0.5.2", + "objc2-foundation 0.2.2", +] + +[[package]] +name = "objc2-quartz-core" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e42bee7bff906b14b167da2bac5efe6b6a07e6f7c0a21a7308d40c960242dc7a" +dependencies = [ + "bitflags 2.13.1", + "block2", + "objc2 0.5.2", + "objc2-foundation 0.2.2", + "objc2-metal", +] + +[[package]] +name = "objc2-symbols" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0a684efe3dec1b305badae1a28f6555f6ddd3bb2c2267896782858d5a78404dc" +dependencies = [ + "objc2 0.5.2", + "objc2-foundation 0.2.2", +] + +[[package]] +name = "objc2-ui-kit" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8bb46798b20cd6b91cbd113524c490f1686f4c4e8f49502431415f3512e2b6f" +dependencies = [ + "bitflags 2.13.1", + "block2", + "objc2 0.5.2", + "objc2-cloud-kit", + "objc2-core-data", + "objc2-core-image", + "objc2-core-location", + "objc2-foundation 0.2.2", + "objc2-link-presentation", + "objc2-quartz-core", + "objc2-symbols", + "objc2-uniform-type-identifiers", + "objc2-user-notifications", +] + +[[package]] +name = "objc2-uniform-type-identifiers" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "44fa5f9748dbfe1ca6c0b79ad20725a11eca7c2218bceb4b005cb1be26273bfe" +dependencies = [ + "block2", + "objc2 0.5.2", + "objc2-foundation 0.2.2", +] + +[[package]] +name = "objc2-user-notifications" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "76cfcbf642358e8689af64cee815d139339f3ed8ad05103ed5eaf73db8d84cb3" +dependencies = [ + "bitflags 2.13.1", + "block2", + "objc2 0.5.2", + "objc2-core-location", + "objc2-foundation 0.2.2", +] + +[[package]] +name = "once_cell" +version = "1.21.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50" + +[[package]] +name = "openfut-bridge" +version = "0.1.0" +dependencies = [ + "aes", + "anyhow", + "axum", + "bytes", + "chrono", + "dotenvy", + "http 1.5.0", + "hyper 1.11.0", + "hyper-util", + "rcgen", + "reqwest", + "rustls", + "rustls-pemfile", + "serde", + "serde_json", + "thiserror 1.0.69", + "tokio", + "tokio-rustls", + "tokio-stream", + "tower 0.4.13", + "tower-http", + "tracing", + "tracing-subscriber", + "uuid", +] + +[[package]] +name = "openfut-core" +version = "0.1.0" +dependencies = [ + "anyhow", + "axum", + "axum-macros", + "axum-test", + "chrono", + "dotenvy", + "http 1.5.0", + "rand", + "serde", + "serde_json", + "sqlx", + "thiserror 1.0.69", + "tokio", + "tower 0.5.3", + "tower-http", + "tracing", + "tracing-subscriber", + "uuid", +] + +[[package]] +name = "openfut-hook" +version = "0.1.0" +dependencies = [ + "windows-sys 0.59.0", +] + +[[package]] +name = "openfut-launcher" +version = "0.1.0" +dependencies = [ + "anyhow", + "chrono", + "dirs", + "eframe", + "egui", + "serde", + "serde_json", + "tokio", +] + +[[package]] +name = "openssl" +version = "0.10.81" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77823a27f0babb03091cb9ed9ef80af3b39dbc82f97e8fa530374b7dafd87a45" +dependencies = [ + "bitflags 2.13.1", + "cfg-if", + "foreign-types 0.3.2", + "libc", + "openssl-macros", + "openssl-sys", +] + +[[package]] +name = "openssl-macros" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "openssl-probe" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe" + +[[package]] +name = "openssl-sys" +version = "0.9.117" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b47e7e6bb2c38cd930d25a23b40fa52e068c10e85f3e03a7f5ba5aaca5713695" +dependencies = [ + "cc", + "libc", + "pkg-config", + "vcpkg", +] + +[[package]] +name = "option-ext" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" + +[[package]] +name = "orbclient" +version = "0.3.55" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5df339f526ea9a60e371768d50efc2f2508c7203290731565d1f7a6f71d21747" +dependencies = [ + "libc", + "libredox", +] + +[[package]] +name = "ordered-stream" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50" +dependencies = [ + "futures-core", + "pin-project-lite", +] + +[[package]] +name = "owned_ttf_parser" +version = "0.25.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "36820e9051aca1014ddc75770aab4d68bc1e9e632f0f5627c4086bc216fb583b" +dependencies = [ + "ttf-parser", +] + +[[package]] +name = "parking" +version = "2.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" + +[[package]] +name = "parking_lot" +version = "0.12.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" +dependencies = [ + "lock_api", + "parking_lot_core", +] + +[[package]] +name = "parking_lot_core" +version = "0.9.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" +dependencies = [ + "cfg-if", + "libc", + "redox_syscall 0.5.18", + "smallvec", + "windows-link", +] + +[[package]] +name = "paste" +version = "1.0.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" + +[[package]] +name = "pem" +version = "3.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be" +dependencies = [ + "base64 0.22.1", + "serde_core", +] + +[[package]] +name = "pem-rfc7468" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412" +dependencies = [ + "base64ct", +] + +[[package]] +name = "percent-encoding" +version = "2.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" + +[[package]] +name = "pin-project" +version = "1.1.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2466b2336ed02bcdca6b294417127b90ec92038d1d5c4fbeac971a922e0e0924" +dependencies = [ + "pin-project-internal", +] + +[[package]] +name = "pin-project-internal" +version = "1.1.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c96395f0a926bc13b1c17622aaddda1ecb55d49c8f1bf9777e4d877800a43f8b" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "pin-project-lite" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd" + +[[package]] +name = "piper" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c835479a4443ded371d6c535cbfd8d31ad92c5d23ae9770a61bc155e4992a3c1" +dependencies = [ + "atomic-waker", + "fastrand", + "futures-io", +] + +[[package]] +name = "pkcs1" +version = "0.7.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f" +dependencies = [ + "der", + "pkcs8", + "spki", +] + +[[package]] +name = "pkcs8" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" +dependencies = [ + "der", + "spki", +] + +[[package]] +name = "pkg-config" +version = "0.3.33" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e" + +[[package]] +name = "plain" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6" + +[[package]] +name = "png" +version = "0.18.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "60769b8b31b2a9f263dae2776c37b1b28ae246943cf719eb6946a1db05128a61" +dependencies = [ + "bitflags 2.13.1", + "crc32fast", + "fdeflate", + "flate2", + "miniz_oxide", +] + +[[package]] +name = "polling" +version = "3.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5d0e4f59085d47d8241c88ead0f274e8a0cb551f3625263c05eb8dd897c34218" +dependencies = [ + "cfg-if", + "concurrent-queue", + "hermit-abi", + "pin-project-lite", + "rustix 1.1.4", + "windows-sys 0.61.2", +] + +[[package]] +name = "potential_utf" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564" +dependencies = [ + "zerovec", +] + +[[package]] +name = "powerfmt" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" + +[[package]] +name = "ppv-lite86" +version = "0.2.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" +dependencies = [ + "zerocopy", +] + +[[package]] +name = "presser" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e8cf8e6a8aa66ce33f63993ffc4ea4271eb5b0530a9002db8455ea6050c77bfa" + +[[package]] +name = "pretty_assertions" +version = "1.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d" +dependencies = [ + "diff", + "yansi", +] + +[[package]] +name = "proc-macro-crate" +version = "3.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f" +dependencies = [ + "toml_edit 0.25.13+spec-1.1.0", +] + +[[package]] +name = "proc-macro2" +version = "1.0.107" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "profiling" +version = "1.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3d595e54a326bc53c1c197b32d295e14b169e3cfeaa8dc82b529f947fba6bcf5" + +[[package]] +name = "pxfm" +version = "0.1.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d55d956fa96f5ec02be2e13af0e20391a5aa83d6a074e3ad368959d0fab299ea" + +[[package]] +name = "quick-xml" +version = "0.30.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eff6510e86862b57b210fd8cbe8ed3f0d7d600b9c2863cd4549a2e033c66e956" +dependencies = [ + "memchr", + "serde", +] + +[[package]] +name = "quick-xml" +version = "0.41.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e660451e55124f798a69a5af3f49ccfbefbd41910eefd25caf2393e1f3473ec1" +dependencies = [ + "memchr", +] + +[[package]] +name = "quote" +version = "1.0.47" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001" +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 = "r-efi" +version = "6.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf" + +[[package]] +name = "rand" +version = "0.8.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "22f6172bdec972074665ed81ed53b71da00bfc44b65a753cfde883ec4c702a1a" +dependencies = [ + "libc", + "rand_chacha", + "rand_core", +] + +[[package]] +name = "rand_chacha" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" +dependencies = [ + "ppv-lite86", + "rand_core", +] + +[[package]] +name = "rand_core" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" +dependencies = [ + "getrandom 0.2.17", +] + +[[package]] +name = "raw-window-handle" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539" + +[[package]] +name = "rcgen" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52c4f3084aa3bc7dfbba4eff4fab2a54db4324965d8872ab933565e6fbd83bc6" +dependencies = [ + "pem", + "ring 0.16.20", + "time", + "yasna", +] + +[[package]] +name = "redox_syscall" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" +dependencies = [ + "bitflags 1.3.2", +] + +[[package]] +name = "redox_syscall" +version = "0.5.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" +dependencies = [ + "bitflags 2.13.1", +] + +[[package]] +name = "redox_syscall" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "07507be7b4a5f9f26eeb41eeaebb1f5a7ff29dfb29739facc21d35bf8b11c21e" +dependencies = [ + "bitflags 2.13.1", +] + +[[package]] +name = "redox_users" +version = "0.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43" +dependencies = [ + "getrandom 0.2.17", + "libredox", + "thiserror 1.0.69", +] + +[[package]] +name = "regex-automata" +version = "0.4.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8fcfdb36bda0c880c5931cdc7a2bcdc8ba4556847b9d912bca70bc94708711ad" +dependencies = [ + "aho-corasick", + "memchr", + "regex-syntax", +] + +[[package]] +name = "regex-syntax" +version = "0.8.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4" + +[[package]] +name = "renderdoc-sys" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "19b30a45b0cd0bcca8037f3d0dc3421eaf95327a17cad11964fb8179b4fc4832" + +[[package]] +name = "reqwest" +version = "0.11.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62" +dependencies = [ + "base64 0.21.7", + "bytes", + "encoding_rs", + "futures-core", + "futures-util", + "h2 0.3.27", + "http 0.2.12", + "http-body 0.4.6", + "hyper 0.14.32", + "hyper-rustls", + "hyper-tls", + "ipnet", + "js-sys", + "log", + "mime", + "native-tls", + "once_cell", + "percent-encoding", + "pin-project-lite", + "rustls", + "rustls-pemfile", + "serde", + "serde_json", + "serde_urlencoded", + "sync_wrapper 0.1.2", + "system-configuration", + "tokio", + "tokio-native-tls", + "tokio-rustls", + "tower-service", + "url", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", + "webpki-roots", + "winreg", +] + +[[package]] +name = "reserve-port" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "71ea98a177596a4579881992bd2bd4af27772fc95d0e5f5668a8f9535eca6380" +dependencies = [ + "thiserror 2.0.19", +] + +[[package]] +name = "ring" +version = "0.16.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" +dependencies = [ + "cc", + "libc", + "once_cell", + "spin 0.5.2", + "untrusted 0.7.1", + "web-sys", + "winapi", +] + +[[package]] +name = "ring" +version = "0.17.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" +dependencies = [ + "cc", + "cfg-if", + "getrandom 0.2.17", + "libc", + "untrusted 0.9.0", + "windows-sys 0.52.0", +] + +[[package]] +name = "rsa" +version = "0.9.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8573f03f5883dcaebdfcf4725caa1ecb9c15b2ef50c43a07b816e06799bb12d" +dependencies = [ + "const-oid", + "digest", + "num-bigint-dig", + "num-integer", + "num-traits", + "pkcs1", + "pkcs8", + "rand_core", + "signature", + "spki", + "subtle", + "zeroize", +] + +[[package]] +name = "rust-multipart-rfc7578_2" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "03b748410c0afdef2ebbe3685a6a862e2ee937127cdaae623336a459451c8d57" +dependencies = [ + "bytes", + "futures-core", + "futures-util", + "http 0.2.12", + "mime", + "mime_guess", + "rand", + "thiserror 1.0.69", +] + +[[package]] +name = "rustc-hash" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" + +[[package]] +name = "rustc-hash" +version = "2.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d" + +[[package]] +name = "rustc_version" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" +dependencies = [ + "semver", +] + +[[package]] +name = "rustix" +version = "0.38.44" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154" +dependencies = [ + "bitflags 2.13.1", + "errno", + "libc", + "linux-raw-sys 0.4.15", + "windows-sys 0.59.0", +] + +[[package]] +name = "rustix" +version = "1.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190" +dependencies = [ + "bitflags 2.13.1", + "errno", + "libc", + "linux-raw-sys 0.12.1", + "windows-sys 0.61.2", +] + +[[package]] +name = "rustls" +version = "0.21.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e" +dependencies = [ + "log", + "ring 0.17.14", + "rustls-webpki", + "sct", +] + +[[package]] +name = "rustls-pemfile" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" +dependencies = [ + "base64 0.21.7", +] + +[[package]] +name = "rustls-webpki" +version = "0.101.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765" +dependencies = [ + "ring 0.17.14", + "untrusted 0.9.0", +] + +[[package]] +name = "rustversion" +version = "1.0.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f" + +[[package]] +name = "ryu" +version = "1.0.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f" + +[[package]] +name = "same-file" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" +dependencies = [ + "winapi-util", +] + +[[package]] +name = "schannel" +version = "0.1.29" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939" +dependencies = [ + "windows-sys 0.61.2", +] + +[[package]] +name = "scoped-tls" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" + +[[package]] +name = "scopeguard" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" + +[[package]] +name = "sct" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" +dependencies = [ + "ring 0.17.14", + "untrusted 0.9.0", +] + +[[package]] +name = "sctk-adwaita" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6277f0217056f77f1d8f49f2950ac6c278c0d607c45f5ee99328d792ede24ec" +dependencies = [ + "ab_glyph", + "log", + "memmap2", + "smithay-client-toolkit 0.19.2", + "tiny-skia", +] + +[[package]] +name = "security-framework" +version = "3.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d" +dependencies = [ + "bitflags 2.13.1", + "core-foundation 0.10.1", + "core-foundation-sys", + "libc", + "security-framework-sys", +] + +[[package]] +name = "security-framework-sys" +version = "2.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "semver" +version = "1.0.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd" + +[[package]] +name = "serde" +version = "1.0.229" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba" +dependencies = [ + "serde_core", + "serde_derive", +] + +[[package]] +name = "serde_core" +version = "1.0.229" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48" +dependencies = [ + "serde_derive", +] + +[[package]] +name = "serde_derive" +version = "1.0.229" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348" +dependencies = [ + "proc-macro2", + "quote", + "syn 3.0.3", +] + +[[package]] +name = "serde_json" +version = "1.0.151" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14" +dependencies = [ + "itoa", + "memchr", + "serde", + "serde_core", + "zmij", +] + +[[package]] +name = "serde_path_to_error" +version = "0.1.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457" +dependencies = [ + "itoa", + "serde", + "serde_core", +] + +[[package]] +name = "serde_repr" +version = "0.1.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8d3b1629de253c70a0508c3899572da79ca359fdab27c7920ff00406df418906" +dependencies = [ + "proc-macro2", + "quote", + "syn 3.0.3", +] + +[[package]] +name = "serde_spanned" +version = "0.6.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3" +dependencies = [ + "serde", +] + +[[package]] +name = "serde_urlencoded" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" +dependencies = [ + "form_urlencoded", + "itoa", + "ryu", + "serde", +] + +[[package]] +name = "server" +version = "0.1.0" +dependencies = [ + "anyhow", + "blaze-proto", + "blaze-ssl-async", + "bytes", + "chrono", + "futures-util", + "hex", + "serde", + "serde_json", + "tdf", + "tokio", + "tokio-util", + "toml", + "tracing", + "tracing-subscriber", +] + +[[package]] +name = "sha1" +version = "0.10.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a978451301f4db1d02937a4ab3ccce137717b81826e79b7d49ffe3244a13c3b8" +dependencies = [ + "cfg-if", + "cpufeatures", + "digest", +] + +[[package]] +name = "sha2" +version = "0.10.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" +dependencies = [ + "cfg-if", + "cpufeatures", + "digest", +] + +[[package]] +name = "sharded-slab" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" +dependencies = [ + "lazy_static", +] + +[[package]] +name = "shlex" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba" + +[[package]] +name = "signal-hook-registry" +version = "1.4.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b" +dependencies = [ + "errno", + "libc", +] + +[[package]] +name = "signature" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" +dependencies = [ + "digest", + "rand_core", +] + +[[package]] +name = "simd-adler32" +version = "0.3.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea" + +[[package]] +name = "simd_cesu8" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "11031e251abf8611c80f460e19dbdeb54a66db918e49c65a7065b46ac7aec520" +dependencies = [ + "rustc_version", + "simdutf8", +] + +[[package]] +name = "simdutf8" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e" + +[[package]] +name = "slab" +version = "0.4.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5" + +[[package]] +name = "slotmap" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bdd58c3c93c3d278ca835519292445cb4b0d4dc59ccfdf7ceadaab3f8aeb4038" +dependencies = [ + "version_check", +] + +[[package]] +name = "smallvec" +version = "1.15.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90" + +[[package]] +name = "smithay-client-toolkit" +version = "0.19.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3457dea1f0eb631b4034d61d4d8c32074caa6cd1ab2d59f2327bd8461e2c0016" +dependencies = [ + "bitflags 2.13.1", + "calloop 0.13.0", + "calloop-wayland-source 0.3.0", + "cursor-icon", + "libc", + "log", + "memmap2", + "rustix 0.38.44", + "thiserror 1.0.69", + "wayland-backend", + "wayland-client", + "wayland-csd-frame", + "wayland-cursor", + "wayland-protocols", + "wayland-protocols-wlr", + "wayland-scanner", + "xkeysym", +] + +[[package]] +name = "smithay-client-toolkit" +version = "0.20.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0512da38f5e2b31201a93524adb8d3136276fa4fe4aafab4e1f727a82b534cc0" +dependencies = [ + "bitflags 2.13.1", + "calloop 0.14.4", + "calloop-wayland-source 0.4.1", + "cursor-icon", + "libc", + "log", + "memmap2", + "rustix 1.1.4", + "thiserror 2.0.19", + "wayland-backend", + "wayland-client", + "wayland-csd-frame", + "wayland-cursor", + "wayland-protocols", + "wayland-protocols-experimental", + "wayland-protocols-misc", + "wayland-protocols-wlr", + "wayland-scanner", + "xkeysym", +] + +[[package]] +name = "smithay-clipboard" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "71704c03f739f7745053bde45fa203a46c58d25bc5c4efba1d9a60e9dba81226" +dependencies = [ + "libc", + "smithay-client-toolkit 0.20.0", + "wayland-backend", +] + +[[package]] +name = "smol_str" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd538fb6910ac1099850255cf94a94df6551fbdd602454387d0adb2d1ca6dead" +dependencies = [ + "serde", +] + +[[package]] +name = "socket2" +version = "0.5.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678" +dependencies = [ + "libc", + "windows-sys 0.52.0", +] + +[[package]] +name = "socket2" +version = "0.6.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3d1e2c7f27f8d4cb10542a02c49005dbd6e93095799d6f3be745fae9f8fedd4" +dependencies = [ + "libc", + "windows-sys 0.61.2", +] + +[[package]] +name = "spin" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" + +[[package]] +name = "spin" +version = "0.9.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3763264f6b73151db08c50ff20d7d8a0b8796e021cdea7ceedad07b80155fa0e" +dependencies = [ + "lock_api", +] + +[[package]] +name = "spirv" +version = "0.3.0+sdk-1.3.268.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eda41003dc44290527a59b13432d4a0379379fa074b70174882adfbdfd917844" +dependencies = [ + "bitflags 2.13.1", +] + +[[package]] +name = "spki" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d" +dependencies = [ + "base64ct", + "der", +] + +[[package]] +name = "sqlformat" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7bba3a93db0cc4f7bdece8bb09e77e2e785c20bfebf79eb8340ed80708048790" +dependencies = [ + "nom", + "unicode_categories", +] + +[[package]] +name = "sqlx" +version = "0.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c9a2ccff1a000a5a59cd33da541d9f2fdcd9e6e8229cc200565942bff36d0aaa" +dependencies = [ + "sqlx-core", + "sqlx-macros", + "sqlx-mysql", + "sqlx-postgres", + "sqlx-sqlite", +] + +[[package]] +name = "sqlx-core" +version = "0.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "24ba59a9342a3d9bab6c56c118be528b27c9b60e490080e9711a04dccac83ef6" +dependencies = [ + "ahash", + "atoi", + "byteorder", + "bytes", + "chrono", + "crc", + "crossbeam-queue", + "either", + "event-listener 2.5.3", + "futures-channel", + "futures-core", + "futures-intrusive", + "futures-io", + "futures-util", + "hashlink", + "hex", + "indexmap", + "log", + "memchr", + "once_cell", + "paste", + "percent-encoding", + "rustls", + "rustls-pemfile", + "serde", + "serde_json", + "sha2", + "smallvec", + "sqlformat", + "thiserror 1.0.69", + "tokio", + "tokio-stream", + "tracing", + "url", + "uuid", + "webpki-roots", +] + +[[package]] +name = "sqlx-macros" +version = "0.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4ea40e2345eb2faa9e1e5e326db8c34711317d2b5e08d0d5741619048a803127" +dependencies = [ + "proc-macro2", + "quote", + "sqlx-core", + "sqlx-macros-core", + "syn 1.0.109", +] + +[[package]] +name = "sqlx-macros-core" +version = "0.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5833ef53aaa16d860e92123292f1f6a3d53c34ba8b1969f152ef1a7bb803f3c8" +dependencies = [ + "dotenvy", + "either", + "heck", + "hex", + "once_cell", + "proc-macro2", + "quote", + "serde", + "serde_json", + "sha2", + "sqlx-core", + "sqlx-mysql", + "sqlx-postgres", + "sqlx-sqlite", + "syn 1.0.109", + "tempfile", + "tokio", + "url", +] + +[[package]] +name = "sqlx-mysql" +version = "0.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ed31390216d20e538e447a7a9b959e06ed9fc51c37b514b46eb758016ecd418" +dependencies = [ + "atoi", + "base64 0.21.7", + "bitflags 2.13.1", + "byteorder", + "bytes", + "chrono", + "crc", + "digest", + "dotenvy", + "either", + "futures-channel", + "futures-core", + "futures-io", + "futures-util", + "generic-array", + "hex", + "hkdf", + "hmac", + "itoa", + "log", + "md-5", + "memchr", + "once_cell", + "percent-encoding", + "rand", + "rsa", + "serde", + "sha1", + "sha2", + "smallvec", + "sqlx-core", + "stringprep", + "thiserror 1.0.69", + "tracing", + "uuid", + "whoami", +] + +[[package]] +name = "sqlx-postgres" +version = "0.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7c824eb80b894f926f89a0b9da0c7f435d27cdd35b8c655b114e58223918577e" +dependencies = [ + "atoi", + "base64 0.21.7", + "bitflags 2.13.1", + "byteorder", + "chrono", + "crc", + "dotenvy", + "etcetera", + "futures-channel", + "futures-core", + "futures-io", + "futures-util", + "hex", + "hkdf", + "hmac", + "home", + "itoa", + "log", + "md-5", + "memchr", + "once_cell", + "rand", + "serde", + "serde_json", + "sha2", + "smallvec", + "sqlx-core", + "stringprep", + "thiserror 1.0.69", + "tracing", + "uuid", + "whoami", +] + +[[package]] +name = "sqlx-sqlite" +version = "0.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b244ef0a8414da0bed4bb1910426e890b19e5e9bccc27ada6b797d05c55ae0aa" +dependencies = [ + "atoi", + "chrono", + "flume", + "futures-channel", + "futures-core", + "futures-executor", + "futures-intrusive", + "futures-util", + "libsqlite3-sys", + "log", + "percent-encoding", + "serde", + "sqlx-core", + "tracing", + "url", + "urlencoding", + "uuid", +] + +[[package]] +name = "stable_deref_trait" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" + +[[package]] +name = "static_assertions" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" + +[[package]] +name = "strict-num" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6637bab7722d379c8b41ba849228d680cc12d0a45ba1fa2b48f2a30577a06731" + +[[package]] +name = "stringprep" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1" +dependencies = [ + "unicode-bidi", + "unicode-normalization", + "unicode-properties", +] + +[[package]] +name = "strsim" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" + +[[package]] +name = "subtle" +version = "2.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" + +[[package]] +name = "syn" +version = "1.0.109" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "syn" +version = "2.0.119" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "syn" +version = "3.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "sync_wrapper" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" + +[[package]] +name = "sync_wrapper" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" + +[[package]] +name = "synstructure" +version = "0.13.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "system-configuration" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7" +dependencies = [ + "bitflags 1.3.2", + "core-foundation 0.9.4", + "system-configuration-sys", +] + +[[package]] +name = "system-configuration-sys" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "tdf" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "140a16f6272972ab2718a1152f5844faa7ab23c31771e6bfe8271b1e59dc7884" +dependencies = [ + "serde", + "tdf-derive", +] + +[[package]] +name = "tdf-derive" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd55cd8859658cb77bea257d1964502f12068ba6f80c88eee00acb64122bab73" +dependencies = [ + "darling", + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "tempfile" +version = "3.27.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd" +dependencies = [ + "fastrand", + "getrandom 0.4.3", + "once_cell", + "rustix 1.1.4", + "windows-sys 0.61.2", +] + +[[package]] +name = "termcolor" +version = "1.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755" +dependencies = [ + "winapi-util", +] + +[[package]] +name = "thiserror" +version = "1.0.69" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" +dependencies = [ + "thiserror-impl 1.0.69", +] + +[[package]] +name = "thiserror" +version = "2.0.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09a43598840e33d5b0331f38c5e30d13bb11c11210a4b58f0d9b18a5a5eefcd9" +dependencies = [ + "thiserror-impl 2.0.19", +] + +[[package]] +name = "thiserror-impl" +version = "1.0.69" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "thiserror-impl" +version = "2.0.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "43cbfe0cf76104d42a574802844187e84a305e531ed54455f11fbde0f10541cd" +dependencies = [ + "proc-macro2", + "quote", + "syn 3.0.3", +] + +[[package]] +name = "thread_local" +version = "1.1.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ad99c4c6d32803332c548b1af0540b357b3f5fc0be8f6c6bfe8b2e6ae784070" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "time" +version = "0.3.55" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cdb87b95ec50ddfa440816d227a17b2ccbdda963a316a727fda0fc4334f7d134" +dependencies = [ + "deranged", + "num-conv", + "powerfmt", + "serde_core", + "time-core", + "time-macros", +] + +[[package]] +name = "time-core" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9e1c906769ad99c88eaa54e728060edef082f8e358ff32030cb7c7d315e81109" + +[[package]] +name = "time-macros" +version = "0.2.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7e689342a48d2ea927c87ea50cabf8594854bf940e9310208848d680d668ed85" +dependencies = [ + "num-conv", + "time-core", +] + +[[package]] +name = "tiny-skia" +version = "0.11.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "83d13394d44dae3207b52a326c0c85a8bf87f1541f23b0d143811088497b09ab" +dependencies = [ + "arrayref", + "arrayvec", + "bytemuck", + "cfg-if", + "log", + "tiny-skia-path", +] + +[[package]] +name = "tiny-skia-path" +version = "0.11.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c9e7fc0c2e86a30b117d0462aa261b72b7a99b7ebd7deb3a14ceda95c5bdc93" +dependencies = [ + "arrayref", + "bytemuck", + "strict-num", +] + +[[package]] +name = "tinystr" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d" +dependencies = [ + "displaydoc", + "zerovec", +] + +[[package]] +name = "tinyvec" +version = "1.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb4ebadaa0af04fab11ae01eb5f9fdb5f9c5b875506e210e71c07873528baa7f" +dependencies = [ + "tinyvec_macros", +] + +[[package]] +name = "tinyvec_macros" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" + +[[package]] +name = "tls_codec" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0de2e01245e2bb89d6f05801c564fa27624dbd7b1846859876c7dad82e90bf6b" +dependencies = [ + "tls_codec_derive", + "zeroize", +] + +[[package]] +name = "tls_codec_derive" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2d2e76690929402faae40aebdda620a2c0e25dd6d3b9afe48867dfd95991f4bd" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "tokio" +version = "1.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "202caea871b69668250d242070849eb495be178ed697a3e98aebce5bc81a0bed" +dependencies = [ + "bytes", + "libc", + "mio", + "parking_lot", + "pin-project-lite", + "signal-hook-registry", + "socket2 0.6.5", + "tokio-macros", + "windows-sys 0.61.2", +] + +[[package]] +name = "tokio-macros" +version = "2.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "78773a2a397f451582ce068015985c33193cf6dea8b74d2a639fe457b2f07b0e" +dependencies = [ + "proc-macro2", + "quote", + "syn 3.0.3", +] + +[[package]] +name = "tokio-native-tls" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" +dependencies = [ + "native-tls", + "tokio", +] + +[[package]] +name = "tokio-rustls" +version = "0.24.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081" +dependencies = [ + "rustls", + "tokio", +] + +[[package]] +name = "tokio-stream" +version = "0.1.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a3d06f0b082ba57c26b79407372e57cf2a1e28124f78e9479fe80322cf53420b" +dependencies = [ + "futures-core", + "pin-project-lite", + "tokio", + "tokio-util", +] + +[[package]] +name = "tokio-util" +version = "0.7.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "494815d09bf52b5548659851081238f0ca39ff638363907596da739561c62c52" +dependencies = [ + "bytes", + "futures-core", + "futures-sink", + "libc", + "pin-project-lite", + "tokio", +] + +[[package]] +name = "toml" +version = "0.8.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362" +dependencies = [ + "serde", + "serde_spanned", + "toml_datetime 0.6.11", + "toml_edit 0.22.27", +] + +[[package]] +name = "toml_datetime" +version = "0.6.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c" +dependencies = [ + "serde", +] + +[[package]] +name = "toml_datetime" +version = "1.1.1+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7" +dependencies = [ + "serde_core", +] + +[[package]] +name = "toml_edit" +version = "0.22.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a" +dependencies = [ + "indexmap", + "serde", + "serde_spanned", + "toml_datetime 0.6.11", + "toml_write", + "winnow 0.7.15", +] + +[[package]] +name = "toml_edit" +version = "0.25.13+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6975367e4d2ef766d86af01ffad14b622fecc8d4357a998fbc4deb6e9bacaf9b" +dependencies = [ + "indexmap", + "toml_datetime 1.1.1+spec-1.1.0", + "toml_parser", + "winnow 1.0.4", +] + +[[package]] +name = "toml_parser" +version = "1.1.3+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d38ac1cf9b95face32296c0a3ede1fdc270627c9d9c02a7274dd6d960dc4d56" +dependencies = [ + "winnow 1.0.4", +] + +[[package]] +name = "toml_write" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801" + +[[package]] +name = "tower" +version = "0.4.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c" +dependencies = [ + "futures-core", + "futures-util", + "pin-project", + "pin-project-lite", + "tokio", + "tower-layer", + "tower-service", + "tracing", +] + +[[package]] +name = "tower" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4" +dependencies = [ + "futures-core", + "futures-util", + "pin-project-lite", + "sync_wrapper 1.0.2", + "tokio", + "tower-layer", + "tower-service", + "tracing", +] + +[[package]] +name = "tower-http" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e9cd434a998747dd2c4276bc96ee2e0c7a2eadf3cae88e52be55a05fa9053f5" +dependencies = [ + "bitflags 2.13.1", + "bytes", + "http 1.5.0", + "http-body 1.1.0", + "http-body-util", + "pin-project-lite", + "tower-layer", + "tower-service", + "tracing", + "uuid", +] + +[[package]] +name = "tower-layer" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" + +[[package]] +name = "tower-service" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" + +[[package]] +name = "tracing" +version = "0.1.44" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" +dependencies = [ + "log", + "pin-project-lite", + "tracing-attributes", + "tracing-core", +] + +[[package]] +name = "tracing-attributes" +version = "0.1.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "tracing-core" +version = "0.1.36" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" +dependencies = [ + "once_cell", + "valuable", +] + +[[package]] +name = "tracing-log" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" +dependencies = [ + "log", + "once_cell", + "tracing-core", +] + +[[package]] +name = "tracing-subscriber" +version = "0.3.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319" +dependencies = [ + "matchers", + "nu-ansi-term", + "once_cell", + "regex-automata", + "sharded-slab", + "smallvec", + "thread_local", + "tracing", + "tracing-core", + "tracing-log", +] + +[[package]] +name = "try-lock" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" + +[[package]] +name = "ttf-parser" +version = "0.25.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d2df906b07856748fa3f6e0ad0cbaa047052d4a7dd609e231c4f72cee8c36f31" + +[[package]] +name = "type-map" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb30dbbd9036155e74adad6812e9898d03ec374946234fbcebd5dfc7b9187b90" +dependencies = [ + "rustc-hash 2.1.3", +] + +[[package]] +name = "typenum" +version = "1.20.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20" + +[[package]] +name = "uds_windows" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2f6fb2847f6742cd76af783a2a2c49e9375d0a111c7bef6f71cd9e738c72d6e" +dependencies = [ + "memoffset", + "tempfile", + "windows-sys 0.61.2", +] + +[[package]] +name = "unicase" +version = "2.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142" + +[[package]] +name = "unicode-bidi" +version = "0.3.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5" + +[[package]] +name = "unicode-ident" +version = "1.0.24" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75" + +[[package]] +name = "unicode-normalization" +version = "0.1.25" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8" +dependencies = [ + "tinyvec", +] + +[[package]] +name = "unicode-properties" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7df058c713841ad818f1dc5d3fd88063241cc61f49f5fbea4b951e8cf5a8d71d" + +[[package]] +name = "unicode-segmentation" +version = "1.13.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8" + +[[package]] +name = "unicode-width" +version = "0.1.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" + +[[package]] +name = "unicode-xid" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" + +[[package]] +name = "unicode_categories" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e" + +[[package]] +name = "untrusted" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" + +[[package]] +name = "untrusted" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" + +[[package]] +name = "url" +version = "2.5.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed" +dependencies = [ + "form_urlencoded", + "idna", + "percent-encoding", + "serde", +] + +[[package]] +name = "urlencoding" +version = "2.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da" + +[[package]] +name = "utf8_iter" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" + +[[package]] +name = "uuid" +version = "1.24.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bf3923a6f5c4c6382e0b653c4117f48d631ea17f38ed86e2a828e6f7412f5239" +dependencies = [ + "getrandom 0.4.3", + "js-sys", + "serde_core", + "wasm-bindgen", +] + +[[package]] +name = "valuable" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65" + +[[package]] +name = "vcpkg" +version = "0.2.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" + +[[package]] +name = "version_check" +version = "0.9.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" + +[[package]] +name = "walkdir" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" +dependencies = [ + "same-file", + "winapi-util", +] + +[[package]] +name = "want" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" +dependencies = [ + "try-lock", +] + +[[package]] +name = "wasi" +version = "0.11.1+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" + +[[package]] +name = "wasip2" +version = "1.0.4+wasi-0.2.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487" +dependencies = [ + "wit-bindgen", +] + +[[package]] +name = "wasite" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b" + +[[package]] +name = "wasm-bindgen" +version = "0.2.126" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4" +dependencies = [ + "cfg-if", + "once_cell", + "rustversion", + "wasm-bindgen-macro", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-futures" +version = "0.4.76" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c62df1340f32221cb9c54d6a27b030e3dba64361d4a95bed55f9aacb44da291d" +dependencies = [ + "js-sys", + "wasm-bindgen", +] + +[[package]] +name = "wasm-bindgen-macro" +version = "0.2.126" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1" +dependencies = [ + "quote", + "wasm-bindgen-macro-support", +] + +[[package]] +name = "wasm-bindgen-macro-support" +version = "0.2.126" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e" +dependencies = [ + "bumpalo", + "proc-macro2", + "quote", + "syn 2.0.119", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-shared" +version = "0.2.126" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "wayland-backend" +version = "0.3.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "016ccf01d1c58b6f8999612813e17c9b2390f7d70671428869913310f83f54b8" +dependencies = [ + "cc", + "downcast-rs", + "rustix 1.1.4", + "scoped-tls", + "smallvec", + "wayland-sys", +] + +[[package]] +name = "wayland-client" +version = "0.31.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3c36a0f861ad76d0901f2800b46321410d9f73f2ea88aac0650d86c32688073" +dependencies = [ + "bitflags 2.13.1", + "rustix 1.1.4", + "wayland-backend", + "wayland-scanner", +] + +[[package]] +name = "wayland-csd-frame" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "625c5029dbd43d25e6aa9615e88b829a5cad13b2819c4ae129fdbb7c31ab4c7e" +dependencies = [ + "bitflags 2.13.1", + "cursor-icon", + "wayland-backend", +] + +[[package]] +name = "wayland-cursor" +version = "0.31.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4a52d18780be9b1314328a3de5f930b73d2200112e3849ca6cb11822793fb34d" +dependencies = [ + "rustix 1.1.4", + "wayland-client", + "xcursor", +] + +[[package]] +name = "wayland-protocols" +version = "0.32.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "23d0c813de3daa2ed6520af85a3bd49b0e722a3078506899aa9686fea58dc4b6" +dependencies = [ + "bitflags 2.13.1", + "wayland-backend", + "wayland-client", + "wayland-scanner", +] + +[[package]] +name = "wayland-protocols-experimental" +version = "20250721.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "40a1f863128dcaaec790d7b4b396cc9b9a7a079e878e18c47e6c2d2c5a8dcbb1" +dependencies = [ + "bitflags 2.13.1", + "wayland-backend", + "wayland-client", + "wayland-protocols", + "wayland-scanner", +] + +[[package]] +name = "wayland-protocols-misc" +version = "0.3.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e9567599ef23e09b8dad6e429e5738d4509dfc46b3b21f32841a304d16b29c8" +dependencies = [ + "bitflags 2.13.1", + "wayland-backend", + "wayland-client", + "wayland-protocols", + "wayland-scanner", +] + +[[package]] +name = "wayland-protocols-plasma" +version = "0.3.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b6d8cf1eb2c1c31ed1f5643c88a6e53538129d4af80030c8cabd1f9fa884d91" +dependencies = [ + "bitflags 2.13.1", + "wayland-backend", + "wayland-client", + "wayland-protocols", + "wayland-scanner", +] + +[[package]] +name = "wayland-protocols-wlr" +version = "0.3.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eb04e52f7836d7c7976c78ca0250d61e33873c34156a2a1fc9474828ec268234" +dependencies = [ + "bitflags 2.13.1", + "wayland-backend", + "wayland-client", + "wayland-protocols", + "wayland-scanner", +] + +[[package]] +name = "wayland-scanner" +version = "0.31.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "338e30461b3a2b67d70eb30a6d89f8e0c93a833e07d2ae89085cd070c4a00ac0" +dependencies = [ + "proc-macro2", + "quick-xml 0.41.0", + "quote", +] + +[[package]] +name = "wayland-sys" +version = "0.31.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d8eab23fefc9e41f8e841df4a9c707e8a8c4ed26e944ef69297184de2785e3be" +dependencies = [ + "dlib", + "log", + "once_cell", + "pkg-config", +] + +[[package]] +name = "web-sys" +version = "0.3.103" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141" +dependencies = [ + "js-sys", + "wasm-bindgen", +] + +[[package]] +name = "web-time" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" +dependencies = [ + "js-sys", + "wasm-bindgen", +] + +[[package]] +name = "webbrowser" +version = "1.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3d6eb50cc7b133f0c7720a64661fbd8e520b882f8ab9015deea5e00d5cd809c4" +dependencies = [ + "jni", + "log", + "ndk-context", + "objc2 0.6.4", + "objc2-app-kit 0.3.2", + "objc2-foundation 0.3.2", + "url", + "web-sys", +] + +[[package]] +name = "webpki-roots" +version = "0.25.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1" + +[[package]] +name = "wgpu" +version = "22.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e1d1c4ba43f80542cf63a0a6ed3134629ae73e8ab51e4b765a67f3aa062eb433" +dependencies = [ + "arrayvec", + "cfg_aliases 0.1.1", + "document-features", + "js-sys", + "log", + "parking_lot", + "profiling", + "raw-window-handle", + "smallvec", + "static_assertions", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", + "wgpu-core", + "wgpu-hal", + "wgpu-types", +] + +[[package]] +name = "wgpu-core" +version = "22.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0348c840d1051b8e86c3bcd31206080c5e71e5933dabd79be1ce732b0b2f089a" +dependencies = [ + "arrayvec", + "bit-vec", + "bitflags 2.13.1", + "cfg_aliases 0.1.1", + "document-features", + "indexmap", + "log", + "naga", + "once_cell", + "parking_lot", + "profiling", + "raw-window-handle", + "rustc-hash 1.1.0", + "smallvec", + "thiserror 1.0.69", + "wgpu-hal", + "wgpu-types", +] + +[[package]] +name = "wgpu-hal" +version = "22.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f6bbf4b4de8b2a83c0401d9e5ae0080a2792055f25859a02bf9be97952bbed4f" +dependencies = [ + "android_system_properties", + "arrayvec", + "ash", + "bitflags 2.13.1", + "cfg_aliases 0.1.1", + "core-graphics-types", + "glow 0.13.1", + "glutin_wgl_sys", + "gpu-alloc", + "gpu-allocator", + "gpu-descriptor", + "hassle-rs", + "js-sys", + "khronos-egl", + "libc", + "libloading", + "log", + "metal", + "naga", + "ndk-sys 0.5.0+25.2.9519653", + "objc", + "once_cell", + "parking_lot", + "profiling", + "raw-window-handle", + "renderdoc-sys", + "rustc-hash 1.1.0", + "smallvec", + "thiserror 1.0.69", + "wasm-bindgen", + "web-sys", + "wgpu-types", + "winapi", +] + +[[package]] +name = "wgpu-types" +version = "22.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc9d91f0e2c4b51434dfa6db77846f2793149d8e73f800fa2e41f52b8eac3c5d" +dependencies = [ + "bitflags 2.13.1", + "js-sys", + "web-sys", +] + +[[package]] +name = "whoami" +version = "1.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5d4a4db5077702ca3015d3d02d74974948aba2ad9e12ab7df718ee64ccd7e97d" +dependencies = [ + "libredox", + "wasite", +] + +[[package]] +name = "widestring" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72069c3113ab32ab29e5584db3c6ec55d416895e60715417b5b883a357c3e471" + +[[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-util" +version = "0.1.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" +dependencies = [ + "windows-sys 0.61.2", +] + +[[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" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be" +dependencies = [ + "windows-core 0.52.0", + "windows-targets 0.52.6", +] + +[[package]] +name = "windows" +version = "0.58.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd04d41d93c4992d421894c18c8b43496aa748dd4c081bac0dc93eb0489272b6" +dependencies = [ + "windows-core 0.58.0", + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-core" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" +dependencies = [ + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-core" +version = "0.58.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ba6d44ec8c2591c134257ce647b7ea6b20335bf6379a27dac5f1641fcf59f99" +dependencies = [ + "windows-implement 0.58.0", + "windows-interface 0.58.0", + "windows-result 0.2.0", + "windows-strings 0.1.0", + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-core" +version = "0.62.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb" +dependencies = [ + "windows-implement 0.60.2", + "windows-interface 0.59.3", + "windows-link", + "windows-result 0.4.1", + "windows-strings 0.5.1", +] + +[[package]] +name = "windows-implement" +version = "0.58.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2bbd5b46c938e506ecbce286b6628a02171d56153ba733b6c741fc627ec9579b" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "windows-implement" +version = "0.60.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "windows-interface" +version = "0.58.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "053c4c462dc91d3b1504c6fe5a726dd15e216ba718e84a0e46a88fbe5ded3515" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "windows-interface" +version = "0.59.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "windows-link" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" + +[[package]] +name = "windows-result" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e" +dependencies = [ + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-result" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5" +dependencies = [ + "windows-link", +] + +[[package]] +name = "windows-strings" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10" +dependencies = [ + "windows-result 0.2.0", + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-strings" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091" +dependencies = [ + "windows-link", +] + +[[package]] +name = "windows-sys" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" +dependencies = [ + "windows-targets 0.48.5", +] + +[[package]] +name = "windows-sys" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" +dependencies = [ + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-sys" +version = "0.59.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" +dependencies = [ + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-sys" +version = "0.60.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" +dependencies = [ + "windows-targets 0.53.5", +] + +[[package]] +name = "windows-sys" +version = "0.61.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" +dependencies = [ + "windows-link", +] + +[[package]] +name = "windows-targets" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" +dependencies = [ + "windows_aarch64_gnullvm 0.48.5", + "windows_aarch64_msvc 0.48.5", + "windows_i686_gnu 0.48.5", + "windows_i686_msvc 0.48.5", + "windows_x86_64_gnu 0.48.5", + "windows_x86_64_gnullvm 0.48.5", + "windows_x86_64_msvc 0.48.5", +] + +[[package]] +name = "windows-targets" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" +dependencies = [ + "windows_aarch64_gnullvm 0.52.6", + "windows_aarch64_msvc 0.52.6", + "windows_i686_gnu 0.52.6", + "windows_i686_gnullvm 0.52.6", + "windows_i686_msvc 0.52.6", + "windows_x86_64_gnu 0.52.6", + "windows_x86_64_gnullvm 0.52.6", + "windows_x86_64_msvc 0.52.6", +] + +[[package]] +name = "windows-targets" +version = "0.53.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3" +dependencies = [ + "windows-link", + "windows_aarch64_gnullvm 0.53.1", + "windows_aarch64_msvc 0.53.1", + "windows_i686_gnu 0.53.1", + "windows_i686_gnullvm 0.53.1", + "windows_i686_msvc 0.53.1", + "windows_x86_64_gnu 0.53.1", + "windows_x86_64_gnullvm 0.53.1", + "windows_x86_64_msvc 0.53.1", +] + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006" + +[[package]] +name = "windows_i686_gnu" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" + +[[package]] +name = "windows_i686_gnu" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" + +[[package]] +name = "windows_i686_gnu" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3" + +[[package]] +name = "windows_i686_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" + +[[package]] +name = "windows_i686_gnullvm" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c" + +[[package]] +name = "windows_i686_msvc" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" + +[[package]] +name = "windows_i686_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" + +[[package]] +name = "windows_i686_msvc" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" + +[[package]] +name = "winit" +version = "0.30.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a6755fa58a9f8350bd1e472d4c3fcc25f824ec358933bba33306d0b63df5978d" +dependencies = [ + "ahash", + "android-activity", + "atomic-waker", + "bitflags 2.13.1", + "block2", + "bytemuck", + "calloop 0.13.0", + "cfg_aliases 0.2.2", + "concurrent-queue", + "core-foundation 0.9.4", + "core-graphics", + "cursor-icon", + "dpi", + "js-sys", + "libc", + "memmap2", + "ndk", + "objc2 0.5.2", + "objc2-app-kit 0.2.2", + "objc2-foundation 0.2.2", + "objc2-ui-kit", + "orbclient", + "percent-encoding", + "pin-project", + "raw-window-handle", + "redox_syscall 0.4.1", + "rustix 0.38.44", + "sctk-adwaita", + "smithay-client-toolkit 0.19.2", + "smol_str", + "tracing", + "unicode-segmentation", + "wasm-bindgen", + "wasm-bindgen-futures", + "wayland-backend", + "wayland-client", + "wayland-protocols", + "wayland-protocols-plasma", + "web-sys", + "web-time", + "windows-sys 0.52.0", + "x11-dl", + "x11rb", + "xkbcommon-dl", +] + +[[package]] +name = "winnow" +version = "0.7.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945" +dependencies = [ + "memchr", +] + +[[package]] +name = "winnow" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "23b97319f7b8343df12cc98938e5c3eb436064524c8d2b4e30a1d3a36eecdf81" +dependencies = [ + "memchr", +] + +[[package]] +name = "winreg" +version = "0.50.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" +dependencies = [ + "cfg-if", + "windows-sys 0.48.0", +] + +[[package]] +name = "wit-bindgen" +version = "0.57.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e" + +[[package]] +name = "writeable" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4" + +[[package]] +name = "x11-dl" +version = "2.21.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38735924fedd5314a6e548792904ed8c6de6636285cb9fec04d5b1db85c1516f" +dependencies = [ + "libc", + "once_cell", + "pkg-config", +] + +[[package]] +name = "x11rb" +version = "0.13.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9993aa5be5a26815fe2c3eacfc1fde061fc1a1f094bf1ad2a18bf9c495dd7414" +dependencies = [ + "as-raw-xcb-connection", + "gethostname", + "libc", + "libloading", + "once_cell", + "rustix 1.1.4", + "x11rb-protocol", +] + +[[package]] +name = "x11rb-protocol" +version = "0.13.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ea6fc2961e4ef194dcbfe56bb845534d0dc8098940c7e5c012a258bfec6701bd" + +[[package]] +name = "x509-cert" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1301e935010a701ae5f8655edc0ad17c44bad3ac5ce8c39185f75453b720ae94" +dependencies = [ + "const-oid", + "der", + "spki", + "tls_codec", +] + +[[package]] +name = "xcursor" +version = "0.3.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "163b33ed8786455e2fa5d72f554057ce3f3182425434f756cd39c99839d88e23" + +[[package]] +name = "xdg-home" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec1cdab258fb55c0da61328dc52c8764709b249011b2cad0454c72f0bf10a1f6" +dependencies = [ + "libc", + "windows-sys 0.59.0", +] + +[[package]] +name = "xkbcommon-dl" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d039de8032a9a8856a6be89cea3e5d12fdd82306ab7c94d74e6deab2460651c5" +dependencies = [ + "bitflags 2.13.1", + "dlib", + "log", + "once_cell", + "xkeysym", +] + +[[package]] +name = "xkeysym" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9cc00251562a284751c9973bace760d86c0276c471b4be569fe6b068ee97a56" + +[[package]] +name = "xml-rs" +version = "0.8.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3ae8337f8a065cfc972643663ea4279e04e7256de865aa66fe25cec5fb912d3f" + +[[package]] +name = "yansi" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049" + +[[package]] +name = "yasna" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd" +dependencies = [ + "time", +] + +[[package]] +name = "yoke" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5" +dependencies = [ + "stable_deref_trait", + "yoke-derive", + "zerofrom", +] + +[[package]] +name = "yoke-derive" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", + "synstructure", +] + +[[package]] +name = "zbus" +version = "4.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb97012beadd29e654708a0fdb4c84bc046f537aecfde2c3ee0a9e4b4d48c725" +dependencies = [ + "async-broadcast", + "async-executor", + "async-fs", + "async-io", + "async-lock", + "async-process", + "async-recursion", + "async-task", + "async-trait", + "blocking", + "enumflags2", + "event-listener 5.4.2", + "futures-core", + "futures-sink", + "futures-util", + "hex", + "nix", + "ordered-stream", + "rand", + "serde", + "serde_repr", + "sha1", + "static_assertions", + "tracing", + "uds_windows", + "windows-sys 0.52.0", + "xdg-home", + "zbus_macros", + "zbus_names", + "zvariant", +] + +[[package]] +name = "zbus-lockstep" +version = "0.4.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4ca2c5dceb099bddaade154055c926bb8ae507a18756ba1d8963fd7b51d8ed1d" +dependencies = [ + "zbus_xml", + "zvariant", +] + +[[package]] +name = "zbus-lockstep-macros" +version = "0.4.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "709ab20fc57cb22af85be7b360239563209258430bccf38d8b979c5a2ae3ecce" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", + "zbus-lockstep", + "zbus_xml", + "zvariant", +] + +[[package]] +name = "zbus_macros" +version = "4.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "267db9407081e90bbfa46d841d3cbc60f59c0351838c4bc65199ecd79ab1983e" +dependencies = [ + "proc-macro-crate", + "proc-macro2", + "quote", + "syn 2.0.119", + "zvariant_utils", +] + +[[package]] +name = "zbus_names" +version = "3.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4b9b1fef7d021261cc16cba64c351d291b715febe0fa10dc3a443ac5a5022e6c" +dependencies = [ + "serde", + "static_assertions", + "zvariant", +] + +[[package]] +name = "zbus_xml" +version = "4.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ab3f374552b954f6abb4bd6ce979e6c9b38fb9d0cd7cc68a7d796e70c9f3a233" +dependencies = [ + "quick-xml 0.30.0", + "serde", + "static_assertions", + "zbus_names", + "zvariant", +] + +[[package]] +name = "zerocopy" +version = "0.8.55" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b5a105cd7b140f6eeec8acff2ea38135d3cab283ada58540f629fe51e46696eb" +dependencies = [ + "zerocopy-derive", +] + +[[package]] +name = "zerocopy-derive" +version = "0.8.55" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fe976fb70c78cd64cccfe3a6fc142244e8a77b70959b30faf9d0ac37ee228eb" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "zerofrom" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272" +dependencies = [ + "zerofrom-derive", +] + +[[package]] +name = "zerofrom-derive" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", + "synstructure", +] + +[[package]] +name = "zeroize" +version = "1.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e" +dependencies = [ + "zeroize_derive", +] + +[[package]] +name = "zeroize_derive" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3c50655cbb0fe3fc43170059e702f1ce5e19b84cec58dc87b037a09935c2f328" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "zerotrie" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf" +dependencies = [ + "displaydoc", + "yoke", + "zerofrom", +] + +[[package]] +name = "zerovec" +version = "0.11.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239" +dependencies = [ + "yoke", + "zerofrom", + "zerovec-derive", +] + +[[package]] +name = "zerovec-derive" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "zmij" +version = "1.0.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b" + +[[package]] +name = "zvariant" +version = "4.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2084290ab9a1c471c38fc524945837734fbf124487e105daec2bb57fd48c81fe" +dependencies = [ + "endi", + "enumflags2", + "serde", + "static_assertions", + "zvariant_derive", +] + +[[package]] +name = "zvariant_derive" +version = "4.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "73e2ba546bda683a90652bac4a279bc146adad1386f25379cf73200d2002c449" +dependencies = [ + "proc-macro-crate", + "proc-macro2", + "quote", + "syn 2.0.119", + "zvariant_utils", +] + +[[package]] +name = "zvariant_utils" +version = "2.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c51bcff7cc3dbb5055396bcf774748c3dab426b4b8659046963523cee4808340" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..c2d3dec --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,10 @@ +[workspace] +resolver = "2" +members = [ + "openfut-core", + "openfut-bridge", + "openfut-launcher", + "openfut-launcher/openfut-hook", + "fifa-blaze/crates/blaze-proto", + "fifa-blaze/crates/server", +] diff --git a/SECURITY_AUDIT_REPORT.json b/SECURITY_AUDIT_REPORT.json new file mode 100644 index 0000000..1b97dc2 --- /dev/null +++ b/SECURITY_AUDIT_REPORT.json @@ -0,0 +1,340 @@ +{ + "metadata": { + "reportDate": "2026-07-28", + "codebaseName": "OpenFUT", + "version": "0.1.0", + "submodulesCovered": [ + "openfut-core", + "openfut-bridge", + "openfut-launcher" + ], + "language": "Rust", + "framework": "Axum + SQLite" + }, + "vulnerabilities": [ + { + "severity": "critical", + "category": "authentication", + "file": "openfut-core/src/services/profile.rs", + "line": 8, + "cwe": "CWE-287", + "title": "Missing Authentication on All Endpoints", + "description": "No authentication or authorization checks on any API endpoint. The system uses single-profile design with get_active_profile() returning the first row (LIMIT 1) without any token validation, session management, or per-user isolation. In a networked context, any HTTP client can access all endpoints without credentials.", + "impact": "Complete compromise of data confidentiality and integrity. Any attacker can view, modify, or delete all user data without authentication.", + "exploitPath": "curl http://127.0.0.1:8080/clubs - accesses club data without any auth headers or tokens", + "recommendation": "Implement stateless JWT tokens or session-based authentication. Add middleware to validate tokens on all endpoints. Implement per-user authorization checks in services." + }, + { + "severity": "critical", + "category": "injection", + "file": "openfut-core/src/routes/auth.rs", + "line": 87, + "cwe": "CWE-89", + "title": "SQL Injection via String Interpolation", + "description": "SQL table names are interpolated using string formatting: sqlx::query(&format!(\"DELETE FROM {table}\")). Although currently hardcoded in a loop, this violates parameterized query principles and creates a risk if the table list ever becomes user-controlled or the pattern is copied elsewhere.", + "impact": "Potential remote code execution via database manipulation. If extended to user input, attackers could modify arbitrary tables or drop the database.", + "exploitPath": "Currently mitigated by hardcoded table names, but the pattern is dangerous and violates secure coding practices.", + "recommendation": "Use SQLx's dynamic query builders or identifier types that properly escape table/column names. Replace format! string interpolation with sqlx::query_builder for dynamic identifiers." + }, + { + "severity": "high", + "category": "configuration", + "file": "openfut-bridge/src/proxy.rs", + "line": 44, + "cwe": "CWE-295", + "title": "TLS Certificate Validation Disabled", + "description": "HTTP client explicitly disables TLS certificate validation: .danger_accept_invalid_certs(true). This bypasses all certificate pinning, expiration, and hostname verification, making the bridge vulnerable to man-in-the-middle attacks.", + "impact": "Attacker positioned between bridge and upstream can intercept, modify, or read all traffic. Compromises confidentiality and integrity of requests to Core and external services.", + "exploitPath": "MITM attack between openfut-bridge and openfut-core or upstream services. ARP spoofing on localhost subnet would redirect traffic.", + "recommendation": "Remove .danger_accept_invalid_certs(true) in production. If testing requires it, gate behind a development-only environment variable with strong warning. Use proper certificate management (CA bundles, cert pinning)." + }, + { + "severity": "high", + "category": "dos", + "file": "openfut-core/src/services/season.rs", + "line": 23, + "cwe": "CWE-248", + "title": "Unguarded expect() Causes Denial of Service", + "description": "Multiple unchecked expect() calls that will panic and crash the server if database queries fail or return unexpected results: Ok(fetch(pool, profile_id).await?.expect(\"just inserted\"))", + "impact": "Denial of service. A single database inconsistency or race condition crashes the entire server, making the application unavailable.", + "exploitPath": "Trigger race conditions during concurrent requests (e.g., rapid profile deletion + season fetch). Database corruption or migration failure crashes the service immediately.", + "recommendation": "Replace expect() with proper error handling (Result types, error logging, graceful degradation). Handle database query failures without panicking. Add integration tests for race conditions." + }, + { + "severity": "high", + "category": "dos", + "file": "openfut-core/src/services/season.rs", + "line": 69, + "cwe": "CWE-248", + "title": "Unguarded expect() in season fetch", + "description": "let season = fetch(pool, profile_id).await?.expect(\"season must exist\"); Panics if season is not found.", + "impact": "Server crash on missing or deleted season records.", + "exploitPath": "Delete a season via concurrent requests, then call /seasons endpoint. Server panics.", + "recommendation": "Return proper error (AppError::NotFound) instead of panicking." + }, + { + "severity": "high", + "category": "dos", + "file": "openfut-core/src/services/season.rs", + "line": 144, + "cwe": "CWE-248", + "title": "Unguarded expect() in season update", + "description": "let updated = fetch(pool, profile_id).await?.expect(\"season must exist\");", + "impact": "Server crash on concurrent season modifications.", + "exploitPath": "Rapid concurrent season updates that fail race conditions.", + "recommendation": "Handle missing records gracefully." + }, + { + "severity": "high", + "category": "cors", + "file": "openfut-core/src/app.rs", + "line": 257, + "cwe": "CWE-346", + "title": "Permissive CORS Configuration Allows All Origins", + "description": ".layer(CorsLayer::permissive()) enables CORS for all origins (*), methods, and headers. Any website can make cross-origin requests to the API and access/modify data.", + "impact": "Cross-site request forgery (CSRF) attacks. Malicious websites can issue API requests on behalf of users. Data exfiltration via JavaScript from any origin.", + "exploitPath": "Attacker website:\n \n Fetch API calls to delete profiles, modify squads, etc.", + "recommendation": "Restrict CORS to specific origins (e.g., localhost:3000 for web UI, or the game process if exposed). Use CorsLayer::very_restrictive() as default and explicitly allowlist origins." + }, + { + "severity": "high", + "category": "dos", + "file": "openfut-bridge/src/proxy.rs", + "line": 47, + "cwe": "CWE-248", + "title": "HTTP Client Construction Panic", + "description": ".expect(\"failed to build HTTP client\") will panic if the HTTP client fails to initialize, crashing the entire proxy service on startup.", + "impact": "Service unavailability. Bridge cannot start if HTTP client configuration is invalid.", + "exploitPath": "Invalid system configuration or missing TLS libraries causes HTTP client build to fail, crashing bridge during startup.", + "recommendation": "Return Result from new() and handle construction errors. Use anyhow::Context for better error messages." + }, + { + "severity": "medium", + "category": "information-disclosure", + "file": "openfut-core/src/error.rs", + "line": 54, + "cwe": "CWE-209", + "title": "Error Messages Leak Implementation Details", + "description": "JSON parsing errors are returned directly to clients: format!(\"json parse error: {e}\"). Exposes serde_json parser internals and syntax details useful for crafting attacks.", + "impact": "Information disclosure. Attackers learn the JSON parser implementation and can tailor payloads to bypass validation or find parser-specific quirks.", + "exploitPath": "Send malformed JSON to any endpoint. Response includes parser error details (e.g., 'expected `,` at line 2 col 5') that aid in crafting exploits.", + "recommendation": "Return generic error message to clients: 'invalid request format'. Log detailed errors internally with tracing for debugging." + }, + { + "severity": "medium", + "category": "information-disclosure", + "file": "openfut-core/src/error.rs", + "line": 40, + "cwe": "CWE-215", + "title": "Database Errors Logged with Full Details", + "description": "Database errors are logged with full SQL/query details: tracing::error!(\"Database error: {e}\"). If logs are exposed or compromised, schema, query patterns, and data structure are revealed.", + "impact": "Information disclosure in logs. Compromised log files expose database schema and query logic useful for SQL injection or data exfiltration planning.", + "exploitPath": "Access server logs (via log aggregation service, file access, etc.) and extract database schema and query patterns.", + "recommendation": "Log only error type and ID to clients. Sanitize logs before exporting. Use structured logging with field masking for queries." + }, + { + "severity": "medium", + "category": "input-validation", + "file": "openfut-core/src/routes/auth.rs", + "line": 17, + "cwe": "CWE-1025", + "title": "Hardcoded Default Credentials", + "description": "Default username 'Player 1' is hardcoded with no unique identifier enforcement. Multiple profiles can be created with identical usernames, and weak defaults are used.", + "impact": "Weak account creation, potential for account confusion or conflicts. No strong identity guarantees.", + "exploitPath": "Multiple users create profiles with default 'Player 1' username. No way to distinguish profiles programmatically.", + "recommendation": "Require explicit username on profile creation. Use UUIDs as primary identifiers. Validate username uniqueness and minimum length." + }, + { + "severity": "medium", + "category": "input-validation", + "file": "openfut-core/src/services/", + "line": 0, + "cwe": "CWE-400", + "title": "Missing Input Length Validation", + "description": "No maximum length checks on string fields (usernames, club names, squad names, etc.). Large inputs can cause database bloat, memory exhaustion, or DoS.", + "impact": "Denial of service via large payloads. Database bloat. Memory exhaustion. While DefaultBodyLimit::max(256KB) provides some protection, field-level validation is missing.", + "exploitPath": "POST /auth/local with username = 256KB string. Database receives bloated data. Repeated calls exhaust storage.", + "recommendation": "Add input validation for all user-submitted strings. Set maximum lengths (e.g., username: 50 chars, club name: 100 chars). Validate at route handler level." + }, + { + "severity": "medium", + "category": "configuration", + "file": "openfut-core/src/db.rs", + "line": 13, + "cwe": "CWE-315", + "title": "Unencrypted SQLite Database on Disk", + "description": "SQLite database file (openfut.db) is stored unencrypted on disk. All user data, profiles, squads, cards, etc., are readable by anyone with filesystem access.", + "impact": "Data breach if server filesystem is compromised. No protection against:local file access, stolen backups, forensic recovery.", + "exploitPath": "Attacker gains filesystem access (compromised server, stolen disk). Reads openfut.db directly. All game data is readable without authentication.", + "recommendation": "Use SQLite encryption (e.g., sqlcipher crate) or migrate to PostgreSQL with TLS. Implement file-level encryption. Use restrictive filesystem permissions (0600)." + }, + { + "severity": "medium", + "category": "rate-limiting", + "file": "openfut-core/src/app.rs", + "line": 0, + "cwe": "CWE-770", + "title": "No Rate Limiting on Endpoints", + "description": "No per-IP or per-user rate limiting. Endpoints like POST /auth/reset can be called repeatedly without restriction, allowing attackers to repeatedly wipe all data.", + "impact": "Denial of service and data destruction. Attacker can spam /auth/reset to destroy user data or exhaust server resources.", + "exploitPath": "for i in 1..1000: POST /auth/reset with confirm='reset'. All data wiped repeatedly.", + "recommendation": "Implement rate limiting middleware using tower_governor or similar. Add per-IP limits (e.g., 10 requests/min) and per-endpoint limits. Use exponential backoff." + }, + { + "severity": "low", + "category": "audit-logging", + "file": "openfut-core/src/services/", + "line": 0, + "cwe": "CWE-778", + "title": "Missing Audit Logging", + "description": "No audit trail of user actions (profile creation, data deletion, squad modifications). Cannot detect unauthorized access, data tampering, or compliance violations.", + "impact": "Incident response and forensics are impossible. Cannot determine who did what and when. Compliance risks (GDPR, etc.).", + "exploitPath": "Attacker deletes all profiles, modifies squads. No audit log shows what happened or who did it.", + "recommendation": "Add audit logging for all data mutations. Log: timestamp, user (profile) ID, action, resource affected, before/after state. Store in separate immutable table." + }, + { + "severity": "low", + "category": "dependencies", + "file": "openfut-bridge/Cargo.toml", + "line": 0, + "cwe": "CWE-1035", + "title": "Older Dependency Versions (reqwest, rustls)", + "description": "openfut-bridge uses reqwest 0.11 (latest is 0.12) and rustls 0.21 (latest is 0.23). Intentional for version matching, but creates a larger surface area for known CVEs.", + "impact": "Potential vulnerabilities in older dependencies. Delayed access to security patches.", + "exploitPath": "Known CVE in reqwest 0.11 or rustls 0.21 could be exploited. Combined with danger_accept_invalid_certs, TLS bypass becomes easier.", + "recommendation": "Upgrade dependencies to latest versions when possible. Monitor CVE databases (CVE, RustSec) for the versions in use. Pin versions and set up automated dependency updates." + }, + { + "severity": "low", + "category": "error-handling", + "file": "openfut-core/src/app.rs", + "line": 256, + "cwe": "CWE-248", + "title": "Body Size Limit Without Per-Field Validation", + "description": "DefaultBodyLimit::max(256KB) limits the entire request body, but individual fields are not validated. A single large field can consume most of the limit.", + "impact": "Mild DoS. Large field values cause database bloat. Not a critical issue due to body limit, but field-level validation would be better.", + "exploitPath": "POST /auth/local with 250KB club_name field. Database receives bloated data.", + "recommendation": "Add per-field validation in addition to body limits. Validate and sanitize fields before database insertion." + } + ], + "riskScore": 82, + "riskCategory": "CRITICAL", + "riskSummary": "OpenFUT has critical security issues that would make it unsafe for production or networked deployment. The most severe are the complete absence of authentication/authorization and the SQL injection pattern in the auth.rs module. The system is designed as single-player (single-profile) with no multi-tenant isolation, which is dangerous if exposed to the network.", + "recommendations": [ + { + "priority": "CRITICAL", + "area": "Authentication & Authorization", + "recommendation": "Implement JWT-based or session-based authentication on all endpoints. Add middleware to validate auth tokens on every request. Implement per-profile authorization checks. Currently any HTTP client can access all endpoints.", + "effort": "High", + "impact": "Blocks all data breaches from unauthenticated access" + }, + { + "priority": "CRITICAL", + "area": "SQL Injection Prevention", + "recommendation": "Replace sqlx::query(&format!(...)) in auth.rs:87 with proper parameterized identifiers. Use sqlx::query_builder for dynamic table/column names instead of string interpolation.", + "effort": "Low", + "impact": "Prevents SQL injection even if pattern is copied to user input" + }, + { + "priority": "HIGH", + "area": "TLS & Transport Security", + "recommendation": "Remove .danger_accept_invalid_certs(true) from proxy.rs:44. If development requires it, gate behind an environment variable (e.g., DEV_SKIP_TLS_VERIFICATION) with strong warnings in logs.", + "effort": "Low", + "impact": "Prevents MITM attacks on bridge-to-core communication" + }, + { + "priority": "HIGH", + "area": "Error Handling", + "recommendation": "Replace all expect() calls with proper Result handling. Use anyhow::Context or custom error types. Add logging for debugging but return generic errors to clients.", + "effort": "Medium", + "impact": "Prevents DoS via server panics" + }, + { + "priority": "HIGH", + "area": "CORS", + "recommendation": "Replace CorsLayer::permissive() with CorsLayer::very_restrictive() or explicit allowlist. For single-player use, restrict to localhost and the game process only.", + "effort": "Low", + "impact": "Prevents CSRF and cross-origin attacks" + }, + { + "priority": "HIGH", + "area": "Rate Limiting", + "recommendation": "Add per-IP rate limiting using tower_governor or similar. Implement limits on destructive endpoints (e.g., POST /auth/reset: 1 request per hour per IP).", + "effort": "Medium", + "impact": "Prevents DoS and repeated data destruction" + }, + { + "priority": "MEDIUM", + "area": "Input Validation", + "recommendation": "Add maximum length validation for all string fields (username, club_name, squad_name, etc.). Enforce at route handler level. Example: username max 50 chars, club_name max 100 chars.", + "effort": "Medium", + "impact": "Prevents database bloat and data validation failures" + }, + { + "priority": "MEDIUM", + "area": "Data Encryption", + "recommendation": "Use SQLite encryption (sqlcipher) or migrate to PostgreSQL with TLS. Set restrictive filesystem permissions (0600) on openfut.db.", + "effort": "High", + "impact": "Protects data at rest from filesystem access" + }, + { + "priority": "MEDIUM", + "area": "Error Message Handling", + "recommendation": "Return generic error messages to clients. Log detailed errors internally. Example: client sees 'invalid request', server logs 'JSON parse error: expected `,` at line 2'.", + "effort": "Low", + "impact": "Reduces information disclosure" + }, + { + "priority": "MEDIUM", + "area": "Audit Logging", + "recommendation": "Add audit trail for all data mutations (create, update, delete). Log timestamp, profile ID, action, resource, and before/after state. Store in immutable audit_log table.", + "effort": "Medium", + "impact": "Enables incident response and forensics" + }, + { + "priority": "LOW", + "area": "Dependency Management", + "recommendation": "Upgrade reqwest to 0.12 and rustls to 0.23 when possible. Set up Dependabot or RustSec monitoring for CVEs. Regularly audit dependencies.", + "effort": "Low", + "impact": "Reduces attack surface from known CVEs" + }, + { + "priority": "LOW", + "area": "Default Values", + "recommendation": "Remove hardcoded default username 'Player 1'. Require explicit username on profile creation. Use UUIDs for profile identification.", + "effort": "Low", + "impact": "Improves account identity and prevents confusion" + } + ], + "securityDesignNotes": { + "intendedUse": "OpenFUT is designed for single-player offline use. Single-profile design is intentional for local FIFA 23 emulation.", + "deploymentContext": "Localhost only (127.0.0.1:8080). Not intended for networked or multi-user deployment.", + "implicationForSecurity": "Many security issues (no auth, permissive CORS) are acceptable for localhost-only use. However, the code structure lacks security boundaries, so if ever exposed to the network, it would be completely unsecured. Recommend adding security gates now rather than retrofitting later.", + "suggestedDefensiveApproach": "Even for single-player use, add security layers (basic auth, CORS restrictions, rate limiting) to prevent accidental misuse if deployed in an unsafe context." + }, + "positiveFindingsAndStrengths": [ + "✓ SQLx is used throughout with parameterized queries (except auth.rs:87)", + "✓ Foreign key constraints are enforced in SQLite", + "✓ UUIDs are used for entity IDs instead of sequential IDs (reduces enumeration attacks)", + "✓ Request body size is limited to 256KB (prevents large payload DoS)", + "✓ Concurrency is limited to 256 concurrent requests", + "✓ Sensitive tokens (X-UT-SID, X-UT-PHISHING-TOKEN) are stripped from captures", + "✓ Logging is structured using tracing crate (good for audit trails)", + "✓ Services layer properly encapsulates database access" + ], + "testingRecommendations": [ + "Add integration tests for authentication bypass (attempt to access endpoints without tokens)", + "Test SQL injection payloads in auth.rs:87 pattern (if table names become dynamic)", + "Test CORS with cross-origin requests from external origins", + "Test rate limiting with rapid concurrent requests to /auth/reset", + "Test input validation with oversized strings (100MB+ usernames)", + "Test panic handling with corrupted database state", + "Test TLS MITM scenarios (certificate pinning validation)", + "Add fuzz testing for JSON parsing to find edge cases" + ], + "complianceNotes": { + "gdpr": "No explicit data handling policy. If user data is processed, GDPR requires consent, data retention limits, and audit trails. Not currently implemented.", + "dataProtection": "Unencrypted database at rest violates most data protection frameworks.", + "logging": "Audit logging is missing, violating compliance requirements." + } +} diff --git a/fifa-blaze b/fifa-blaze index eccd46f..d2a9a01 160000 --- a/fifa-blaze +++ b/fifa-blaze @@ -1 +1 @@ -Subproject commit eccd46f52b7958e77e5f08b0d4618b9e6d7eeb2f +Subproject commit d2a9a01ec96a93b718f73ed3fe89d827ae1f9985 diff --git a/fifa17-recon/tools/ghidra_queries/q_md_draft_1.py b/fifa17-recon/tools/ghidra_queries/q_md_draft_1.py new file mode 100644 index 0000000..6ca8113 --- /dev/null +++ b/fifa17-recon/tools/ghidra_queries/q_md_draft_1.py @@ -0,0 +1,26 @@ +"""DIMENSION 4 q1: Enumerate the published UI surface (FUN_18006cc60), the +userInfo.feature restriction map (FUN_18013ec10), and locate every draft/tournament +string + its xrefs. + +Hypothesis: the entry gate for Draft/Tournaments is EITHER a feature-restriction +sub-key we might send, OR a published-context name other than IS_DRAFT_MODE_ENABLED / +IS_TOURNAMENT_QUIT_ENABLED, OR script-layer (no server-reachable input). + +Control: FUN_18006cc60 is the known publisher (transfer-market doc). If it decompiles +and its IS_* names resolve, the query mechanics work. Print lengths in full to avoid +the truncated-decompile absence trap. +""" +import traceback +try: + # 1. The publisher (authoritative slot->name table per the brief) + d = dec(0x18006cc60) + print("=== FUN_18006cc60 publisher len=%d ===" % len(d)) + print(d) + + # 2. The userInfo.feature restriction parser + d2 = dec(0x18013ec10) + print("\n=== FUN_18013ec10 userInfo/feature parser len=%d ===" % len(d2)) + print(d2) +except Exception: + traceback.print_exc() +print("QUERY_DONE") diff --git a/fifa17-recon/tools/ghidra_queries/q_md_draft_2.py b/fifa17-recon/tools/ghidra_queries/q_md_draft_2.py new file mode 100644 index 0000000..12239df --- /dev/null +++ b/fifa17-recon/tools/ghidra_queries/q_md_draft_2.py @@ -0,0 +1,50 @@ +"""DIMENSION 4 q2: locate the draft/tournament entry decision. + +Hypothesis: entry is gated in the script layer / a manager singleton with no server +writer, NOT by any server-reachable field. Test by (a) enumerating draft/tournament +script-event + manager literals and their xrefs, (b) reading the CompetitionManager +setters FUN_180101680/FUN_1801016c0 (the Seasons lead) and looking for draft/tourney +analogues, (c) finding who READS the draft gate byte model+0x1fd3d and tournament ++0x1fd3b. + +Control: 'IS_DRAFT_MODE_ENABLED' literal must resolve and xref into FUN_18006cc60 +(the known publisher). If it does, the string/xref mechanics work. +""" +import traceback +try: + def show_str_xrefs(lit, blocks=(".rdata",)): + hits = find_all(lit.encode() + b"\x00", blocks) + print("\n--- literal %r : %d hit(s) ---" % (lit, len(hits))) + for h in hits: + print(" @ %#x" % h) + for frm, typ, fn, ent in xrefs_to(h): + print(" xref from %#x %s in %s (%#x)" % (frm, typ, fn, ent)) + + # control + show_str_xrefs("IS_DRAFT_MODE_ENABLED") + # draft / tournament script + manager literals + for lit in ("NOSEASONS", "NODRAFT", "NOTOURNAMENT", "DRAFTSQUAD_ON", + "SINGLE_PLAYER", "DRAFT_TOKEN", "DraftMode", "Draft", + "CompetitionManager", "TournamentInfo", "TournamentManager", + "DraftManager", "OnlineDraft", "OfflineDraft"): + show_str_xrefs(lit) + + # substring scan for any *draft*/*tournament* ascii literal in .rdata + print("\n=== .rdata literals containing 'raft' or 'ourna' ===") + for needle in (b"raft", b"ourna"): + seen = set() + for h in find_all(needle, (".rdata",)): + # back up to string start + p = h + while p > h - 64: + b = read_bytes(p - 1, 1) + if not b or b[0] == 0 or b[0] < 0x20 or b[0] > 0x7e: + break + p -= 1 + s = rd_str(p, 96) + if s and s not in seen and (b"raft" in s.encode() or b"ourna" in s.encode()): + seen.add(s) + print(" %#x %r" % (p, s)) +except Exception: + traceback.print_exc() +print("QUERY_DONE") diff --git a/fifa17-recon/tools/ghidra_queries/q_md_draft_3.py b/fifa17-recon/tools/ghidra_queries/q_md_draft_3.py new file mode 100644 index 0000000..3fd499c --- /dev/null +++ b/fifa17-recon/tools/ghidra_queries/q_md_draft_3.py @@ -0,0 +1,41 @@ +"""DIMENSION 4 q3: do the draft/tournament MODE-STATE literals have native gating +callers, or are they inert descriptor names driven from the script layer? + +Hypothesis: like the Seasons CompetitionManager setters (FUN_180101680/1801016c0, +zero callers), the draft/tournament mode nodes are named descriptors with no native +entry-gate; entry is decided in the packed front-end. Test by reading the xref +callers of each mode-state literal and decompiling the first native caller of each. + +Control: 'NOSEASONS' xref is known (FUN_180057330). Re-confirm the Seasons setters +have zero callers as the reference negative. +""" +import traceback +try: + def xr(a, label): + print("\n--- %s @ %#x ---" % (label, a)) + xs = xrefs_to(a) + for frm, typ, fn, ent in xs: + print(" from %#x %s in %s (%#x)" % (frm, typ, fn, ent)) + return xs + + xr(0x1801fbb50, "fefifa::FUTDraftOfflineMode") + xr(0x1801fbbc8, "fefifa::FUTOnlineDraftMode") + xr(0x180209a70, "CentralDraftModeOffline") + xr(0x180209ae0, "CentralDraftModeOnline") + xr(0x1801ebca0, "draftentry") + xr(0x1801fbbe8, "fefifa::FUTOfflineTournament") + xr(0x1801fbc08, "fefifa::FUTOnlineTournament") + xr(0x180218f18, "FUT::TournamentInfo") + xr(0x18021f870, "DraftMode(0x18021f870)") + xr(0x1801fbbd9, "DraftMode(0x1801fbbd9)") + + # Seasons CompetitionManager control: setters + singleton + print("\n=== CONTROL: Seasons CompetitionManager setters callers ===") + for a in (0x180101680, 0x1801016c0): + print("callers(%#x) = %s" % (a, callers(a))) + print("xrefs_to DAT_1802e6328 (CompetitionManager singleton):") + for frm, typ, fn, ent in xrefs_to(0x1802e6328): + print(" from %#x %s in %s (%#x)" % (frm, typ, fn, ent)) +except Exception: + traceback.print_exc() +print("QUERY_DONE") diff --git a/fifa17-recon/tools/ghidra_queries/q_md_draft_4.py b/fifa17-recon/tools/ghidra_queries/q_md_draft_4.py new file mode 100644 index 0000000..5c90e80 --- /dev/null +++ b/fifa17-recon/tools/ghidra_queries/q_md_draft_4.py @@ -0,0 +1,20 @@ +"""DIMENSION 4 q4: read the hub tile builder FUN_1800b2680 in full (references both +CentralDraftModeOffline and CentralDraftModeOnline), plus 'draftentry' FUN_180016190 +and the mode-node factories FUN_18006b820/FUN_18006b960 (online/offline draft) and +FUN_18006baa0/FUN_18006bd20 (offline/online tournament). + +Hypothesis: FUN_1800b2680 builds the draft/tournament/seasons hub tiles and either +(a) gates a tile on a server-reachable field, or (b) builds them unconditionally, +which would make the refusal script-layer. Print full length to avoid truncation. +""" +import traceback +try: + for a, lbl in [(0x1800b2680, "hub tile builder FUN_1800b2680"), + (0x180016190, "draftentry FUN_180016190")]: + d = dec(a) + print("=== %s len=%d ===" % (lbl, len(d))) + print(d) + print("\n") +except Exception: + traceback.print_exc() +print("QUERY_DONE") diff --git a/fifa17-recon/tools/ghidra_queries/q_md_draft_5.py b/fifa17-recon/tools/ghidra_queries/q_md_draft_5.py new file mode 100644 index 0000000..2c9371b --- /dev/null +++ b/fifa17-recon/tools/ghidra_queries/q_md_draft_5.py @@ -0,0 +1,37 @@ +"""DIMENSION 4 q5: map model vtable slots +0x2b0..+0x320 to their accessor +displacements, so slot +0x2d0 (the offline-draft-specific gate in FUN_1800b2680) +and slot +0x320 (cVar9) can be measured live. + +Model vtable static = 0x18021c2a0 (from ground truth / card doc). For each slot read +the target function's first bytes; if it is the accessor stub 0f b6 81 c3 +(movzx eax,byte [rcx+disp]; ret) decode disp. + +Control: slot +0x270 must decode to disp 0x1fd2e (IS_TRADING), slot +0x2c8 to 0x1fd3d +(IS_DRAFT_MODE_ENABLED) -- both established in the card-subsystem doc. +""" +import traceback +try: + VT = 0x18021c2a0 + names = {0x270:"IS_TRADING(+0x1fd2e)", 0x280:"IS_STORE", 0x2b0:"FRIENDLY_SEASON(+0x1fd3a)", + 0x2b8:"TOURNAMENT_QUIT(+0x1fd3b)", 0x2c0:"PROCESSING(+0x1fd3c)", + 0x2c8:"DRAFT_MODE(+0x1fd3d)", 0x2d0:"?offline-draft gate?", + 0x2d8:"STORY_MODE_REWARD", 0x2e0:"packAnim(+0x1fd45)", + 0x2f0:"RETURNING_USER", 0x320:"cVar9(FUN_1800b2680)"} + for slot in range(0x2a0, 0x330, 8): + tgt = qword(VT + slot) + b = read_bytes(tgt, 8) + disp = None + if b[:3] == b"\x0f\xb6\x81": # movzx eax, byte [rcx+disp32] + import struct + disp = struct.unpack(" %#012x stub=%s disp=%s %s" % + (slot, tgt, b.hex(), hex(disp) if disp is not None else "(not a byte-accessor)", note)) + if disp is None: + # decompile non-trivial accessors (offline draft gate / cVar9 may compute) + if slot in (0x2d0, 0x320): + print(" --- dec slot +%#x target ---" % slot) + print(dec(tgt)) +except Exception: + traceback.print_exc() +print("QUERY_DONE") diff --git a/fifa17-recon/tools/ghidra_queries/q_md_draft_6.py b/fifa17-recon/tools/ghidra_queries/q_md_draft_6.py new file mode 100644 index 0000000..9333ad6 --- /dev/null +++ b/fifa17-recon/tools/ghidra_queries/q_md_draft_6.py @@ -0,0 +1,38 @@ +"""DIMENSION 4 q6: are the GOTO_* tile destinations consumed by native gate code or +only handed to the front-end script layer? And what do the draft/tournament mode-node +factories register? + +Hypothesis: GOTO_DRAFT_ONLINE/OFFLINE/DISABLED and GOTO_*TOURNAMENT appear ONLY as +string VALUES passed to the UI property setter in FUN_1800b2680 (no native consumer), +i.e. the destination is dispatched by the packed front-end -> script layer. + +Control: GOTO_DRAFT_DISABLED must appear in FUN_1800b2680 (we just read it there). +""" +import traceback +try: + def whereis(lit): + hits = find_all(lit.encode() + b"\x00", (".rdata",)) + print("\n--- %r : %d literal hit(s) ---" % (lit, len(hits))) + for h in hits: + xs = xrefs_to(h) + if not xs: + print(" @%#x NO xref (string only referenced by offset math / not a lea target)" % h) + for frm, typ, fn, ent in xs: + print(" @%#x xref from %#x %s in %s (%#x)" % (h, frm, typ, fn, ent)) + + for s in ("GOTO_DRAFT_ONLINE", "GOTO_DRAFT_OFFLINE", "GOTO_DRAFT_DISABLED", + "GOTO_OFFLINE_TOURNAMENT", "GOTO_ONLINE_CHAMPIONS", "GOTO_OFFLINE_SEASON", + "GOTO_ONLINE_SEASON"): + whereis(s) + + # the draft mode-node factories (reference fefifa::FUTOnlineDraftMode / OfflineMode) + for a, lbl in [(0x18006b820, "FUN_18006b820 (FUTOnlineDraftMode node)"), + (0x18006b960, "FUN_18006b960 (FUTDraftOfflineMode node)"), + (0x18006baa0, "FUN_18006baa0 (FUTOfflineTournament node)"), + (0x18006bd20, "FUN_18006bd20 (FUTOnlineTournament node)")]: + d = dec(a) + print("\n=== %s len=%d ===" % (lbl, len(d))) + print(d) +except Exception: + traceback.print_exc() +print("QUERY_DONE") diff --git a/fifa17-recon/tools/ghidra_queries/q_md_draft_7.py b/fifa17-recon/tools/ghidra_queries/q_md_draft_7.py new file mode 100644 index 0000000..e2c8f65 --- /dev/null +++ b/fifa17-recon/tools/ghidra_queries/q_md_draft_7.py @@ -0,0 +1,29 @@ +"""DIMENSION 4 q7 (Q2 rigor): trace the three draft settings atoms 0xf9/0xfa/0xff +through the settings deser FUN_18013c6d0 to struct fields, and through the applier +FUN_18011dc50 to gate bytes +0x1fd3d / +0x1fd3e. Also enumerate ALL native readers +of the two draft gate bytes to confirm the tile builder is the only consumer. + +Control: applier must contain a write to +0x1fd2e gated on (field==1) (IS_TRADING, +established). Print applier + deser in full (lengths printed) to avoid truncation. +""" +import traceback +try: + d = dec(0x18011dc50) + print("=== applier FUN_18011dc50 len=%d ===" % len(d)) + print(d) + d2 = dec(0x18013c6d0) + print("\n=== settings deser FUN_18013c6d0 len=%d ===" % len(d2)) + print(d2) + + # native readers of the two draft gate bytes: scan .text for movzx/cmp/mov disp32 + import struct as _s + print("\n=== raw disp32 sites for 0x1fd3d and 0x1fd3e in .text ===") + for disp in (0x1fd3d, 0x1fd3e): + pat = _s.pack(" 8: + prev.pop(0) + # detect cmp of a byte ptr against 0 + if s.startswith("CMP") and "byte ptr" in s.lower() and s.rstrip().endswith(",0x0"): + print(" --- window around %#x ---" % int(ad.getOffset())) + for a2, s2 in prev[-3:]: + print(" %#x %s" % (a2, s2)) + # print next 5 insns + nxt = ins + for _ in range(5): + nxt = listing.getInstructionAt(nxt.getAddress().add(nxt.getLength())) + if nxt is None: + break + print(" %#x %s" % (int(nxt.getAddress().getOffset()), str(nxt))) +except Exception: + traceback.print_exc() diff --git a/fifa17-recon/tools/ghidra_queries/q_md_feature_3.py b/fifa17-recon/tools/ghidra_queries/q_md_feature_3.py new file mode 100644 index 0000000..bda4f83 --- /dev/null +++ b/fifa17-recon/tools/ghidra_queries/q_md_feature_3.py @@ -0,0 +1,55 @@ +"""DIMENSION 1 Q1/Q4 airtight check: is trade (0x330) or feature (0x11c) dispatched +ANYWHERE other than the userInfo deser FUN_18013ec10? + +If a second function compares against 0x330 or 0x11c, there could be another feature-style +restriction map. Enumerate ALL comparison FORMS by scanning instruction operands for the +immediates 0x330 and 0x11c across .text, and report the containing function of each. + +CONTROL: FUN_18013ec10 (0x18013ec10) MUST appear for both 0x330 and 0x11c (the known site). +If it does not, the operand-immediate scan is broken and results are unreliable. +""" +import traceback + +TARGETS = {0x330: "trade", 0x11c: "feature"} +KNOWN = 0x18013ec10 + +try: + # scan every instruction in .text for a scalar operand equal to a target immediate + hits = {t: set() for t in TARGETS} + text = None + for b in mem.getBlocks(): + if b.getName() == ".text" and b.isInitialized(): + text = b + break + ins = listing.getInstructions(text.getStart(), True) + count = 0 + while ins.hasNext(): + i = ins.next() + count += 1 + n = i.getNumOperands() + for op in range(n): + objs = i.getOpObjects(op) + for o in objs: + try: + v = o.getValue() if hasattr(o, "getValue") else None + except Exception: + v = None + if v is None: + continue + v = int(v) & 0xFFFFFFFF + if v in TARGETS: + f = fm.getFunctionContaining(i.getAddress()) + hits[v].add((f.getName() if f else "?", + int(f.getEntryPoint().getOffset()) if f else 0)) + print("scanned %d .text instructions" % count) + for t, name in TARGETS.items(): + print("\n=== immediate 0x%x (%s) appears in these functions ===" % (t, name)) + got_known = False + for fn, ent in sorted(hits[t], key=lambda x: x[1]): + mark = " <== KNOWN userInfo deser" if ent == KNOWN else "" + print(" %#x %s%s" % (ent, fn, mark)) + if ent == KNOWN: + got_known = True + print(" CONTROL FUN_18013ec10 present: %s" % got_known) +except Exception: + traceback.print_exc() diff --git a/fifa17-recon/tools/ghidra_queries/q_md_gates_1.py b/fifa17-recon/tools/ghidra_queries/q_md_gates_1.py new file mode 100644 index 0000000..05ecdb3 --- /dev/null +++ b/fifa17-recon/tools/ghidra_queries/q_md_gates_1.py @@ -0,0 +1,40 @@ +"""DIMENSION 2 Q1/Q2: the publisher, the applier, the settings deser, the ctor. + +HYPOTHESIS: FUN_18006cc60 publishes IS_* names by reading model vtable slots; the +complete set is 10 names over a contiguous .rdata run 0x1801fc118..0x1801fc228. +FUN_18011dc50 is the applier (byte = field==1). FUN_18013c6d0 is the settings deser +that maps atoms -> struct fields. FUN_18014e320 is the settings-struct ctor. + +CONTROL: FUN_18006cc60 must reference IS_TRADING_ENABLED and call the vt+0x270 +accessor already proven (reads 0x1fd2e). If the decompile of the applier shows +`cmp [reg+0x28],1 / sete / mov [rdi+0x1fd2e]` we have the known trading writer as a +positive control that the field-index arithmetic is right. +""" +import traceback +try: + PUB = 0x18006cc60 + APP = 0x18011dc50 + DESER = 0x18013c6d0 + CTOR = 0x18014e320 + + print("=" * 70) + print("PUBLISHER FUN_18006cc60 (len / decompile)") + print("=" * 70) + d = dec(PUB) + print("len:", len(d)) + print(d) + + print("=" * 70) + print(".rdata name run 0x1801fc118..0x1801fc250 (contiguous IS_* names)") + print("=" * 70) + p = 0x1801fc118 + end = 0x1801fc260 + while p < end: + s = rd_str(p) + if s: + print("%#x %r" % (p, s)) + p += len(s) + 1 + else: + p += 1 +except Exception: + traceback.print_exc() diff --git a/fifa17-recon/tools/ghidra_queries/q_md_gates_2.py b/fifa17-recon/tools/ghidra_queries/q_md_gates_2.py new file mode 100644 index 0000000..844208b --- /dev/null +++ b/fifa17-recon/tools/ghidra_queries/q_md_gates_2.py @@ -0,0 +1,93 @@ +"""DIMENSION 2 Q1/Q3: slot->disp resolution + READER search per gate byte. + +HYPOTHESIS: each publisher slot is an accessor stub `0f b6 81 c3` +(movzx eax,byte[rcx+disp]; ret) at model vtable 0x18021c2a0. For the refusing +modes (season/draft/tournament), the ONLY reader of the gate byte is the publisher +FUN_18006cc60, which hands the value to the script layer -- i.e. no native mode gate. + +CONTROL: slot 0x270 must decode to disp 0x1fd2e (trading), already proven by two +prior docs. Reader scan must find FUN_18011dc50 (applier, WRITES 0x1fd2e) and +FUN_1801a7260 (TO_TRADE_PILE predicate, READS 0x1fd2e) among the disp-32 hits for +0x1fd2e -- both known, so if either is missing the scan form is wrong. +""" +import traceback +try: + MODEL_VT = 0x18021c2a0 + slots = { + 0x270: "IS_TRADING_ENABLED", + 0x280: "IS_STORE_ENABLED", + 0x2b0: "IS_FRIENDLY_SEASON_ENABLED", + 0x2b8: "IS_TOURNAMENT_QUIT_ENABLED", + 0x2c0: "IS_PROCESSING_STATE_ENABLED", + 0x2c8: "IS_DRAFT_MODE_ENABLED", + 0x2d8: "IS_STORY_MODE_REWARD_ENABLED", + 0x2f0: "IS_RETURNING_USER_REWARDS_SCREEN_ENABLED", + } + + print("=" * 70) + print("SLOT -> accessor -> displacement (model offset)") + print("=" * 70) + disp_by_name = {} + for slot in sorted(slots): + tgt = qword(MODEL_VT + slot) + stub = read_bytes(tgt, 8) + disp = None + # 0f b6 81 c3 -> movzx eax, byte [rcx+disp32] ; ret + if stub[0:3] == b"\x0f\xb6\x81" and stub[7] == 0xc3: + disp = int.from_bytes(stub[3:7], "little") + # 8b 81 c3 -> mov eax, [rcx+disp32] ; ret (int getter, 4-byte) + elif stub[0:2] == b"\x8b\x81" and stub[6] == 0xc3: + disp = int.from_bytes(stub[2:6], "little") + name = slots[slot] + disp_by_name[name] = disp + print("slot +%#05x %-42s -> %#011x stub=%s disp=%s" + % (slot, name, tgt, stub.hex(), + ("%#x" % disp) if disp is not None else "??")) + + print() + print("=" * 70) + print("READERS: .text hits for each displacement (raw disp32 LE, form-agnostic)") + print("catches movzx/mov/cmp/lea/setcc in every encoding") + print("=" * 70) + for name, disp in disp_by_name.items(): + if disp is None: + continue + pat = disp.to_bytes(4, "little") + hits = find_all(pat, blocks=(".text",)) + print("\n%-42s disp %#x (%d hit(s))" % (name, disp, len(hits))) + for h in hits: + f = fm.getFunctionContaining(addr(h)) + fn = f.getName() if f else "?" + ent = int(f.getEntryPoint().getOffset()) if f else 0 + ins = listing.getInstructionAt(addr(h - 3)) or listing.getInstructionAt(addr(h - 2)) or listing.getInstructionAt(addr(h)) + print(" %#011x in %-16s (%#x) ins~ %s" + % (h, fn, ent, str(ins) if ins else "?")) + + print() + print("=" * 70) + print("READERS via vtable slot call: .text scan for call [reg+slot] (ff /2 disp32)") + print("=" * 70) + # FF /2 with mod=10 (disp32): modrm 0x90..0x97 (rax..rdi), 0x94 needs SIB + call_modrm = [0x90, 0x91, 0x92, 0x93, 0x95, 0x96, 0x97] + for slot in sorted(slots): + pat_disp = slot.to_bytes(4, "little") + found = [] + for mrm in call_modrm: + pat = bytes([0xff, mrm]) + pat_disp + for h in find_all(pat, blocks=(".text",)): + f = fm.getFunctionContaining(addr(h)) + found.append((h, f.getName() if f else "?", + int(f.getEntryPoint().getOffset()) if f else 0)) + # also REX.W/B variants (41 ff /2, 48/49 not valid for call reg-indirect but include 41) + for rex in (0x41,): + for mrm in [0x90, 0x91, 0x92, 0x93, 0x95, 0x96, 0x97]: + pat = bytes([rex, 0xff, mrm]) + pat_disp + for h in find_all(pat, blocks=(".text",)): + f = fm.getFunctionContaining(addr(h)) + found.append((h, f.getName() if f else "?", + int(f.getEntryPoint().getOffset()) if f else 0)) + print("\nslot +%#05x %-42s (%d call-site(s))" % (slot, slots[slot], len(found))) + for h, fn, ent in found: + print(" %#011x in %-16s (%#x)" % (h, fn, ent)) +except Exception: + traceback.print_exc() diff --git a/fifa17-recon/tools/ghidra_queries/q_md_gates_3.py b/fifa17-recon/tools/ghidra_queries/q_md_gates_3.py new file mode 100644 index 0000000..f05f23c --- /dev/null +++ b/fifa17-recon/tools/ghidra_queries/q_md_gates_3.py @@ -0,0 +1,58 @@ +"""DIMENSION 2 Q3/Q4: readers for the refusing modes + SBC/Objectives bytes. + +HYPOTHESIS: for season/draft/tournament the gate byte is read only to be +republished to the script layer (publisher) or to gate an unrelated sub-panel, not +to open the mode from a server response. SBC/Objectives have settings fields +(0x1fd2c/0x1fd42/0x1fd28, 0x1fd44) but NO IS_* publisher name; find their readers. + +CONTROL: the applier FUN_18011dc50 must contain `mov [rdi+0x1fd3a],al` (season) +preceded by a `cmp [reg+FIELD],1 / sete al`, giving the season struct field index; +we already know trading is field +0x28 -> byte 0x1fd2e, so that pairing in the same +decompile validates the field-index reading. +""" +import traceback +try: + print("=" * 70) + print("APPLIER FUN_18011dc50 (field -> byte, full)") + print("=" * 70) + d = dec(0x18011dc50) + print("len:", len(d)) + print(d) + + # readers to inspect: season 0x2b0 candidates (non-publisher), draft hub builder + for label, fa in [ + ("SEASON reader FUN_1800b0e20 (slot 0x2b0)", 0x1800b0e20), + ("SEASON reader FUN_18011e3c0 (slot 0x2b0)", 0x18011e3c0), + ("DRAFT hub-tile builder FUN_1800b2680 (slot 0x2c8)", 0x1800b2680), + ]: + print("=" * 70) + print(label) + print("=" * 70) + d = dec(fa) + print("len:", len(d)) + print(d[:6000]) + + print("=" * 70) + print("SBC / OBJECTIVES byte disp-scans (.text, form-agnostic)") + print("=" * 70) + for name, disp in [ + ("allowUntradeableForSquadBuildingSets", 0x1fd2c), + ("squadBuildingSetsGracePeriodMinutes", 0x1fd28), + ("allowGracePeriodForSquadBuildingSets", 0x1fd42), + ("enableObjectives", 0x1fd44), + ("packOpeningAnimationEnabled", 0x1fd45), + ]: + pat = disp.to_bytes(4, "little") + hits = find_all(pat, blocks=(".text",)) + print("\n%-40s disp %#x (%d hit(s))" % (name, disp, len(hits))) + for h in hits: + f = fm.getFunctionContaining(addr(h)) + fn = f.getName() if f else "?" + ent = int(f.getEntryPoint().getOffset()) if f else 0 + ins = (listing.getInstructionAt(addr(h - 3)) or + listing.getInstructionAt(addr(h - 2)) or + listing.getInstructionAt(addr(h))) + print(" %#011x in %-16s (%#x) ins~ %s" + % (h, fn, ent, str(ins) if ins else "?")) +except Exception: + traceback.print_exc() diff --git a/fifa17-recon/tools/ghidra_queries/q_md_gates_4.py b/fifa17-recon/tools/ghidra_queries/q_md_gates_4.py new file mode 100644 index 0000000..df42fb3 --- /dev/null +++ b/fifa17-recon/tools/ghidra_queries/q_md_gates_4.py @@ -0,0 +1,77 @@ +"""DIMENSION 2 Q3/Q4 finish: draft-tile gating in FUN_1800b2680; SBC/Objectives +accessor slots and whether any native code reads them. + +HYPOTHESIS: IS_DRAFT_MODE_ENABLED (cVar7) gates whether the draft hub tile is drawn +/ enabled. SBC(0x1fd2c,0x1fd42) and Objectives(0x1fd44) have accessor stubs at some +model vtable slots but NO IS_* publisher name; either a vtable-slot caller reads +them or they are consumed only by their own accessor (i.e. no native mode gate). + +CONTROL: draft accessor is model slot 0x2c8 (proven). Walking the vtable and +matching disp must reproduce 0x2c8->0x1fd3d and 0x270->0x1fd2e. +""" +import traceback +try: + MODEL_VT = 0x18021c2a0 + # find slots for the SBC/objectives displacements by walking vtable + want = {0x1fd2c: "allowUntradeableForSBC", 0x1fd42: "allowGracePeriodForSBC", + 0x1fd44: "enableObjectives", 0x1fd28: "sbcGracePeriodMinutes", + 0x1fd3e: "offlineDraft(0x2d0?)", 0x1fd2e: "trading(ctl)", + 0x1fd3d: "draft(ctl)"} + slot_for_disp = {} + print("=" * 70) + print("vtable walk: slot -> accessor disp (0x200..0x340)") + print("=" * 70) + for slot in range(0x200, 0x340, 8): + tgt = qword(MODEL_VT + slot) + if not (0x180000000 <= tgt < 0x181000000): + continue + stub = read_bytes(tgt, 8) + disp = None + if stub[0:3] == b"\x0f\xb6\x81" and stub[7] == 0xc3: + disp = int.from_bytes(stub[3:7], "little") + elif stub[0:2] == b"\x8b\x81" and stub[6] == 0xc3: + disp = int.from_bytes(stub[2:6], "little") + if disp in want: + slot_for_disp[disp] = slot + print("slot +%#05x -> %#011x disp %#x %s" + % (slot, tgt, disp, want[disp])) + + # scan slot-callers for the objectives + SBC slots + print() + print("=" * 70) + print("slot-call readers for SBC/Objectives accessor slots") + print("=" * 70) + call_modrm = [0x90, 0x91, 0x92, 0x93, 0x95, 0x96, 0x97] + for disp in (0x1fd44, 0x1fd2c, 0x1fd42): + slot = slot_for_disp.get(disp) + if slot is None: + print("\ndisp %#x: no vtable slot found in range" % disp) + continue + pat_disp = slot.to_bytes(4, "little") + found = [] + for pre in ([], [0x41]): + for mrm in call_modrm: + pat = bytes(pre + [0xff, mrm]) + pat_disp + for h in find_all(pat, blocks=(".text",)): + f = fm.getFunctionContaining(addr(h)) + found.append((h, f.getName() if f else "?", + int(f.getEntryPoint().getOffset()) if f else 0)) + print("\ndisp %#x slot +%#05x %-24s (%d call-site(s))" + % (disp, slot, want[disp], len(found))) + for h, fn, ent in found: + print(" %#011x in %-16s (%#x)" % (h, fn, ent)) + + # rest of the draft hub-tile builder: how cVar7/8/9 gate the tile + print() + print("=" * 70) + print("FUN_1800b2680 draft/tile gating region (search cVar / DRAFT in decompile)") + print("=" * 70) + d = dec(0x1800b2680) + lines = d.splitlines() + for i, ln in enumerate(lines): + if any(k in ln for k in ("cVar7", "cVar8", "cVar9", "DRAFT", "0x70", "0x60", + "DESTINATION", "GOTO_", "SBC", "OBJECTIVE", "case 0xc", + "caseD_")): + print("%4d: %s" % (i, ln.strip())) +except Exception: + traceback.print_exc() diff --git a/fifa17-recon/tools/ghidra_queries/q_md_gates_5.py b/fifa17-recon/tools/ghidra_queries/q_md_gates_5.py new file mode 100644 index 0000000..4730e4a --- /dev/null +++ b/fifa17-recon/tools/ghidra_queries/q_md_gates_5.py @@ -0,0 +1,16 @@ +"""DIMENSION 2 Q2 finish: settings deser FUN_18013c6d0 atom -> struct field. + +HYPOTHESIS: the deser matches each settings atom and stores into param_2[i], the +same struct the applier reads. Extract atom -> field index so each gate byte maps +to a concrete /settings flag atom. + +CONTROL: trading must be atom 0x336 -> field index 10 (0x28), already proven in the +transfer-market doc. If that pair appears, the atom->field reading is right. +""" +import traceback +try: + d = dec(0x18013c6d0) + print("len:", len(d)) + print(d) +except Exception: + traceback.print_exc() diff --git a/fifa17-recon/tools/ghidra_queries/q_md_sbc_1.py b/fifa17-recon/tools/ghidra_queries/q_md_sbc_1.py new file mode 100644 index 0000000..2bf19d3 --- /dev/null +++ b/fifa17-recon/tools/ghidra_queries/q_md_sbc_1.py @@ -0,0 +1,47 @@ +"""DIMENSION 5 SBC/Objectives. + +HYPOTHESIS Q1: enableSquadBuildingSetsFeature (atom 0x100) is READ as an input that +gates the SBC menu -- OR it is an OUTPUT name only ever emitted (like IS_TRADING_ENABLED +turned out to be). Decide by string xrefs: if the only lea to the literal is inside a +publisher (contiguous .rdata name run, straight-line stores), it is output-only. + +CONTROL: enableObjectives -- known to have a settings-switch arm (CLEAR-only). Its +literal should be referenced somewhere that is NOT a publisher. And IS_TRADING_ENABLED +literal -> should resolve to the publisher FUN_18006cc60 (proven output name), the +NEGATIVE control for "publisher == output-only". + +Q2: SBC set-list deser 0x180154990 + FUT/SBC_USE_STUBS string. What gates stub SBCs. +""" +import traceback +try: + def show_str_xrefs(label, needle): + print("\n=== %s : %r ===" % (label, needle)) + hits = find_all(needle) + print(" string occurrences:", [hex(h) for h in hits]) + for h in hits: + print(" literal @%#x = %r" % (h, rd_str(h, 60))) + # references land on the string addr itself for lea r8,[rip+..] + for a in (h, h - 4): + xs = xrefs_to(a) + if xs: + print(" xrefs_to(%#x):" % a) + for frm, typ, fn, ent in xs: + print(" from %#x %s in %s (%#x)" % (frm, typ, fn, ent)) + + show_str_xrefs("SBC feature flag", b"enableSquadBuildingSetsFeature\x00") + show_str_xrefs("Objectives flag (control)", b"enableObjectives\x00") + show_str_xrefs("Objectives-as-mgr flag", b"enableObjectivesAsManagerTasks\x00") + show_str_xrefs("IS_TRADING_ENABLED (output-name neg control)", b"IS_TRADING_ENABLED\x00") + + # SBC_USE_STUBS -- brief says deser 0x180154990 checks FUT/SBC_USE_STUBS + for n in (b"SBC_USE_STUBS", b"USE_STUBS", b"FUT/SBC"): + print("\n=== search %r ===" % n) + for h in find_all(n): + print(" @%#x = %r" % (h, rd_str(h - 8, 80))) + + print("\n=== dec 0x180154990 (SBC set-list deser per brief) ===") + d = dec(0x180154990) + print("LEN", len(d)) + print(d) +except Exception: + traceback.print_exc() diff --git a/fifa17-recon/tools/ghidra_queries/q_md_sbc_2.py b/fifa17-recon/tools/ghidra_queries/q_md_sbc_2.py new file mode 100644 index 0000000..3e7369a --- /dev/null +++ b/fifa17-recon/tools/ghidra_queries/q_md_sbc_2.py @@ -0,0 +1,39 @@ +"""DIMENSION 5 SBC/Objectives -- query 2. + +Q1 established so far: enableSquadBuildingSetsFeature literal @0x180230eb8 has EXACTLY +ONE xref, a DATA ref from 0x1802d2f60. Test that 0x1802d2f60 is the atom-dictionary +slot for atom 0x100 (dict base 0x1802d2760 + 0x100*8 = 0x1802d2f60). If so, the flag +is a PURE dictionary entry: never read as a named input, never emitted -- so CardsDLL +does not gate SBC on it, and a Blaze-config delivery of it can only reach the packed +script layer, never CardsDLL. + +Also: +- callers of 0x180154990 (the SBC stub loader) -> where the SBC menu/data path enters. +- FUN_180007c30/FUN_180007c40 -> is 'FUT/SBC_USE_STUBS' a client tunable (not server)? +- publisher FUN_18006cc60 full body -> is there ANY SBC/objectives enable name emitted? +- scan for any published string mentioning SBC / SQUAD_BUILD / CHALLENGE enable. +""" +import traceback +try: + dictbase = 0x1802d2760 + for atom in (0x100, 0xfd, 0xfe): + slot = dictbase + atom * 8 + ptr = qword(slot) + print("atom %#x -> dict slot %#x -> ptr %#x = %r" + % (atom, slot, ptr, rd_str(ptr, 50) if 0x180000000 <= ptr < 0x181000000 else "?")) + + print("\n=== callers of 0x180154990 (SBC stub loader) ===") + for ent, nm in callers(0x180154990): + print(" %#x %s" % (ent, nm)) + + print("\n=== FUN_180007c30 (config store getter?) ===") + print(dec(0x180007c30)[:1500]) + print("\n=== FUN_180007c40 (named-config lookup?) ===") + print(dec(0x180007c40)[:2500]) + + print("\n=== publisher FUN_18006cc60 full ===") + d = dec(0x18006cc60) + print("LEN", len(d)) + print(d) +except Exception: + traceback.print_exc() diff --git a/fifa17-recon/tools/ghidra_queries/q_md_sbc_3.py b/fifa17-recon/tools/ghidra_queries/q_md_sbc_3.py new file mode 100644 index 0000000..2c103d2 --- /dev/null +++ b/fifa17-recon/tools/ghidra_queries/q_md_sbc_3.py @@ -0,0 +1,41 @@ +"""DIMENSION 5 SBC/Objectives -- query 3. + +Find the SBC MENU gate. Established: no SBC gate byte in publisher; enableSquadBuilding +SetsFeature not read by CardsDLL. So is there ANY CardsDLL SBC gate/publish, or is it +script-layer? + +- xrefs_to(0x180154990): how is the SBC stub loader dispatched (vtable slot?). +- broad string scan for SBC/squad-building surface + any xref that is a publisher emit + (lea in .text) vs pure dictionary (DATA in .data dict region 0x1802d2xxx). +- hub tile builder FUN_1800b2680: does it feature-gate SBC? +- squadBuildingSetsClientData atom 0x2cf: is there a massinfo parser arm? what does it set? +""" +import traceback +try: + print("=== xrefs_to(0x180154990) ===") + for frm, typ, fn, ent in xrefs_to(0x180154990): + print(" from %#x %s in %s (%#x)" % (frm, typ, fn, ent)) + + print("\n=== string surface: SBC / squad-building / challenge feature ===") + for n in (b"IS_SBC", b"SBC_ENABLED", b"SQUAD_BUILD", b"SquadBuildingSets", + b"squadBuildingSets", b"FUT_SBC", b"futsquadbuildingchallenge", + b"SquadBuildingChallenge", b"MANAGER_TASKS", b"IS_OBJECTIVE", + b"OBJECTIVES_ENABLED", b"managerquest", b"ManagerQuest"): + hits = find_all(n) + if not hits: + continue + for h in hits: + xs = xrefs_to(h) + # classify each xref: DATA in dict region vs code lea + tags = [] + for frm, typ, fn, ent in xs: + where = "DICT" if 0x1802d2000 <= frm < 0x1802d4000 else ("CODE:%s(%#x)@%#x" % (fn, ent, frm)) + tags.append("%s/%s" % (typ, where)) + print(" %r @%#x xrefs=%s" % (rd_str(h, 48), h, tags or "NONE")) + + print("\n=== hub tile builder FUN_1800b2680 (SBC feature gate?) ===") + d = dec(0x1800b2680) + print("LEN", len(d)) + print(d[:6000]) +except Exception: + traceback.print_exc() diff --git a/fifa17-recon/tools/ghidra_queries/q_md_sbc_4.py b/fifa17-recon/tools/ghidra_queries/q_md_sbc_4.py new file mode 100644 index 0000000..b29ec62 --- /dev/null +++ b/fifa17-recon/tools/ghidra_queries/q_md_sbc_4.py @@ -0,0 +1,38 @@ +"""DIMENSION 5 SBC/Objectives -- query 4. + +- classify 0x180154990's 3 data xrefs (0x1802fceb8 vtable? 0x180277430 dispatch? + 0x180226fc8 factory/name?). Read the .rdata name near 0x180226fc8 and the qwords + around each site. +- full 0x180154990: what does FUT/SBC_USE_STUBS==1 actually build? (print full) +- grep the hub tile builder text for SBC/CHALLENGE/SET/GOTO_ destinations + switch arms. +- check for a CompetitionManager-style SBC singleton or count writer. +""" +import traceback +try: + def ctx_qwords(a, before=4, after=6): + print(" qwords around %#x:" % a) + for i in range(-before, after): + p = a + i*8 + v = qword(p) + nm = fname(v) if 0x180000000 <= v < 0x181000000 else "" + s = "" + if 0x180000000 <= v < 0x181000000: + st = rd_str(v, 40) + if st.isprintable() and len(st) > 2: + s = repr(st) + print(" [%#x] = %#x %s %s" % (p, v, nm, s)) + + for site in (0x1802fceb8, 0x180277430, 0x180226fc8): + print("\n=== xref site %#x ===" % site) + # what block + b = None + for blk in mem.getBlocks(): + if blk.getStart().getOffset() <= site <= blk.getEnd().getOffset(): + b = blk.getName() + print(" block:", b) + ctx_qwords(site) + + print("\n=== full FUN_180154990 ===") + print(dec(0x180154990)) +except Exception: + traceback.print_exc() diff --git a/fifa17-recon/tools/ghidra_queries/q_md_sbc_5.py b/fifa17-recon/tools/ghidra_queries/q_md_sbc_5.py new file mode 100644 index 0000000..3c398f5 --- /dev/null +++ b/fifa17-recon/tools/ghidra_queries/q_md_sbc_5.py @@ -0,0 +1,37 @@ +"""DIMENSION 5 -- query 5. Does CardsDLL have an SBC/objectives HUB TILE case or a +feature gate for them? Grep the full hub tile builder + look for GOTO_/DESTINATION +strings mentioning SBC/challenge/manager-task, and any 'enableSquadBuildingSets'-style +gate. Also enumerate the dispatch table around 0x180226fc0 (what handler group it is). +""" +import traceback +try: + d = dec(0x1800b2680) + import re + print("=== hub builder: lines mentioning SBC/CHALLENGE/TASK/GOTO_/DESTINATION/SQUAD_BUILD ===") + for ln in d.splitlines(): + if re.search(r"SBC|CHALLENGE|MANAGER_TASK|MANAGERTASK|GOTO_|DESTINATION|SQUAD_BUILD|OBJECTIVE|QUEST", ln, re.I): + print(" " + ln.strip()[:140]) + + print("\n=== all quoted string literals in hub builder (tile destinations) ===") + seen = set() + for m in re.findall(r'"([^"]{2,60})"', d): + if m not in seen: + seen.add(m) + print(" ", m) + + print("\n=== dispatch table @0x180226fc0 (handler group containing 0x180154990) ===") + for i in range(-6, 16): + p = 0x180226fc0 + i*8 + v = qword(p) + nm = fname(v) if 0x180000000 <= v < 0x181000000 else "" + print(" [%#x] %#x %s" % (p, v, nm)) + + print("\n=== xrefs_to dispatch table base region (who indexes 0x180226fc0) ===") + for base in (0x180226fc0, 0x180226fb0, 0x180226fb8): + xs = xrefs_to(base) + if xs: + print(" refs to %#x:" % base) + for frm, typ, fn, ent in xs: + print(" %#x %s in %s(%#x)" % (frm, typ, fn, ent)) +except Exception: + traceback.print_exc() diff --git a/fifa17-recon/tools/ghidra_queries/q_md_sbc_6.py b/fifa17-recon/tools/ghidra_queries/q_md_sbc_6.py new file mode 100644 index 0000000..992e59b --- /dev/null +++ b/fifa17-recon/tools/ghidra_queries/q_md_sbc_6.py @@ -0,0 +1,42 @@ +"""DIMENSION 5 -- query 6. The hub tile builder DOES compute enabled/disabled tile +destinations (GOTO_DRAFT_DISABLED, GOTO_MANAGER_QUEST_DISABLED). Find the SBC and +MANAGER-QUEST tile cases and the exact gate condition, and whether an ENABLED variant +destination exists (GOTO_MANAGER_QUEST / GOTO_SBC / GOTO_SQUAD_BUILDING...). + +Map the gate-byte accessor vtable slots read at the top of FUN_1800b2680 to model +displacements (slot 0x2c8/0x2d0/0x320) by reading each stub's disp32. +""" +import traceback +try: + print("=== search enabled/disabled destination strings across binary ===") + for n in (b"GOTO_MANAGER_QUEST", b"GOTO_SBC", b"GOTO_SQUAD_BUILDING", + b"GOTO_SQUAD_BUILDING_SETS", b"MANAGER_QUEST", b"SQUAD_BUILDING_SETS", + b"GOTO_DRAFT"): + for h in find_all(n): + print(" %#x %r" % (h, rd_str(h, 60))) + + # map model vtable slots to disp: read accessor stub bytes 0f b6 81 c3 + print("\n=== model gate-byte accessor slots (DAT_1802e6398 vtable static 0x18021c2a0) ===") + vtbase = 0x18021c2a0 + for slot in (0x2c8, 0x2d0, 0x320, 0x2b0, 0x270, 0x2e0): + tgt = qword(vtbase + slot) + b = read_bytes(tgt, 8) + disp = None + if b[0:3] == bytes.fromhex("0fb681"): + disp = int.from_bytes(b[3:7], "little") + print(" slot +%#x -> %#x bytes=%s disp=%s" + % (slot, tgt, b.hex(), hex(disp) if disp is not None else "?")) + + # Now dump the hub builder and print the SBC + manager-quest tile blocks with context + d = dec(0x1800b2680) + lines = d.splitlines() + print("\n=== hub builder around SBC tile image + 0x110 + 0x230 manager quest ===") + for i, ln in enumerate(lines): + if ("GameHub_SBS" in ln or "MANAGER_QUEST" in ln or "0x230" in ln + or "0x110" in ln or "DREAMSQUAD" in ln): + lo = max(0, i-14); hi = min(len(lines), i+4) + print(" --- ctx @line %d ---" % i) + for j in range(lo, hi): + print(" " + lines[j].strip()[:150]) +except Exception: + traceback.print_exc() diff --git a/fifa17-recon/tools/ghidra_queries/q_md_sbc_7.py b/fifa17-recon/tools/ghidra_queries/q_md_sbc_7.py new file mode 100644 index 0000000..766c3e8 --- /dev/null +++ b/fifa17-recon/tools/ghidra_queries/q_md_sbc_7.py @@ -0,0 +1,54 @@ +"""DIMENSION 5 -- query 7. Nail the verdicts. + +A) OBJECTIVES gate: cVar9 = model slot 0x320 = accessor FUN_18011c570 = disp 0x1fd44, + used to pick GOTO_MANAGER_QUEST vs GOTO_MANAGER_QUEST_DISABLED. Confirm the ONLY + consumers of that accessor (and of the draft accessors 0x2c8/0x2d0) so we can say + which gate byte drives which tile. CONTROL: trading accessor 0x270 (disp 0x1fd2e) + should be consumed by the TO_TRADE_PILE predicate, not the hub builder. + +B) settings arm for enableObjectives (atom 0xfd=253) in the applier chain: is it + CLEAR-only? Decompile the settings deser 0x18013c6d0 and grep its arms near 0xfd/0xfe. + +C) SBC: is there ANY CardsDLL reader of the SBC-config gate bytes as a MENU gate? + accessor stubs for disp 0x1fd2c/0x1fd28/0x1fd42 (SBC settings) -> their callers. +""" +import traceback +try: + def callers_of(a, tag): + print("\n=== callers of %#x (%s) ===" % (a, tag)) + cs = callers(a) + if not cs: + print(" (none via getCallingFunctions)") + for ent, nm in cs: + print(" %#x %s" % (ent, nm)) + + callers_of(0x18011c570, "objectives accessor disp 0x1fd44 / slot 0x320") + callers_of(0x18011c4b0, "draft accessor disp 0x1fd3d / slot 0x2c8") + callers_of(0x18011c580, "offline-draft accessor disp 0x1fd3e / slot 0x2d0") + callers_of(0x18011c670, "trading accessor disp 0x1fd2e / slot 0x270 (CONTROL)") + + # find accessor stubs for SBC settings disps by scanning .text for 0f b6 81 + print("\n=== find accessor stubs for SBC-config disps 0x1fd2c/0x1fd28/0x1fd42 ===") + for disp in (0x1fd2c, 0x1fd28, 0x1fd42): + pat = bytes.fromhex("0fb681") + disp.to_bytes(4, "little") + for h in find_all(pat, blocks=(".text",)): + f = func(h) + ent = int(f.getEntryPoint().getOffset()) if f else 0 + print(" disp %#x stub @%#x in %#x" % (disp, h, ent)) + if ent: + for cent, cnm in callers(ent): + print(" <- %#x %s" % (cent, cnm)) + + print("\n=== settings deser 0x18013c6d0 : arms near enableObjectives 0xfd/0xfe ===") + d = dec(0x18013c6d0) + print("LEN", len(d)) + import re + lines = d.splitlines() + for i, ln in enumerate(lines): + if re.search(r"0xfd\b|0xfe\b|== 0xfd|253|254|0x70\)|\+ 0x70|field.*0x1c", ln): + lo=max(0,i-3); hi=min(len(lines),i+5) + print(" --- @%d ---" % i) + for j in range(lo,hi): + print(" "+lines[j].strip()[:140]) +except Exception: + traceback.print_exc() diff --git a/fifa17-recon/tools/ghidra_queries/q_md_sbc_8.py b/fifa17-recon/tools/ghidra_queries/q_md_sbc_8.py new file mode 100644 index 0000000..155f393 --- /dev/null +++ b/fifa17-recon/tools/ghidra_queries/q_md_sbc_8.py @@ -0,0 +1,19 @@ +"""DIMENSION 5 -- query 8. Dump the DAT_1802e0f04 case 1 (SBC/SBS tile) and case 2 +regions of FUN_1800b2680 in full, to confirm the SBS tile (GameHub_SBS.png) receives +only FG_PATH from CardsDLL and no DESTINATION / no SBC-specific enable gate. +Print raw line numbers so the case boundaries are unambiguous. +""" +import traceback +try: + d = dec(0x1800b2680) + lines = d.splitlines() + # find the SBS image line and print a wide window + for i, ln in enumerate(lines): + if "GameHub_SBS" in ln: + lo = max(0, i-30); hi = min(len(lines), i+60) + print("=== window %d..%d around GameHub_SBS ===" % (lo, hi)) + for j in range(lo, hi): + print("%4d %s" % (j, lines[j].rstrip()[:150])) + break +except Exception: + traceback.print_exc() diff --git a/fifa17-recon/tools/ghidra_queries/q_md_seasons_1.py b/fifa17-recon/tools/ghidra_queries/q_md_seasons_1.py new file mode 100644 index 0000000..6c4285e --- /dev/null +++ b/fifa17-recon/tools/ghidra_queries/q_md_seasons_1.py @@ -0,0 +1,54 @@ +"""DIMENSION 3 SEASONS q1. +HYPOTHESIS: the Seasons refusal is decided in the front-end SCRIPT layer, not in +CardsDLL. If so, the CardsDLL season loaders make no network call, only read a +u16 count, and the CompetitionManager mode setters have ZERO in-DLL callers +(driven from outside). Prove or refute by enumerating callers of the mode setters, +decompiling the loader chain, and tracing the NOSEASONS event. +CONTROL: for the "zero callers" claim, a control with KNOWN callers must be in the +same batch -- I use FUN_180057560 (LoadOfflineSeasons) itself, which per prior work +is reached from the RPC dispatch, so callers() must be NON-empty for it if the +mechanism is sound; if callers() returns [] for a function I know is called, the +query form is broken and no absence claim is valid. +""" +import traceback +try: + targets = { + "FUN_180101680 (CompMgr mode set A)": 0x180101680, + "FUN_1801016c0 (CompMgr mode set B)": 0x1801016c0, + "FUN_180057560 LoadOfflineSeasons": 0x180057560, + "FUN_1800576b0 LoadSeasons": 0x1800576b0, + "FUN_180057230 LoadCurrentOfflineSeason": 0x180057230, + "FUN_180057330 (NOSEASONS fire?)": 0x180057330, + } + for name, a in targets.items(): + print("=" * 70) + print(name, hex(a)) + try: + cs = callers(a) + except Exception as e: + cs = "ERR %r" % e + print(" callers:", cs) + + # NOSEASONS literal + print("=" * 70) + print("NOSEASONS literal search") + for lit in (b"NOSEASONS\x00", b"NOSEASONS"): + hits = find_all(lit) + print(" ", lit, "->", [hex(h) for h in hits]) + # xrefs to the reported literal addr + print(" xrefs to 0x1801f92c0:") + for x in xrefs_to(0x1801f92c0): + print(" ", hex(x[0]), x[1], x[2], hex(x[3])) + + # CompetitionManager singleton + print("=" * 70) + print("DAT_1802e6328 (CompetitionManager singleton) xrefs:") + for x in xrefs_to(0x1802e6328): + print(" ", hex(x[0]), x[1], x[2], hex(x[3])) + + sys.stdout.flush() + os._exit(0) +except Exception: + traceback.print_exc() + sys.stdout.flush() + os._exit(0) diff --git a/fifa17-recon/tools/ghidra_queries/q_md_seasons_2.py b/fifa17-recon/tools/ghidra_queries/q_md_seasons_2.py new file mode 100644 index 0000000..aaafe50 --- /dev/null +++ b/fifa17-recon/tools/ghidra_queries/q_md_seasons_2.py @@ -0,0 +1,42 @@ +"""DIMENSION 3 SEASONS q2. +HYPOTHESIS: the season loaders / CompMgr mode setters are dispatched via a table +(RPC descriptor or vtable) rather than direct CALL, so callers()==[] is a +search-form artifact, NOT proof of script-layer. Also: the actual refusal is +count==0 -> fire NOSEASONS in FUN_180057330; establish where the count is read +and whether a server response could write it. +CONTROL: search for a KNOWN table-member function address as an 8-byte LE pointer +to prove find_all-pointer form works: I use FUN_180057560 vs a control that I +expect to appear in .data (the RPC descriptor). If NEITHER the target nor any +control pointer is found, the pointer-search form is broken. +""" +import traceback, struct +try: + def ptr_hits(a): + le = struct.pack("", [hex(h) for h in hits]) + + print("\n############ DECOMPILE FUN_180057330 (NOSEASONS fire) ############") + d = dec(0x180057330) + print("LEN", len(d)); print(d) + + print("\n############ DECOMPILE FUN_180057560 (LoadOfflineSeasons) ############") + d = dec(0x180057560) + print("LEN", len(d)); print(d) + + sys.stdout.flush() + os._exit(0) +except Exception: + traceback.print_exc() + sys.stdout.flush() + os._exit(0) diff --git a/fifa17-recon/tools/ghidra_queries/q_md_seasons_3.py b/fifa17-recon/tools/ghidra_queries/q_md_seasons_3.py new file mode 100644 index 0000000..d9be55d --- /dev/null +++ b/fifa17-recon/tools/ghidra_queries/q_md_seasons_3.py @@ -0,0 +1,45 @@ +"""DIMENSION 3 SEASONS q3. +GOAL: find WHO WRITES the model season-list vector (this+0x5c68, exposed via +vtable +0x898) and the current-season short at this+0x7138+0x96/+0x98. If the ONLY +writer is the /season SeasonList deserializer, then a server response CAN populate +it (server-reachable). If nothing writes it, or only a script-driven loader does, +the gate is upstream of any server response. +Also: identify the 0x1801f8xxx table (script-command dispatch?) and dump the +descriptor rows around the season callbacks; and dump the vtable region 0x180219ac0. +CONTROL: for the deser store-target question, decompile 0x1801683f0 (SeasonList +deser) AND 0x180167740 (element parser) IN FULL (print len) and look for a store +into a model offset vs a local response object. +""" +import traceback, struct +try: + # what references the season callback table cluster 0x1801f8a38..0x1801f8ab8? + print("### xrefs into the 0x1801f8xxx season-callback cluster ###") + for a in (0x1801f8a38, 0x1801f8a50, 0x1801f8a58, 0x1801f8ab0, 0x1801f8ab8): + print(" cluster", hex(a), "bytes:", read_bytes(a-8, 24).hex()) + for x in xrefs_to(a): + print(" xref", hex(x[0]), x[1], x[2], hex(x[3])) + + # dump the callback table region as pointers to see the row structure + print("\n### dump 0x1801f8a30..0x1801f8ac0 as qwords ###") + for off in range(0x1801f8a30, 0x1801f8ac0, 8): + v = qword(off) + print(" ", hex(off), hex(v), fname(v) if 0x180000000 <= v < 0x181000000 else "") + + print("\n### dump vtable region 0x180219aa0..0x180219af0 ###") + for off in range(0x180219aa0, 0x180219af0, 8): + v = qword(off) + print(" ", hex(off), hex(v), fname(v) if 0x180000000 <= v < 0x181000000 else "") + + # SeasonList deserializer + element parser: where do they store? + print("\n############ DECOMPILE 0x1801683f0 (SeasonList deser) ############") + d = dec(0x1801683f0); print("LEN", len(d)); print(d) + + print("\n############ DECOMPILE 0x180167740 (season element parser) ############") + d = dec(0x180167740); print("LEN", len(d)); print(d) + + sys.stdout.flush() + os._exit(0) +except Exception: + traceback.print_exc() + sys.stdout.flush() + os._exit(0) diff --git a/fifa17-recon/tools/ghidra_queries/q_md_seasons_4.py b/fifa17-recon/tools/ghidra_queries/q_md_seasons_4.py new file mode 100644 index 0000000..1f260ff --- /dev/null +++ b/fifa17-recon/tools/ghidra_queries/q_md_seasons_4.py @@ -0,0 +1,70 @@ +"""DIMENSION 3 SEASONS q4. +ESTABLISHED: SeasonList deser 0x1801683f0 clears+repopulates the model season-list +vector (model vtable +0x898). FUN_180057330 reads that vector; empty -> NOSEASONS. +NOW: (a) confirm +0x898 getter returns this+0x5c68 and +0x588 getter -> this+0x7138; +(b) find WHO ISSUES the GET /season (SEASONLIST) RPC and its callers -- is the +request reachable, or is it never issued; (c) find every writer of the count short +at this+0x7138+0x96/+0x98 via a disp32 scan (form-independent). +CONTROL for disp32 scan: also scan for a KNOWN-written model offset (0x1fd2e, the +trading gate byte, known to have exactly one writer FUN_18011dc50) -> must find >=1 +hit, else the scan form is broken. +""" +import traceback, struct +try: + MODEL_VT = 0x18021c2a0 + print("### model vtable getters ###") + for slot in (0x588, 0x898, 0x850): + t = qword(MODEL_VT + slot) + print("slot +%#x -> %#x %s" % (slot, t, fname(t))) + print(dec(t)[:600]) + print("-" * 40) + + def disp32_scan(off, label, blocks=(".text",)): + le = struct.pack("", len(hits), "hits") + for h in hits: + f = fm.getFunctionContaining(addr(h)) + print(" ", hex(h), f.getName() if f else "?") + return hits + + print("\n### disp32 scans (form-independent) ###") + disp32_scan(0x1fd2e, "CONTROL trading gate byte") + disp32_scan(0x5c68, "season list vector base") + disp32_scan(0x7138, "season sub-struct base") + + # the +0x96 / +0x98 short lives INSIDE the +0x7138 struct; its writers deref a + # pointer to that struct then +0x96. Hard to disp32-scan directly; instead show + # readers/writers of the +0x7138 getter result are the callers of slot +0x588. + + # SEASONLIST RPC: descriptor row 69, stride 0x30, base 0x1802caa28 + print("\n### RPC descriptor row 69 (SEASONLIST) ###") + base = 0x1802caa28 + row = base + 69 * 0x30 + print("row addr", hex(row), "bytes:", read_bytes(row, 0x30).hex()) + # first qword often a name ptr, look for a char* to 'season' + for o in range(0, 0x30, 8): + v = qword(row + o) + s = "" + if 0x180000000 <= v < 0x181000000: + try: + s = rd_str(v, 40) + except Exception: + s = "" + print(" +%#x %#x %r" % (o, v, s)) + + # find the 'ut/%s/season' or 'season' URL template and its xref (the issuer) + print("\n### 'season' url template search ###") + for lit in (b"ut/%s/season\x00", b"/season\x00", b"season\x00"): + hits = find_all(lit, blocks=(".rdata",)) + print(" ", lit, "->", [hex(h) for h in hits][:8]) + for h in hits[:4]: + for x in xrefs_to(h): + print(" xref", hex(x[0]), x[2], hex(x[3])) + + sys.stdout.flush() + os._exit(0) +except Exception: + traceback.print_exc() + sys.stdout.flush() + os._exit(0) diff --git a/fifa17-recon/tools/ghidra_queries/q_md_seasons_5.py b/fifa17-recon/tools/ghidra_queries/q_md_seasons_5.py new file mode 100644 index 0000000..658d963 --- /dev/null +++ b/fifa17-recon/tools/ghidra_queries/q_md_seasons_5.py @@ -0,0 +1,39 @@ +"""DIMENSION 3 SEASONS q5. +Q: is the GET /season (SEASONLIST) request reachable, and from where? Descriptor +row 69 handler is FUN_180124710. Get its callers and decompile it. Also decompile +the +0x7138 struct writer FUN_18011c2e0 and FUN_18011a830-area accessor to locate +the writer of the count short at +0x7138+0x96/+0x98. And decompile the three vtable +getter stubs (0x18011c150/+0x588, 0x18011b8a0/+0x898) via dec() on the address. +CONTROL: callers() proven working in q1 (returned [] for table-dispatched fns and +non-[] is expected for a normally-called fn); FUN_18011dc50 is a known +table/virtual-dispatched writer, use its caller set shape as sanity. +""" +import traceback +try: + for name, a in [ + ("FUN_180124710 SEASONLIST handler", 0x180124710), + ("FUN_18011c2e0 (+0x7138 accessor)", 0x18011c2e0), + ]: + print("=" * 60, name, hex(a)) + print("callers:", callers(a)) + d = dec(a); print("LEN", len(d)); print(d) + + print("=" * 60, "getter stub +0x588 @0x18011c150") + print(dec(0x18011c150)) + print("=" * 60, "getter stub +0x898 @0x18011b8a0") + print(dec(0x18011b8a0)) + print("=" * 60, "accessor @0x18011a822 area (fn 0x18011a830?)") + print("fname 0x18011a822 ->", fname(0x18011a822)) + print(dec(0x18011a822)[:1200]) + + # who calls the SeasonList RESPONSE deser's install? find xrefs to 0x180124710 + print("=" * 60, "xrefs_to FUN_180124710") + for x in xrefs_to(0x180124710): + print(" ", hex(x[0]), x[1], x[2], hex(x[3])) + + sys.stdout.flush() + os._exit(0) +except Exception: + traceback.print_exc() + sys.stdout.flush() + os._exit(0) diff --git a/fifa17-recon/tools/ghidra_queries/q_md_seasons_6.py b/fifa17-recon/tools/ghidra_queries/q_md_seasons_6.py new file mode 100644 index 0000000..dbb8f63 --- /dev/null +++ b/fifa17-recon/tools/ghidra_queries/q_md_seasons_6.py @@ -0,0 +1,59 @@ +"""DIMENSION 3 SEASONS q6. +Decode the non-function targets by raw bytes; find who consumes the +0x898 season +vector getter; find who ISSUES the SEASONLIST RPC (xrefs to descriptor row and the +RPC dispatch); find the writer of the +0x7138+0x96/+0x98 count short. +""" +import traceback, struct +try: + def show(a, n, label): + b = read_bytes(a, n) + print(label, hex(a), b.hex()) + + print("### decode getter/handler stubs ###") + show(0x18011b8a0, 12, "+0x898 getter") # expect lea rax,[rcx+0x5c68];ret + show(0x18011c150, 12, "+0x588 getter") # expect lea rax,[rcx+0x7138];ret + show(0x180124710, 48, "SEASONLIST handler") + + # instructions via listing for the handler + print("\n### listing FUN_180124710 (SEASONLIST handler) ###") + a = addr(0x180124710) + for _ in range(24): + ins = listing.getInstructionAt(a) + if ins is None: + print(" (no instr at", a, ")"); break + print(" ", a, ins) + a = ins.getAddress().add(ins.getLength()) + + # who references the +0x898 getter stub -> all season-vector consumers + print("\n### xrefs_to +0x898 getter stub 0x18011b8a0 ###") + for x in xrefs_to(0x18011b8a0): + print(" ", hex(x[0]), x[1], x[2], hex(x[3])) + + # who references the SEASONLIST descriptor row and its neighbours (RPC issue) + print("\n### xrefs_to descriptor row region ###") + for row in (0x1802cb718, 0x1802cb720, 0x1802cb738): + print(" row", hex(row)) + for x in xrefs_to(row): + print(" ", hex(x[0]), x[1], x[2], hex(x[3])) + + # xref to the URL-base pointer 0x18021e0d0 (ut/%s/season) -> the URL builder + print("\n### xrefs_to url base ptr 0x18021e0d0 and template 0x18021e598 ###") + for a2 in (0x18021e0d0, 0x18021e598): + for x in xrefs_to(a2): + print(" ", hex(a2), "<-", hex(x[0]), x[1], x[2], hex(x[3])) + + # +0x7138 struct: FUN_1801129f0 (reset?) and who calls FUN_18011c2e0 + print("\n### FUN_1801129f0 (season struct op) callers + decomp head ###") + print("callers:", callers(0x1801129f0)) + print(dec(0x1801129f0)[:900]) + + print("\n### xrefs_to FUN_18011c2e0 (writes +0x7138 area) ###") + for x in xrefs_to(0x18011c2e0): + print(" ", hex(x[0]), x[1], x[2], hex(x[3])) + + sys.stdout.flush() + os._exit(0) +except Exception: + traceback.print_exc() + sys.stdout.flush() + os._exit(0) diff --git a/fifa17-recon/tools/ghidra_queries/q_md_seasons_7.py b/fifa17-recon/tools/ghidra_queries/q_md_seasons_7.py new file mode 100644 index 0000000..84adb50 --- /dev/null +++ b/fifa17-recon/tools/ghidra_queries/q_md_seasons_7.py @@ -0,0 +1,50 @@ +"""DIMENSION 3 SEASONS q7. +(a) Is the +0x7138 season-struct writer (model vtable slot +0x990 = FUN_18011c2e0) + reached from the massinfo/settings RESPONSE path (a boot server lever), like the + settings applier at +0x988? Find call sites of slot +0x990. +(b) Does userInfo.feature parser FUN_18013ec10 have a season-related restriction key? + List its atom compares. +(c) Confirm FUN_1801683f0 is the FutSeasonList RESPONSE deser (RS4 name -> vtable +8). +(d) Does the massinfo body deser (FUN_180174xxx region) or its completion touch the + season vector / +0x7138 (i.e. can boot populate seasons)? +CONTROL: for the RS4 resolution, also resolve a KNOWN class RS4:FutSquadSave -> +must give 0x180171a60 (per class_deser docstring) as a passing control. +""" +import traceback, struct +try: + # (a) find call sites of model vtable slot +0x990 (0x990 disp on a call through rax/rcx) + # The applier +0x988 was called from 0x180173f0b and 0x18011e21a. Search .text for + # the byte pattern of a call [reg+0x990]: ff 90 90 09 00 00 (call [rax+0x990]) and + # ff 91 90 09 00 00 (call [rcx+0x990]) and other regs. + print("### call [reg+0x990] sites (season struct writer) ###") + for modrm in (0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97): + pat = bytes([0xff, modrm]) + struct.pack("= 2: + try: + v = int(parts[0], 0) + except ValueError: + try: + v = int(parts[1], 0) + except (ValueError, IndexError): + continue + parts = [parts[1], parts[0]] + parts[2:] + if v in want: + print(" ", hex(v), parts[1] if len(parts) > 1 else parts) + except Exception as e: + print(" tsv err", e) + + sys.stdout.flush() + os._exit(0) +except Exception: + traceback.print_exc() + sys.stdout.flush() + os._exit(0) diff --git a/fifa17-recon/tools/ghidra_queries/q_md_seasons_9.py b/fifa17-recon/tools/ghidra_queries/q_md_seasons_9.py new file mode 100644 index 0000000..c771d0c --- /dev/null +++ b/fifa17-recon/tools/ghidra_queries/q_md_seasons_9.py @@ -0,0 +1,23 @@ +"""q9: do FUN_18006ac20 / FUN_180105c90 / FUN_180057b00 WRITE (push/clear) the season +vector, or only READ it? Confirms the SeasonList deser is the sole populator. +Signature of a writer: assigns plVar[1] (size) or calls a push/grow (FUN_180166e00 / +FUN_180050a00) after the +0x898 getter. A reader only iterates *plVar..plVar[1]. +""" +import traceback +try: + for a in (0x18006ac20, 0x180105c90, 0x180057b00): + d = dec(a) + # find the region around the +0x898 call + i = d.find("0x898") + seg = d[max(0,i-200):i+500] if i >= 0 else d[:600] + writes = ("166e00" in d) or ("180050a00" in d) or ("0512f0" in d and "[1] = " in d) + print("=" * 60, hex(a), "LEN", len(d)) + print(" push(166e00)?", "180166e00" in d, " copy(50a00)?", "180050a00" in d, + " clear(512f0)?", "1800512f0" in d) + print(seg) + sys.stdout.flush() + os._exit(0) +except Exception: + traceback.print_exc() + sys.stdout.flush() + os._exit(0) diff --git a/fifa17-recon/tools/ghidra_queries/q_md_v1_A.py b/fifa17-recon/tools/ghidra_queries/q_md_v1_A.py new file mode 100644 index 0000000..13afb10 --- /dev/null +++ b/fifa17-recon/tools/ghidra_queries/q_md_v1_A.py @@ -0,0 +1,64 @@ +"""ADVERSARIAL VERIFY Dimension 1: userInfo.feature restriction vocabulary. + +Attacks: + D1.1 feature loop recognises EXACTLY one sub-key (trade 0x330), all else value-SKIP. + D1.2 trade uses INT getter FUN_1801c79d0, writes +0xa4 only when ==1. + D1.3 massinfo root FUN_180174630: at END_OBJECT the SOLE `cmp byte[reg+disp],0` site + is +0x17c -> zero [reg+0x50]; nothing else zeroes a settings field from a feature byte. + +Control: 0x330 MUST appear in the feature loop and map to +0xa4 (param_1+0x29). If the +massinfo case that calls the feature parser is not +0xd8, the +0x17c arithmetic is wrong. +""" +import traceback +try: + FEAT = 0x18013ec10 + MASS = 0x180174630 + + src = dec(FEAT, 300) + print("=== FEATURE FUN_18013ec10 decompile=%d chars ===" % len(src)) + print(src) + + # enumerate every integer constant compared in the loop (dispatch forms) + print("\n=== raw instructions in feature parser: CMP/immediates + calls ===") + f = func(FEAT) + it = listing.getInstructions(f.getBody(), True) + cnt = 0 + while it.hasNext(): + ins = it.next() + m = ins.getMnemonicString() + s = str(ins) + if m in ("CMP", "SUB", "LEA") and ("0x330" in s or "0x11c" in s): + print(" %#x %s" % (ins.getAddress().getOffset(), s)) + if m == "CALL": + print(" %#x %s" % (ins.getAddress().getOffset(), s)) + cnt += 1 + print(" (total insns=%d)" % cnt) + + print("\n=== MASSINFO root FUN_180174630: scan for cmp byte[reg+disp],0x0 ===") + fm2 = func(MASS) + it = listing.getInstructions(fm2.getBody(), True) + hits = [] + n = 0 + prev = [] + while it.hasNext(): + ins = it.next() + n += 1 + m = ins.getMnemonicString() + s = str(ins) + # cmp byte ptr [reg + disp], 0 + if m == "CMP" and "byte ptr" in s and s.rstrip().endswith(",0x0"): + hits.append((ins.getAddress().getOffset(), s)) + # any MOV of 0 into [reg+0x50] + if m == "MOV" and "dword ptr" in s and "0x50]" in s and s.rstrip().endswith(",0x0"): + print(" ZERO-WRITE %#x %s" % (ins.getAddress().getOffset(), s)) + print(" cmp byte[reg+disp],0 sites: %d" % len(hits)) + for a, s in hits: + print(" %#x %s" % (a, s)) + print(" (massinfo total insns=%d)" % n) + + # confirm which case calls the feature parser and at what struct offset + print("\n=== calls to FUN_18013ec10 (feature) from anywhere ===") + for frm, typ, fn, ent in xrefs_to(FEAT): + print(" %#x %s in %s" % (frm, typ, fn)) +except Exception: + traceback.print_exc() diff --git a/fifa17-recon/tools/ghidra_queries/q_md_v1_B.py b/fifa17-recon/tools/ghidra_queries/q_md_v1_B.py new file mode 100644 index 0000000..cff1772 --- /dev/null +++ b/fifa17-recon/tools/ghidra_queries/q_md_v1_B.py @@ -0,0 +1,38 @@ +"""ADVERSARIAL VERIFY Dimension 2: gate-byte writers + readers. + +Attacks (priority = claims that change what we send): + D2.6 Objectives deser cases 0xfd/0xfe are CLEAR-ONLY (value==0 => field=0, no set). + -> action "DO NOT send enableObjectives:0". If it also SETs, action is wrong. + D2.5 Draft: FUN_1800b2680 reads slot 0x2c8 (0x1fd3d) / 0x2d0 (0x1fd3e) and gates the + tile GOTO_DRAFT_*; the byte ACTUALLY gates (a cmp/test on the model slot result). + D2.3 Seasons: FUN_1800b2680 season tiles drawn UNCONDITIONALLY (no cVar gate). + D2.2 Applier FUN_18011dc50 writes byte = (field==1); one MOV per byte. + D2.1 Publisher FUN_18006cc60 IS_* names. + +Control: draft slot 0x2c8 must decode to disp 0x1fd3d via the accessor stub; if not the +whole slot->disp table is unreliable. +""" +import traceback +try: + PUB = 0x18006cc60 + DESER = 0x18013c6d0 + APPLY = 0x18011dc50 + HUB = 0x1800b2680 + SEASONPANEL = 0x1800b0e20 + + print("=== PUBLISHER FUN_18006cc60 ===") + print(dec(PUB, 240)) + + print("\n=== APPLIER FUN_18011dc50 ===") + print(dec(APPLY, 240)) + + print("\n=== HUB-TILE BUILDER FUN_1800b2680 ===") + print(dec(HUB, 300)) + + # deser: only print the arms for the mode atoms we care about + print("\n=== DESER FUN_18013c6d0 (full) ===") + ds = dec(DESER, 300) + print("len=%d" % len(ds)) + print(ds) +except Exception: + traceback.print_exc() diff --git a/fifa17-recon/tools/ghidra_queries/q_md_v2_adv1.py b/fifa17-recon/tools/ghidra_queries/q_md_v2_adv1.py new file mode 100644 index 0000000..130309c --- /dev/null +++ b/fifa17-recon/tools/ghidra_queries/q_md_v2_adv1.py @@ -0,0 +1,52 @@ +"""ADVERSARIAL verify of Seasons Findings 2 & 4 + getter offsets. +HYPOTHESIS UNDER ATTACK: + F2: model+0x5c68 season vector written ONLY by FUN_1801683f0 (/season deser). + F4: SEASONLIST descriptor @0x1802cb718 and URL 'ut/%s/season' @0x18021e598 have no code xref. + Getters: vtable+0x898 -> lea rax,[rcx+0x5c68]; vtable+0x588 -> lea rax,[rcx+0x7138]. +CONTROL: resolve a KNOWN getter/xref form the same way (disp32 immediate scan) and + confirm the scanner actually finds multi-hit patterns (not silently zero). +""" +import traceback +try: + MODEL_VT=0x18021c2a0 + # 1. getter slots + for slot in (0x898,0x588,0x988,0x990): + t=qword(MODEL_VT+slot) + print("vtable +%#x -> %#x %s" % (slot,t,fname(t))) + print(" dec head:", " | ".join(dec(t).splitlines()[:6])) + # 2. disp32 immediate scan in .text for 0x5c68 (le 4-byte) and 0x7138 + for off_name,val in (("0x5c68",0x5c68),("0x7138",0x7138),("0x1fd3a",0x1fd3a)): + pat=val.to_bytes(4,'little') + hits=find_all(pat, blocks=(".text",)) + print("\ndisp32 scan .text for %s (%s): %d hits" % (off_name, pat.hex(), len(hits))) + for h in hits[:12]: + f=func(h); print(" @%#x in %s" % (h, f.getName() if f else '?')) + # 3. call sites of [reg+0x898] -- scan .text for the modrm/disp32 forms of call [r+0x898] + # common encodings: FF 90 98 08 00 00 (call [rax+0x898]); reg varies in modrm middle bits. + print("\n--- call [reg+0x898] sites (FF /2 disp32 = 98 08 00 00) ---") + disp=(0x898).to_bytes(4,'little') + for pat_desc,pat in [("call [rax+d]",b"\xff\x90"+disp),("call [rcx+d]",b"\xff\x91"+disp), + ("call [rdx+d]",b"\xff\x92"+disp),("call [rbx+d]",b"\xff\x93"+disp), + ("call [rsi+d]",b"\xff\x96"+disp),("call [rdi+d]",b"\xff\x97"+disp), + ("call [r8+d]",b"\x41\xff\x90"+disp),("call [r9+d]",b"\x41\xff\x91"+disp), + ("call [r10+d]",b"\x41\xff\x92"+disp),("call [r11+d]",b"\x41\xff\x93"+disp)]: + hits=find_all(pat, blocks=(".text",)) + for h in hits: + f=func(h); print(" %s @%#x in %s" % (pat_desc,h,f.getName() if f else '?')) + # 4. Finding 4: descriptor + url xrefs + print("\n--- F4: SEASONLIST descriptor / url xrefs ---") + print("xrefs_to(0x1802cb718):", xrefs_to(0x1802cb718)) + print("xrefs_to(0x18021e598) url ut/%s/season:", xrefs_to(0x18021e598)) + print("string @0x18021e598:", repr(rd_str(0x18021e598))) + # SEASONLIST literal locate + sl=find_all(b"SEASONLIST\x00") + print("SEASONLIST literal at:", [hex(x) for x in sl]) + for a in sl: + print(" xrefs_to(%#x):"%a, xrefs_to(a)) + # url literal locate + us=find_all(b"ut/%s/season\x00") + print("'ut/%s/season' literal at:", [hex(x) for x in us]) + for a in us: + print(" xrefs_to(%#x):"%a, xrefs_to(a)) +except Exception: + traceback.print_exc() diff --git a/fifa17-recon/tools/ghidra_queries/q_md_v3_1.py b/fifa17-recon/tools/ghidra_queries/q_md_v3_1.py new file mode 100644 index 0000000..b08e2a4 --- /dev/null +++ b/fifa17-recon/tools/ghidra_queries/q_md_v3_1.py @@ -0,0 +1,45 @@ +"""Adversarial verify Dimension 4/5 decompile claims. +Hypothesis under attack: + (A) FUN_1800b2680 case 0xc reads slot+0x2c8 -> GOTO_DRAFT_ONLINE/DISABLED; + case 0xd reads slot+0x2d0 AND +0x2c8 -> GOTO_DRAFT_OFFLINE/DISABLED; + cases 5/0xe (tournament) set GOTO_* UNCONDITIONALLY; + objectives block reads slot 0x320 -> GOTO_MANAGER_QUEST(_DISABLED). + (B) settings deser FUN_18013c6d0: 0xf9->[0x17]; 0xfa&0xff->[0x18]; 0xfd&0xfe->[0x1c]. + (C) applier FUN_18011dc50: +0x1fd3d=[0x17]==1; +0x1fd3e=[0x18]==1; +0x1fd44=[0x1c]==1. + (D) feature FUN_18013ec10 arm 0x11c recognizes ONLY atom 0x330. +Control: settings 0x336 tradingEnabled -> [10]; applier +0x1fd2e=[10]==1 (known good). +Method: print full decompile length + context around each token so absence claims +are from FULL text, not truncation. +""" +import traceback +def ctx(txt, needles, before=2, after=6): + lines=txt.splitlines() + hits=set() + for i,l in enumerate(lines): + for n in needles: + if n in l: + for j in range(max(0,i-before), min(len(lines),i+after+1)): + hits.add(j) + for j in sorted(hits): + print(" %4d: %s"%(j,lines[j])) +try: + for ea,name,needles in [ + (0x1800b2680,"FUN_1800b2680 (hub tile builder)", + ["GOTO_DRAFT","GOTO_MANAGER_QUEST","GOTO_OFFLINE_TOURNAMENT","GOTO_ONLINE_CHAMPIONS", + "GOTO_OFFLINE_SEASON","GOTO_ONLINE_SEASON","0x2c8","0x2d0","0x320","0x2b8", + "SBS","GameHub_SBS","0xd0)","GOTO_SBC","GOTO_SQUAD"]), + (0x18013c6d0,"FUN_18013c6d0 (settings deser)", + ["0xf9","0xfa","0xff","0xfd","0xfe","0x336","0x17]","0x18]","0x1c]","[10]","param_2[10]"]), + (0x18011dc50,"FUN_18011dc50 (applier)",None), + (0x18013ec10,"FUN_18013ec10 (feature/massinfo)", + ["0x11c","0x330","0x336"]), + ]: + c=dec(ea) + print("="*70) + print("%s len=%d"%(name,len(c))) + if needles is None: + print(c) + else: + ctx(c,needles) +except Exception: + traceback.print_exc() diff --git a/fifa17-recon/tools/sbc_hook_poke.py b/fifa17-recon/tools/sbc_hook_poke.py new file mode 100644 index 0000000..11a8214 --- /dev/null +++ b/fifa17-recon/tools/sbc_hook_poke.py @@ -0,0 +1,290 @@ +#!/usr/bin/env python3 +"""SBC menu render probe + minimal gate-arm poke (FIFA 17 CardsDLL). + +WHAT THIS DOES +-------------- +READ-ONLY BY DEFAULT. With no flags it opens /proc//mem O_RDONLY, proves the +CardsDLL slide against the on-disk FNV prologue, and reports the exact live state of +the SBC data flow so the human can see whether a poke would render anything: + + A = FUT root singleton = *(0x1802e6398) (vtable static 0x18021c2a0) + B = SBC request/TTL cache = A + 0x1f9d8 (vtable static 0x1801fae70) + B+0x08 collection ptr, B+0x20 QPC deadline, B+0x28 READY byte (the gate) + B offset 0x1f9d8 is DECODED live from A.vtable[+0x4e8] thunk + (48 8d 81 = lea rax,[rcx+disp32]), not taken on faith. + M = SBC categories store = *(A + 0x20a68) (THE RENDER SOURCE) + lazy getter A.vtable[+0x9b0] = 0x18011b7d0; category count = WORD[M+0x50]; + category vector M+0x58..M+0x60 (stride 0xf0). The SBC menu draws + WORD[M+0x50] + 2 tiles. M is NULL until the menu is opened (lazily built, + empty offline) or the sbs/sets response is parsed. + HUB = sibling cache = A + 0x1fd70 + SBC req-mgr = A + 0x2a0 + +THE VERIFIED GATE (proven byte-exact against the shipped DLL, isValid 0x180065d40): + call 0x1801642c0 ; online sub-check -- STUBBED `mov al,1; ret`, not the wall + cmp BYTE[rbx+0x28],0 ; je fail ; <-- the READY gate + cmp QWORD[rbx+0x8],0 ; je RET_1 ; <-- SHORT-CIRCUIT: coll==0 => return 1 + ; only reached when B+0x08 != 0 + So isValid returns TRUE with B+0x28=1 AND B+0x08=0 (short-circuit). Writing B+0x08 + forces the deadline branch; with a stale/past B+0x20 that returns 0 -> the error + modal. That is why this tool NEVER writes B+0x08 or B+0x20 -- doing so can DEFEAT + the fix and is a crash risk if the pointer is not a real EASTL collection. + +THE INTERVENTION THIS TOOL CAN APPLY (--apply) +---------------------------------------------- +The ONLY write blessed by adversarial verification as non-crashing from a bare +/proc/mem poke is: + + BYTE[B+0x28] = 1 (arm the SBC ready gate; leave B+0x08 and B+0x20 alone) + +This OPENS the SBC menu (isValid short-circuits to true) instead of the error modal. +It renders EMPTY (2 placeholder tiles) unless M is populated, because tiles come from +WORD[M+0x50], not from B. It is the proven-safe NEGATIVE CONTROL / gate-open step. + +WHY A POPULATED MENU NEEDS THE INJECTED DLL, NOT THIS TOOL +---------------------------------------------------------- +Populating M means running the client's OWN parser (deser 0x18017b2b0) over a real +sbs/sets response, so it clears+builds M with the correct 0xf0/0x3570 geometry and +rebuilds the indices. That requires executing code IN-PROCESS (the openfut-hook DLL) +or serving GET ut/game/fifa17/sbs/sets through the bridge so the native completion +path populates M and arms B for you. A /proc/mem byte poke cannot build M's nested +EASTL vectors safely (hand-building 0xf0/0x3570 records is the highest-crash option +all three verifiers rejected), and it cannot call the deser with a seated SAX cursor. +Cold-calling the deser with a null cursor WIPES M (clear runs before append) and +parses nothing. So: this tool arms the gate; the DLL (spec printed by --spec) does +the populate. See docs and the openfut-hook integration notes. + +RISK / SAFETY +------------- + * Default run = READ ONLY. Nothing here writes unless you pass --apply. + * --apply WRITES LIVE GAME MEMORY (/proc//mem O_WRONLY): one byte, B+0x28=1. + Do this only on a client sitting in the FUT hub, ideally with the SBC menu CLOSED + (never mutate while the menu is mid-iterate). Then re-open the SBC menu to render. + * --apply re-proves the slide AND re-verifies B.vtable == static 0x1801fae70 before + writing, and aborts on any mismatch. It refuses to write anything but B+0x28. + * If FIFA17.exe is not running or CardsDLL is not mapped, the tool says so and exits + 0 -- static analysis is authoritative; live steps are best-effort. + +USAGE + python3 sbc_hook_poke.py # read-only probe + dry-run plan (default) + python3 sbc_hook_poke.py --spec # also print the injected-DLL populate spec + python3 sbc_hook_poke.py --apply # WRITE BYTE[B+0x28]=1 (arm gate) -- HUMAN ONLY +""" +import os, struct, sys + +# ---- static VAs (image base 0x180000000; add live slide) -------------------- +A_SINGLETON = 0x1802e6398 # slot holding A = FUT root singleton ptr +CTRL_VA = 0x180180d00 # FNV atom-hash prologue used to prove the slide +A_VT_STATIC = 0x18021c2a0 # A.vtable (verify live == this + slide) +B_VT_STATIC = 0x1801fae70 # B.vtable (verify live == this + slide) +A_VT_BGETTER = 0x4e8 # A.vtable slot -> thunk lea rax,[rcx+0x1f9d8] +A_VT_MGETTER = 0x9b0 # A.vtable slot -> M lazy getter 0x18011b7d0 +M_CACHE_OFF = 0x20a68 # M cache slot on A (decoded from getter cmp) +HUB_OFF = 0x1fd70 +REQMGR_OFF = 0x2a0 +ISVALID_VA = 0x180065d40 +ONLINE_STUB = 0x1801642c0 # expect b0 01 c3 (mov al,1; ret) +B_READY_OFF = 0x28 + +PE_PATHS = ['/tmp/fut/cardsdll.dll', '/mnt/games/FIFA 17/CardsDLL_Win64_retail.dll'] + + +def find_pid(): + for d in os.listdir('/proc'): + if d.isdigit(): + try: + if open('/proc/%s/comm' % d).read().strip() == 'FIFA17.exe': + return int(d) + except Exception: + pass + return None + + +def load_pe(): + for p in PE_PATHS: + try: + return open(p, 'rb').read() + except Exception: + continue + return None + + +def print_spec(): + print(""" +== INJECTED-DLL POPULATE SPEC (openfut-hook / version.dll) =================== +The poke tool arms the gate; the DLL must POPULATE M. Preferred, lowest-risk, +zero-forged-state path (run ON THE GAME MAIN/UI THREAD, SBC menu CLOSED): + + Option 1 (best) -- serve the response, let the native chain do everything: + Route GET ut/game/fifa17/sbs/sets through the bridge/core with real JSON. + The client's own dispatcher builds the response-msg (ctor 0x18017b1c0, + deser slot +0x20 = 0x18017b2b0), seats a genuine SAX cursor, and its own + chain populates M and arms B via the completion callback 0x1800b8c30 + (subscribed in svc ctor 0x1800b5765). No memory forging at all. NOTE: the + front-end refuses to ISSUE the fetch offline and the "ut/%s/sbs" template + (0x18021d908) has no native xref, so the DLL must inject the RESPONSE at the + message-receive layer (not rely on the client to send the GET). + + Option 2 (fallback) -- drive the real parser from the hook: + 1. reg = 0x1800d7170() ; -> ®istry 0x1802c2988 + 2. mgr = 0x180009c80(&out, reg) ; hashes 0xed84b11/0xed84b12 + 3. build a REAL seated SAX cursor over canned sbs/sets JSON: + ctx = 0x1801c63e0(...) + lexer 0x1801c8060 + an input-source object + whose vtable[+0x8] yields your JSON bytes. A null-source cursor parses + nothing AND the deser clears M first -> do not cold-call with null. + 4. 0x18017b2b0(rcx=ignored, rdx=cursor) ; self-locates mgr, clears M, + per-cat ctor 0x180159da0 / cat-deser 0x18017ab80 / finalize 0x180160e50 / + append 0x18015a770, then store finalizers 0x180160e00 + 0x180160f30 + + 0x180161020, then commit mgr.vtable[+0x8]. Sets WORD[M+0x50]=N. + 5. arm gate: A.vtable[+0x4e8](A) -> B; set ONLY BYTE[B+0x28]=1. + Do NOT write B+0x08 or B+0x20 (short-circuit; see isValid proof). + 6. trigger render: re-open the SBC menu, or fire refresh events 0x756c-0x7574 + so the controller re-reads WORD[M+0x50] at 0x1800b5eda. + + DO NOT: hand-build 0xf0 category / 0x3570 set records for a direct append + (deep-copy ctor 0x18015a2b0 derefs inner EASTL sub-vectors -> heap corruption); + skip the index-rebuild finalizers (by-index getter 0x180160a80 reads OOB); + mutate M while the menu iterates; or run any of this off the main thread. +============================================================================= +""") + + +def main(): + apply = '--apply' in sys.argv + if '--spec' in sys.argv: + print_spec() + + pid = find_pid() + if not pid: + print("FIFA17.exe not running -> skipping live steps. Static analysis is " + "authoritative; no write possible. (see --spec for the DLL plan)") + return 0 + print("pid %d" % pid) + + base = None + for ln in open('/proc/%d/maps' % pid): + if 'CardsDLL' in ln: + base = int(ln.split('-')[0], 16) + break + if not base: + print("CardsDLL not mapped (client not in Ultimate Team yet). Skip live step.") + return 0 + slide = base - 0x180000000 + print("base %#x slide %#x" % (base, slide)) + + fdr = os.open('/proc/%d/mem' % pid, os.O_RDONLY) + rd = lambda va, n: os.pread(fdr, n, va) + q = lambda va: struct.unpack(' refuse." % PE_PATHS) + os.close(fdr); return 1 + f = lambda va: va - 0x180000000 - 0x1000 + 0x400 # .text rva 0x1000 rawptr 0x400 + ctl_ok = pe[f(CTRL_VA):f(CTRL_VA)+24] == rd(CTRL_VA + slide, 24) + print("CONTROL FNV %s" % ("MATCH" if ctl_ok else "MISMATCH -> ABORT")) + if not ctl_ok: + os.close(fdr); return 1 + + # ---- prove the two gate facts from on-disk bytes ------------------------ + online_stub = pe[f(ONLINE_STUB):f(ONLINE_STUB)+3] + print("online sub-check 0x1801642c0 on-disk = %s %s" + % (online_stub.hex(), "(stubbed mov al,1;ret -- NOT the wall)" + if online_stub == b'\xb0\x01\xc3' else "(UNEXPECTED)")) + + # ---- A root + vtable ---------------------------------------------------- + A = q(A_SINGLETON + slide) + A_vt = q(A) - slide + print("A(FUT root) = %#x A.vtable %#x %s" + % (A, A_vt, "(match)" if A_vt == A_VT_STATIC else "(MISMATCH static %#x)" % A_VT_STATIC)) + + # ---- decode B offset live from A.vtable[+0x4e8] thunk ------------------- + bthunk = q((A_vt + slide) + A_VT_BGETTER) # A.vtable slot -> thunk VA (live) + stub = rd(bthunk, 7) + b_off = None + if stub[:3] == b'\x48\x8d\x81': # lea rax,[rcx+disp32] + b_off = struct.unpack(' %#x stub=%s decoded B offset=%s" + % (bthunk - slide, stub.hex(), + hex(b_off) if b_off is not None else "?? (expected 0x1f9d8)")) + if b_off is None: + b_off = 0x1f9d8 # fall back to the model constant, but we warned above + B = A + b_off + + # ---- B cache fields ----------------------------------------------------- + def show_cache(name, C, expect_vt=None): + vt = q(C) - slide + coll = q(C + 0x08); dl = q(C + 0x20); ready = rd(C + B_READY_OFF, 1)[0] + tag = "" + if expect_vt is not None: + tag = "(match)" if vt == expect_vt else "(MISMATCH static %#x)" % expect_vt + print(" %-4s @%#x vt=%#x %s coll(+8)=%#x deadline(+0x20)=%#x ready(+0x28)=%d" + % (name, C, vt, tag, coll, dl, ready)) + return vt, coll, dl, ready + + print("live cache state:") + b_vt, b_coll, b_dl, b_ready = show_cache("SBC", B, B_VT_STATIC) + show_cache("HUB", A + HUB_OFF) + print(" reqmgr @%#x +0x08=%#x" % (A + REQMGR_OFF, q(A + REQMGR_OFF + 0x08))) + + # ---- M = the render source --------------------------------------------- + M = q(A + M_CACHE_OFF) + if M == 0: + print(" M (render source, *(A+0x20a68)) = 0 -> NOT built yet " + "(SBC menu not opened this session). Empty offline.") + cat_count = 0 + else: + cat_count = w(M + 0x50) + print(" M (render source) = %#x WORD[M+0x50] category count = %d " + "(menu would draw %d tiles)" % (M, cat_count, cat_count + 2)) + + # ---- the plan / dry-run ------------------------------------------------- + print("\n-- INTERVENTION PLAN --") + print(" Verified-safe write (this tool, --apply): BYTE @ %#x (B+0x28) = 1" + % (B + B_READY_OFF)) + print(" effect: isValid short-circuits TRUE -> SBC menu OPENS instead of modal.") + print(" render: EMPTY unless M is populated (tiles = WORD[M+0x50], not B).") + print(" REFUSED here (footgun): writing B+0x08 or B+0x20 -> deadline branch,") + print(" can return FALSE (modal) and/or crash on a bogus collection ptr.") + print(" Populated render: needs the injected DLL to fill M (run with --spec).") + + if not apply: + cur = rd(B + B_READY_OFF, 1)[0] + print("\n[DRY-RUN] default mode -- no memory written. current BYTE[%#x]=%d, " + "would set =1. Pass --apply to write (HUMAN ONLY)." + % (B + B_READY_OFF, cur)) + os.close(fdr) + return 0 + + # ---- --apply: the single blessed byte write ----------------------------- + # re-verify EVERYTHING load-bearing before touching live memory. + if not ctl_ok or A_vt != A_VT_STATIC or b_vt != B_VT_STATIC: + print("\n[ABORT] slide/vtable sanity failed at write time -> refusing to write.") + os.close(fdr); return 1 + if b_off != 0x1f9d8: + print("\n[ABORT] B offset decoded as %s (expected 0x1f9d8) -> refusing to write." + % hex(b_off)) + os.close(fdr); return 1 + + target = B + B_READY_OFF + before = rd(target, 1)[0] + print("\n[APPLY] target BYTE @ %#x before=%d" % (target, before)) + if before == 1: + print("[APPLY] already 1 -> nothing to do (idempotent).") + os.close(fdr); return 0 + fdw = os.open('/proc/%d/mem' % pid, os.O_WRONLY) + n = os.pwrite(fdw, b'\x01', target) + os.close(fdw) + after = rd(target, 1)[0] + print("[APPLY] wrote %d byte(s); read-back BYTE @ %#x = %d %s" + % (n, target, after, "(OK)" if after == 1 else "(WRITE FAILED)")) + print("[APPLY] now RE-OPEN the SBC menu. Expect: menu opens (no modal); tiles will") + print(" be EMPTY/placeholder unless M was populated by the DLL first.") + os.close(fdr) + return 0 + + +if __name__ == '__main__': + sys.exit(main()) diff --git a/fifa17-recon/tools/sbc_populate_poke.py b/fifa17-recon/tools/sbc_populate_poke.py new file mode 100644 index 0000000..cef4ba2 --- /dev/null +++ b/fifa17-recon/tools/sbc_populate_poke.py @@ -0,0 +1,105 @@ +#!/usr/bin/env python3 +"""SBC cache populate/arm probe + poke (FIFA 17 CardsDLL). + +READ-ONLY BY DEFAULT. The write path exists for the human's morning test but is +NEVER reached unless you pass --arm AND --i-mean-it. Running with no args only +READS /proc//mem (O_RDONLY) and prints what a poke WOULD do. + +Object graph (all static VAs, image base 0x180000000; add the live slide): + A = FUT root singleton = *(0x1802e6398) (getter 0x18011a830) + B = SBC TTL cache = A + 0x1f9d8 (vtable 0x1801fae70) + B+0x08 collection ptr, B+0x20 QPC deadline, B+0x28 ready byte + isValid = 0x180065d40 (B.vtable[+0x08]); clear = 0x180065d20 (B.vtable[+0x10]) + HUB TTL cache = A + 0x1fd70 (same class, armed online) + SBC set-data req mgr = A + 0x2a0 (vtable 0x18022be90, ctor 0x18016fac0) + +Populate path (normal, online): + fetch sbs/sets -> req mgr A+0x2a0 -> response obj (factory 0x18016fca0, vt 0x18022be80) + -> SAX drive 0x18016c330 -> top deser 0x18017b2b0 + (which does service.[+0x9b0] to get the SBC manager, then) + category deser 0x18017ab80 / set deser 0x18017ad60 + -> finalizers 0x180160e00 / 0x180160e50 / 0x180161020 build the SBC manager's + category array (stride 0xf0) + set array (stride 0x3570); select/rebuild 0x180160b80 + -> generic cache commit copy-assigns a stack temp {collection, deadline, ready=1} + into B (assign 0x1800c21a0), arming B+0x28 and pointing B+0x08 at the manager data. + +The UI renders by polling isValid(B) each frame and iterating *(B+0x08). Arming +B+0x28 alone (see --arm-flag-only) opens the menu but draws EMPTY (collection NULL). +A populated render needs *(B+0x08) to point at a real set/category collection. +""" +import os, struct, sys + +SLIDE_KNOWN = 0x6ffe7c140000 # informational; actual slide is read from maps +A_SINGLETON = 0x1802e6398 +B_OFF = 0x1f9d8 +HUB_OFF = 0x1fd70 +REQMGR_OFF = 0x2a0 +CTRL_VA = 0x180180d00 + +def find_pid(): + for d in os.listdir('/proc'): + if d.isdigit(): + try: + if open('/proc/%s/comm' % d).read().strip() == 'FIFA17.exe': + return int(d) + except Exception: + pass + return None + +def main(): + arm = '--arm' in sys.argv + flag_only = '--arm-flag-only' in sys.argv + confirm = '--i-mean-it' in sys.argv + pid = find_pid() + if not pid: + print("FIFA17.exe not running -> nothing to read. (static analysis is authoritative)") + return + base = None + for ln in open('/proc/%d/maps' % pid): + if 'CardsDLL' in ln: + base = int(ln.split('-')[0], 16); break + if not base: + print("CardsDLL not mapped yet (client not in Ultimate Team). Skip live step.") + return + slide = base - 0x180000000 + fdr = os.open('/proc/%d/mem' % pid, os.O_RDONLY) + rd = lambda va, n: os.pread(fdr, n, va) + q = lambda va: struct.unpack(' GET sbs/sets fell through to the catch-all {} and + # the client threw "problem communicating with the FUT servers" (empty set list, + # not a parse fault: the response root is object + skip-tolerant, so {} parses but + # carries no data). See sbc_sets_route for the reversed shape and the freeze rules. + # Order matters (first-match-wins, rx.search is unanchored): the more specific + # sbs paths MUST precede the generic /sbs/sets below, which would otherwise + # substring-match /sbs/sets/tag. squad save/load precedes start/submit; start vs + # submit split by body/method inside sbc_challenge_route. + (re.compile(G + r"/sbs/sets/tag/?$"), lambda m, h: sbc_tag_route(h) if _SBC else (200, {})), + (re.compile(G + r"/sbs/setId/\d+/challenges"), lambda m, h: sbc_challenges_route(h) if _SBC else (200, {})), + (re.compile(G + r"/sbs/challenge/\d+/squad/?$"), lambda m, h: sbc_squad_route(h) if _SBC else (200, {})), + (re.compile(G + r"/sbs/challenge/\d+"), lambda m, h: sbc_challenge_route(h) if _SBC else (200, {})), + (re.compile(G + r"/sbs/sets"), lambda m, h: sbc_sets_route(h) if _SBC else (200, {})), # FutGetCaptcha 0x18014e78d: encodedImg(str b64) sequence(int) sizeBeforeEncode(int). # Served always -- an empty captcha is strictly better than the catch-all {}, # and all three fields are scalars (no freeze risk). @@ -2238,6 +2252,243 @@ def leaderboard_route(h): return 200, {"entries": []} +# ---- Squad Building Challenges (SBC) ----------------------------------------- +# GET ut/%s/sbs/sets is the FIRST call the SBC hub makes. Two response classes both +# bind to sbs/sets: +# FutSBCSetDataServerResponse deser 0x18016fe90 -- OBJECT root, parses ONLY +# `reset`(0x283 bool); every other key is +# value-SKIP'd. Carries NO set list. This is +# why {} produced "problem communicating": the +# body parsed fine but held no data. +# FutSBCLoadCategoryDetailsServerResponse deser 0x18017ac08 -- OBJECT root, parses +# categoryId(0x73 int), name(0x1d0 str), +# priority(0x250 int), sets(0x2be ARRAY). Each +# set element (parser 0x18017ad60) reads +# categoryId(0x73), name(0x1d0), description +# (0xd1), priority(0x250), challengesCount +# (0x78), challengesCompletedCount(0x77), +# awards(0x47 ARRAY). This is the one that +# renders the list. +# Both parsers are object-root and skip-tolerant, so a MERGED body satisfies whichever +# class the client instantiates for a given sbs/sets request with zero freeze risk. +# FREEZE-CRITICAL: `sets` and every element's `awards` MUST be JSON arrays if present +# (a scalar/object there desyncs the array reader into the 0x1801c7f1a busy loop). +# Omitting them defaults to empty (safe). Reversed 2026-08-06 from the on-disk +# CardsDLL (control-checked against FutLoadSetChallengesResponse 0x18017bbbb). +# +# DEFAULT ON: the current behaviour is a hard "problem communicating" modal, so there +# is no working state to protect. FUT_SBC=0 restores the catch-all {}. +_SBC = os.environ.get("FUT_SBC", "1") == "1" + +# Moddable SBC content. Each category holds its sets; each set optionally holds a +# `challenges` list served by the sbs/setId/{id}/challenges route (that key is an +# internal detail, stripped before it goes on the sbs/sets wire). Keep `sets`, +# `awards`, and each set's `challenges` as lists. setId ties a set to its challenge +# records so the two calls stay consistent. +SBC_CATEGORIES = [ + { + "categoryId": 1, "name": "Foundations", "priority": 1, + "sets": [ + {"setId": 1, "categoryId": 1, "name": "Bronze Challenge", + "description": "Submit an 11-player squad.", "priority": 1, + "challengesCount": 1, "challengesCompletedCount": 0, "awards": [], + "hidden": False, "endTime": 4102444800, + "challenges": [ + {"challengeId": 101, "name": "League Basics", + "description": "Submit an 11-player squad.", + "formation": "f442", "type": "OPEN_CHALLENGE", "status": "OPEN"}, + ]}, + {"setId": 2, "categoryId": 1, "name": "Simple Start", + "description": "Get started with your first SBC.", "priority": 2, + "challengesCount": 1, "challengesCompletedCount": 0, "awards": [], + "hidden": False, "endTime": 4102444800, + "challenges": [ + {"challengeId": 201, "name": "First Steps", + "description": "Get started with your first SBC.", + "formation": "f442", "type": "OPEN_CHALLENGE", "status": "OPEN"}, + ]}, + ], + }, +] + +# Non-container / non-key scalars every challenge record carries, with freeze-safe +# defaults. FutLoadSetChallengesResponse per-record parser 0x18017bb50: ints +# challengeId/setId/categoryId/index/endTime/trophyId/timesCompleted; strings +# type/name/description/challengeImageId/status/formation (formation MUST be a string +# -- int desyncs the string mapper 0x180166590); bool repeatable; ARRAYS awards + +# elgReq (a scalar there hits the type-desync busy-loop 0x1801c7f1a). +_SBC_CHALLENGE_DEFAULTS = { + "categoryId": 0, "index": 0, "type": "OPEN_CHALLENGE", + "name": "SBC Challenge", "description": "Submit a squad.", + "challengeImageId": "", "formation": "f442", "endTime": 0, + "repeatable": False, "trophyId": 0, "status": "OPEN", + "timesCompleted": 0, "awards": [], "elgReq": [], +} + + +def _sbc_sets_payload(): + """Categories for FutSBCLoadCategoryDetailsServerResponse, internal keys removed. + + Strips the internal `challenges` list from each set: the sbs/sets set-element + parser 0x18017ad60 only reads categoryId/name/description/priority/ + challengesCount/challengesCompletedCount/awards, and we keep the wire minimal + and identical to the proven success body rather than lean on value-SKIP.""" + cats = [] + for cat in SBC_CATEGORIES: + sets = [{k: v for k, v in s.items() if k != "challenges"} + for s in cat.get("sets", [])] + c = {k: v for k, v in cat.items() if k != "sets"} + c["sets"] = sets + cats.append(c) + return cats + + +def _sbc_find_set(set_id): + """Return (category, set) for setId, or (None, None) -- keeps setIds consistent + between sbs/sets and sbs/setId/{id}/challenges.""" + for cat in SBC_CATEGORIES: + for s in cat.get("sets", []): + if s.get("setId") == set_id: + return cat, s + return None, None + + +def _sbc_challenge_record(set_id, cat, s, idx, ch): + """Build one freeze-safe FutLoadSetChallengesResponse record. awards/elgReq are + forced to lists; overrides from the moddable `challenges` entry win over the + defaults, but only for the recognised scalar/array fields.""" + rec = dict(_SBC_CHALLENGE_DEFAULTS) + rec["challengeId"] = ch.get("challengeId", set_id * 100 + idx + 1) + rec["setId"] = set_id + rec["categoryId"] = (cat or {}).get("categoryId", rec["categoryId"]) + rec["index"] = idx + for k, v in ch.items(): + if k in _SBC_CHALLENGE_DEFAULTS: + rec[k] = v + rec["awards"] = list(rec.get("awards") or []) + rec["elgReq"] = list(rec.get("elgReq") or []) + return rec + + +def sbc_sets_route(h): + """GET ut/%s/sbs/sets -- the SBC category/set list. + + Deser: FutSBCLoadCategoryDetailsServerResponse body 0x18017b2b0, dispatch + 0x18017b64c. The root is a JSON OBJECT (END_OBJECT cmp eax,0xa @0x18017b66a); + the SOLE recognised top-level key is atom 0x6f = "categories", read as an ARRAY + (discriminator 0x18017b697; END_ARRAY cmp eax,0xd @0x18017b6b7). GATE (by + elimination, no scalar/status/reset is parsed at top level): the categories + array must be NON-EMPTY, else the client shows the "problem communicating" modal + (no freeze -- object-root accepts {} cleanly). Earlier single-object / + merged-with-reset bodies failed because every top-level key other than + "categories" is value-SKIP'd -> empty categories -> the modal. + FREEZE-CRITICAL: categories[], each category's sets[], and each set's awards[] + MUST be JSON arrays; each category is an object. Reversed from CardsDLL.""" + if h.command != "GET": + return 200, {} + cats = _sbc_sets_payload() + log(" SBC: sbs/sets -> %d categor(y/ies), %d set(s) total" + % (len(cats), sum(len(c.get("sets", [])) for c in cats))) + return 200, {"categories": cats} + + +def sbc_challenges_route(h): + """GET ut/%s/sbs/setId/{setId}/challenges -- FutLoadSetChallengesResponse. + + Top-level deser 0x18017c4e0 is OBJECT-root (END_OBJECT cmp eax,0xa @0x18017c8a7); + the SOLE recognised key is atom 0x76 = "challenges", read as an ARRAY (END_ARRAY + cmp eax,0xd @0x18017c8e7; per-record deser 0x18017bb50). Return an OBJECT + {"challenges":[...]}, never a bare array (that would desync the object-root). + Records are wired to the set's own challenges (or synthesised to challengesCount) + so challengeIds/setIds stay consistent with sbs/sets. + FREEZE-CRITICAL: challenges[], and per-record awards[] (0x47) + elgReq[] (0xf7) + are arrays; formation is a string.""" + m = re.search(r"/setId/(\d+)/challenges", h.path) + set_id = int(m.group(1)) if m else 0 + cat, s = _sbc_find_set(set_id) + records = [] + if s is not None: + chs = s.get("challenges") + if not chs: + chs = [{} for _ in range(max(1, int(s.get("challengesCount", 1))))] + for idx, ch in enumerate(chs): + records.append(_sbc_challenge_record(set_id, cat, s, idx, ch)) + log(" SBC: challenges setId=%d -> %d challenge(s)" % (set_id, len(records))) + return 200, {"challenges": records} + + +def sbc_start_route(h): + """POST ut/%s/sbs/challenge/{id} with EMPTY body -- START a challenge -> + FutSBCStartChallengeResponse (deser 0x180155949, OBJECT-root; {} freeze-safe). + + FREEZE-CRITICAL: "squad" (atom 0x2cd) MUST be a JSON OBJECT -- its value is + delegated to the OBJECT-root squad deser 0x18013d1f0; an array there desyncs. + "playerRequirements" (0x237) MUST be a JSON ARRAY (END_ARRAY cmp eax,0xd + @0x1801559e7). No non-empty gate; empty {} / [] are accepted.""" + m = re.search(r"/challenge/(\d+)", h.path) + cid = int(m.group(1)) if m else 0 + log(" SBC: start challenge id=%d" % cid) + return 200, {"challengeId": cid, "squad": {}, "playerRequirements": []} + + +def sbc_submit_route(h): + """POST/PUT ut/%s/sbs/challenge/{id} with a BODY -- SUBMIT a challenge -> + FutSBCSubmitChallengeServerResponse (deser 0x180161b00, dispatch 0x180161bda, + OBJECT-root; {} freeze-safe). + + FREEZE-CRITICAL: grantedChallengeAwards (atom 0x14a) and grantedSetAwards + (atom 0x14b) MUST each be a JSON ARRAY (END_ARRAY cmp eax,0xd), never a + scalar/object; empty [] is safe. Scalars challengeId/setId/credits/ + preOrderPacks/recoveredPacks are ints.""" + m = re.search(r"/challenge/(\d+)", h.path) + cid = int(m.group(1)) if m else 0 + log(" SBC: submit challenge id=%d" % cid) + return 200, {"challengeId": cid, "setId": 0, "credits": 0, + "preOrderPacks": 0, "recoveredPacks": 0, + "grantedChallengeAwards": [], "grantedSetAwards": []} + + +def sbc_challenge_route(h): + """Dispatch the shared path ut/%s/sbs/challenge/{id}: START vs SUBMIT. + + Both builders format the identical "/challenge/%d" (str 0x180227300). The proven + discriminator is the REQUEST BODY -- START emits an empty body (POST), SUBMIT a + populated JSON body (PUT/POST). We route to SUBMIT on a PUT or any non-empty + body, else START (covers both the body-presence and method discriminators).""" + if h.command == "PUT" or getattr(h, "_body", b""): + return sbc_submit_route(h) + return sbc_start_route(h) + + +def sbc_squad_route(h): + """ut/%s/sbs/challenge/{id}/squad -- method-discriminated save/load. + + PUT -> FutSBCSaveSquadChallengeServerResponse (deser 0x18017cff0; parses only + id 0x15c -> return {"id":}). GET -> FutLoadSetTypesServerResponse (deser + 0x180154990; reads squad 0x2cd + playerRequirements 0x237). Both roots are JSON + objects. NOTE: unlike START, here "squad" (0x2cd) is parsed as an ARRAY (callback + 0x18013d1f0, state [rbx+0xb8]=3), and "playerRequirements" (0x237) is an ARRAY + (END_ARRAY cmp eax,0xd @0x180154e07). The unified body is freeze-safe under both + verbs: PUT reads id and value-SKIPs the arrays; GET reads the arrays and + value-SKIPs id.""" + m = re.search(r"/challenge/(\d+)/squad", h.path) + cid = int(m.group(1)) if m else 0 + if h.command == "PUT": + log(" SBC: save squad challenge id=%d" % cid) + return 200, {"id": cid} + log(" SBC: load squad challenge id=%d" % cid) + return 200, {"id": cid, "squad": [], "playerRequirements": []} + + +def sbc_tag_route(h): + """POST/PUT ut/%s/sbs/sets/tag -- FutSBCTagSetsServerResponse (deser 0x1801542f0, + OBJECT-root, parses NO fields: every key value-SKIP'd, always returns success). + Pure ack. The one hard rule is the container: the root MUST be a JSON object -- + {} is fully accepted; an array/scalar root would busy-loop at 0x1801c7f1a.""" + log(" SBC: sets/tag ack") + return 200, {} + + # ---- Draft current state ----------------------------------------------------- # GET ut/%s/squad/mode/draft/state?mode=ONLINE|SINGLE_PLAYER # -> FutGetDraftCurrentStateServerResponse, deser 0x180147070. diff --git a/openfut-bridge b/openfut-bridge index c58e732..0f581eb 160000 --- a/openfut-bridge +++ b/openfut-bridge @@ -1 +1 @@ -Subproject commit c58e7326a100a7769434955b5ff87baf1d3d5ab2 +Subproject commit 0f581ebef315a6c42175782d9fbedc672999a331 diff --git a/openfut-core b/openfut-core index 11a811d..8c8a411 160000 --- a/openfut-core +++ b/openfut-core @@ -1 +1 @@ -Subproject commit 11a811db6aed5d62dbd6bf8d9ed02320105d22df +Subproject commit 8c8a4116bfeff0e099cd1911cb52f39bbd12ce9f diff --git a/openfut-launcher b/openfut-launcher index 3d895fb..09ed26b 160000 --- a/openfut-launcher +++ b/openfut-launcher @@ -1 +1 @@ -Subproject commit 3d895fb7ac061c17977181b71f9ce9087475301b +Subproject commit 09ed26ba163bdfc28e313c5e5f811b9b1e0f754e