diff --git a/.forgejo/workflows/sms.yml b/.forgejo/workflows/sms.yml deleted file mode 100644 index 83204e2..0000000 --- a/.forgejo/workflows/sms.yml +++ /dev/null @@ -1,341 +0,0 @@ -name: sms - -# Phase 0 of the SMS remediation plan: make the SMS stack verifiable. -# -# Before this file existed, `crates/robius-sms` (2,019 LOC) and -# `crates/apps/nigig-sms` (5,706 LOC) had NO CI of any kind and two tests, -# both of which assert derived trait impls and neither of which mentions -# SMS. That is 7,725 lines of untested code whose job is to spend the -# user's money by sending real, billable, irreversible messages. -# -# Enforces: -# 1. Both crates compile on the host AND on aarch64-linux-android. -# The host build only ever compiles sys/linux.rs -- a stub whose -# every function returns PermanentlyUnavailable. ALL of the real -# logic (~600 lines of JNI in sys/android/) is behind -# #[cfg(target_os = "android")] and is invisible to a host build. -# A host-only gate would be close to worthless here. -# 2. Clippy stays clean for code these two crates OWN. Warnings from -# path dependencies (nigig-core, nigig-uikit, matrix_client) are -# pre-existing and out of scope for this workflow; they are -# filtered by package id rather than muted, so they still show in -# the log and a future workflow can gate them. -# 3. Tests pass. -# 4. Two defect classes that are invisible in review and have already -# shipped here, as source-scanning gates. -# -# `cargo fmt --check` is deliberately not a gate, matching the reasoning -# already recorded in doc-engine.yml: these crates predate the pinned -# toolchain's rustfmt style and reformatting them wholesale would -# conflict with the remediation work. A step that always fails gets -# ignored, which is worse than no step. - -on: - push: - paths: - - 'crates/robius-sms/**' - - 'crates/apps/nigig-sms/**' - - 'Cargo.lock' - - 'Cargo.toml' - - 'rust-toolchain.toml' - - '.forgejo/workflows/sms.yml' - pull_request: - paths: - - 'crates/robius-sms/**' - - 'crates/apps/nigig-sms/**' - - 'Cargo.lock' - - 'Cargo.toml' - - 'rust-toolchain.toml' - - '.forgejo/workflows/sms.yml' - -jobs: - # --------------------------------------------------------------------- - # Source-scanning gates. These need no toolchain, so they run first and - # fail fast. - # --------------------------------------------------------------------- - gates: - runs-on: ubuntu-latest - timeout-minutes: 10 - steps: - - uses: actions/checkout@v4 - - # A poisoned mutex turns every later `.lock().unwrap()` into a - # panic. The contact cache in conversations_list.rs is written from - # a spawned worker thread, so one panic anywhere under the lock - # permanently bricks contact resolution for the process lifetime, - # and it surfaces far from the cause. - # - # The codebase already knows the right pattern -- companies_list.rs - # uses `if let Ok(mut s) = ..lock()` -- it is just applied - # inconsistently. This keeps the good pattern from regressing. - # - # RATCHET. There are 19 source lines with these today (bug A6 in the - # plan); fixing them is Phase A work, not Phase 0. A gate that - # fails on its first run gets switched off, so this asserts the - # count never RISES and must be lowered as they are fixed. When it - # reaches 0, replace the whole step with a plain grep that fails on - # any match. - - name: No new .lock().unwrap() in the SMS crates - run: | - set -euo pipefail - BASELINE=19 - count=$(grep -rn --include='*.rs' '\.lock()\s*\.unwrap()' \ - crates/robius-sms/src crates/apps/nigig-sms/src \ - | sed 's/^[^:]*:[0-9]*://' \ - | grep -vcE '^[[:space:]]*(//|/\*|\*)' || true) - echo "found $count, baseline $BASELINE" - if [ "$count" -gt "$BASELINE" ]; then - grep -rn --include='*.rs' '\.lock()\s*\.unwrap()' \ - crates/robius-sms/src crates/apps/nigig-sms/src || true - echo - echo "ERROR: $count .lock().unwrap() calls, up from $BASELINE." - echo "These panic on a poisoned mutex. One panic while the lock" - echo "is held bricks the cache for the rest of the process. Use:" - echo " if let Ok(guard) = MUTEX.lock() { .. }" - echo "or MUTEX.lock().unwrap_or_else(|e| e.into_inner())" - exit 1 - fi - if [ "$count" -lt "$BASELINE" ]; then - echo - echo "Good: down to $count. Lower BASELINE in this file to $count" - echo "so the progress cannot be undone." - exit 1 - fi - echo "OK" - - # `&s[..n]` where n is a byte offset panics with "byte index N is - # not a char boundary" the moment n lands inside a multi-byte - # character. truncate_preview() in sms_utils.rs did exactly this - # against a 120-BYTE constant, and it runs per visible row per - # frame -- so one inbound SMS containing emoji, Swahili or Arabic - # text panicked the whole conversation list on every frame. That is - # a remote denial of service triggerable by anyone who knows the - # victim's number. - # - # Slicing must go through char_indices()/char_boundary logic. - # - # RATCHET, for the same reason as the step above: the one live - # instance is truncate_preview() in sms_utils.rs, and fixing it is - # bug A3 in the remediation plan. Drop BASELINE to 0 with that fix - # and this becomes a hard gate. - - name: No new byte-offset string slicing in SMS text helpers - run: | - set -euo pipefail - BASELINE=1 - count=$(grep -rnE --include='*.rs' \ - '&[A-Za-z_][A-Za-z0-9_]*\[\.\.[A-Za-z0-9_]+\]' \ - crates/apps/nigig-sms/src \ - | sed 's/^[^:]*:[0-9]*://' \ - | grep -vcE '^[[:space:]]*(//|/\*|\*)' || true) - echo "found $count, baseline $BASELINE" - if [ "$count" -gt "$BASELINE" ]; then - grep -rnE --include='*.rs' \ - '&[A-Za-z_][A-Za-z0-9_]*\[\.\.[A-Za-z0-9_]+\]' \ - crates/apps/nigig-sms/src || true - echo - echo "ERROR: $count byte-offset slice(s), up from $BASELINE." - echo "These index a &str by BYTE offset and panic when the" - echo "offset is not a char boundary -- reachable from any" - echo "inbound SMS containing emoji or non-Latin text. Use" - echo "char_indices() to find a real boundary first." - exit 1 - fi - if [ "$count" -lt "$BASELINE" ]; then - echo - echo "Good: down to $count. Lower BASELINE in this file to $count." - exit 1 - fi - echo "OK" - - # --------------------------------------------------------------------- - # robius-sms: the platform layer. Cheap -- no GUI stack. - # --------------------------------------------------------------------- - robius-sms: - runs-on: ubuntu-latest - timeout-minutes: 30 - steps: - - uses: actions/checkout@v4 - - # polkit/gio are pulled in ONLY by the Linux backend, whose every - # function returns PermanentlyUnavailable. They are why - # deny-nigig-build.toml carries RUSTSEC-2024-0370 and - # RUSTSEC-2024-0429 plus an open LGPL-2.1 question. Phase E9 of the - # remediation plan removes the backend and these packages with it; - # until then CI needs the headers to build the stub. - - name: Install native dependencies - run: | - sudo apt-get update -qq - sudo apt-get install -y -qq \ - pkg-config libpolkit-gobject-1-dev libpolkit-agent-1-dev \ - libglib2.0-dev libsqlite3-dev - - - name: Host check - run: cargo check --locked -p robius-sms - - - name: Host clippy - run: cargo clippy --locked -p robius-sms --all-targets -- -D warnings - - - name: Host tests - run: cargo test --locked -p robius-sms - - # --------------------------------------------------------------------- - # The Android target. This is the job that matters: everything in - # sys/android/ is invisible to every other job in this file. - # --------------------------------------------------------------------- - android: - runs-on: ubuntu-latest - timeout-minutes: 40 - steps: - - uses: actions/checkout@v4 - - # d8 (build-tools 34) rejects class file major version > 61, i.e. - # anything newer than Java 17. A runner defaulting to JDK 21 makes - # build.rs fail inside d8 with "Unsupported class file major - # version 65", which reads like a toolchain bug rather than a JDK - # mismatch. Pin the JDK so that failure cannot recur here. - - uses: actions/setup-java@v4 - with: - distribution: temurin - java-version: '17' - - - uses: android-actions/setup-android@v3 - - - name: Install Android SDK packages - run: sdkmanager "platforms;android-34" "build-tools;34.0.0" - - - name: Add Rust Android target - run: rustup target add aarch64-linux-android - - # robius-sms/src/build.rs compiles two .java files with javac and - # dexes them with d8, so this step exercises the Java toolchain and - # the runtime-dex-loading path, not just the Rust. - - name: Android check - run: cargo check --locked -p robius-sms --target aarch64-linux-android - - - name: Android clippy - run: | - cargo clippy --locked -p robius-sms \ - --target aarch64-linux-android -- -D warnings - - # --------------------------------------------------------------------- - # nigig-sms: the UI layer. Pulls the whole Makepad stack, so it is the - # slow job and needs the GUI system libraries. - # --------------------------------------------------------------------- - nigig-sms: - runs-on: ubuntu-latest - timeout-minutes: 60 - steps: - - uses: actions/checkout@v4 - - - name: Install native dependencies - run: | - sudo apt-get update -qq - sudo apt-get install -y -qq \ - pkg-config libwayland-dev libxcursor-dev libxrandr-dev \ - libxi-dev libx11-dev libgl1-mesa-dev libasound2-dev \ - libpolkit-gobject-1-dev libpolkit-agent-1-dev \ - libglib2.0-dev libssl-dev libsqlite3-dev libudev-dev \ - libpulse-dev libxkbcommon-dev - - - name: Check - run: cargo check --locked -p nigig-sms - - - name: Test - run: cargo test --locked -p nigig-sms - - # `-D warnings` cannot be applied to the whole `-p nigig-sms` build: - # it also compiles nigig-core, nigig-uikit and matrix_client, which - # carry ~89 pre-existing warnings that are not this workflow's to - # fix. Muting them with --no-deps does not work either -- they are - # workspace members, not registry deps, so clippy still reports - # them. - # - # So: take clippy's JSON, keep only diagnostics whose package id is - # nigig-sms, and count those. Dependency warnings stay visible in - # the log above but do not fail the build. When nigig-core and - # nigig-uikit are cleaned up, this can collapse to a plain - # `-- -D warnings`. - # - # RATCHET at 50. Every one is mechanical (unused imports, dead - # code, map->for_each, needless borrows) and none is a logic - # change, but `cargo clippy --fix` cannot apply them: the crate is - # built around Makepad's script_mod! proc macro and rustfix - # refuses to edit through it. They therefore have to be fixed by - # hand, which is Phase F work, not Phase 0. - # - # 34 of the 50 are dead-code reports for the duplicate contact - # subsystem in inbox/sms_screen.rs -- an entire second copy of the - # cache, its lookup helpers and try_load_contacts(), none of it - # reachable. Deleting that file's dead half clears most of this - # number in one commit. - - name: Clippy ratchet (nigig-sms-owned diagnostics only) - run: | - set -euo pipefail - BASELINE=50 - cargo clippy --locked -p nigig-sms --all-targets \ - --message-format=json > /tmp/clippy-sms.json 2>/tmp/clippy-sms.err || true - # Surface the human-readable log for debugging. - cat /tmp/clippy-sms.err || true - BASELINE="$BASELINE" python3 - <<'PY' - import json, os, sys - baseline = int(os.environ['BASELINE']) - owned, seen = [], set() - with open('/tmp/clippy-sms.json') as fh: - for line in fh: - try: - m = json.loads(line) - except ValueError: - continue - if m.get('reason') != 'compiler-message': - continue - if 'nigig-sms' not in m.get('package_id', ''): - continue - msg = m['message'] - if msg.get('level') not in ('warning', 'error'): - continue - # --all-targets compiles lib and lib-test, duplicating - # every diagnostic; dedupe on rendered text. - key = msg.get('rendered', '') - if key in seen: - continue - seen.add(key) - owned.append(msg) - n = len(owned) - print("found %d nigig-sms diagnostics, baseline %d" % (n, baseline)) - if n > baseline: - for msg in owned: - sys.stdout.write(msg.get('rendered', '')) - print() - print("ERROR: %d diagnostics, up from %d." % (n, baseline)) - sys.exit(1) - if n < baseline: - print() - print("Good: down to %d. Lower BASELINE in this file to %d " - "so the progress cannot be undone." % (n, n)) - sys.exit(1) - print("OK") - PY - - # --------------------------------------------------------------------- - # Supply chain. Mirrors the gates already in nigig-build.yml so the SMS - # crates cannot drift from the rest of the workspace. - # --------------------------------------------------------------------- - supply-chain: - runs-on: ubuntu-latest - timeout-minutes: 15 - steps: - - uses: actions/checkout@v4 - - # A lockfile that changes during CI means the committed one was - # stale. This is only enforceable because Phase 0.1 committed the - # root Cargo.lock -- before that it was gitignored and every build - # silently re-resolved. - - name: Lockfile must be committed and current - run: | - set -euo pipefail - test -f Cargo.lock || { echo "missing Cargo.lock at workspace root"; exit 1; } - cargo metadata --locked --format-version 1 > /dev/null - git diff --exit-code -- Cargo.lock - - - name: Reject whitespace errors - run: git diff --check diff --git a/.gitignore b/.gitignore index e23a161..0dbdad3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,11 +1,5 @@ target -# Phase 0.1: the workspace root lockfile is TRACKED. CI runs with --locked -# (see .forgejo/workflows/*.yml), which cannot work against an ignored -# lockfile: `cargo metadata --locked` fails outright and every build -# re-resolves, so a dependency can change under CI without any commit. -# Nested/vendored lockfiles stay ignored via the pattern below. -**/Cargo.lock -!/Cargo.lock +Cargo.lock # Review item 1.1: the payment crates are validated standalone against a # checked-in lockfile, so their locks must be tracked. Application crates # keep using the ignore rule above. diff --git a/Cargo.lock b/Cargo.lock deleted file mode 100644 index fb988ec..0000000 --- a/Cargo.lock +++ /dev/null @@ -1,5487 +0,0 @@ -# This file is automatically @generated by Cargo. -# It is not intended for manual editing. -version = 4 - -[[package]] -name = "ab_glyph_rasterizer" -version = "0.1.8" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" - -[[package]] -name = "adler" -version = "1.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" - -[[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 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "cipher", - "cpufeatures 0.2.17", -] - -[[package]] -name = "ahash" -version = "0.8.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75" -dependencies = [ - "cfg-if 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "getrandom 0.3.4", - "once_cell 1.21.4", - "version_check", - "zerocopy 0.8.55", -] - -[[package]] -name = "aho-corasick" -version = "1.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301" -dependencies = [ - "memchr 2.8.3", -] - -[[package]] -name = "allocator-api2" -version = "0.2.21" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" - -[[package]] -name = "android-build" -version = "0.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f9fc9904ad2ad097c3c1cfe2eacaaf0fc24710936fa9ed941cb310b7c6ed2ab7" -dependencies = [ - "windows-sys 0.52.0", -] - -[[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 = "anstream" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d" -dependencies = [ - "anstyle", - "anstyle-parse", - "anstyle-query", - "anstyle-wincon", - "colorchoice", - "is_terminal_polyfill", - "utf8parse", -] - -[[package]] -name = "anstyle" -version = "1.0.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000" - -[[package]] -name = "anstyle-parse" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e" -dependencies = [ - "utf8parse", -] - -[[package]] -name = "anstyle-query" -version = "1.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc" -dependencies = [ - "windows-sys 0.61.2", -] - -[[package]] -name = "anstyle-wincon" -version = "3.0.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d" -dependencies = [ - "anstyle", - "once_cell_polyfill", - "windows-sys 0.61.2", -] - -[[package]] -name = "anyhow" -version = "1.0.104" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "330a5ed07fa54e4702c9d6c4174f74427fc0ef6e214bbd677ae50a5099946470" - -[[package]] -name = "arrayvec" -version = "0.7.6" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" - -[[package]] -name = "ash" -version = "0.38.0+1.3.281" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "libloading 0.8.9 (git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec)", -] - -[[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 = "atomic-polyfill" -version = "1.0.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8cf2bce30dfe09ef0bfaef228b9d414faaf7e563035494d7fe092dba54b300f4" -dependencies = [ - "critical-section", -] - -[[package]] -name = "atomic-waker" -version = "1.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" - -[[package]] -name = "autocfg" -version = "1.5.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53" - -[[package]] -name = "base64" -version = "0.22.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" - -[[package]] -name = "base64" -version = "0.23.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b25655df2c3cdd83c5e5b293b88acd880332b2ddadd7c30ac43144fdc0033da9" - -[[package]] -name = "bit-set" -version = "0.8.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "bit-vec", -] - -[[package]] -name = "bit-vec" -version = "0.8.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" - -[[package]] -name = "bitflags" -version = "1.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" - -[[package]] -name = "bitflags" -version = "2.10.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" - -[[package]] -name = "bitflags" -version = "2.13.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da" - -[[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 = "block-padding" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93" -dependencies = [ - "generic-array", -] - -[[package]] -name = "block2" -version = "0.6.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5" -dependencies = [ - "objc2", -] - -[[package]] -name = "bstr" -version = "1.13.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1f7dc094d718f2e1c1559ad110e27eeaae14a5465d3d56dd6dbd793079fbd530" -dependencies = [ - "memchr 2.8.3", - "regex-automata", - "serde_core", -] - -[[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.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" - -[[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" -version = "1.5.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" - -[[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 = "cbc" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6" -dependencies = [ - "cipher", -] - -[[package]] -name = "cc" -version = "1.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5add81bb678e6cb321aff7fa0dc7689ad82b112dbc032cea19f91d6b8e3582b9" -dependencies = [ - "find-msvc-tools", - "shlex", -] - -[[package]] -name = "cesu8" -version = "1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c" - -[[package]] -name = "cfg-expr" -version = "0.15.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02" -dependencies = [ - "smallvec 1.15.2", - "target-lexicon", -] - -[[package]] -name = "cfg-if" -version = "1.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" - -[[package]] -name = "cfg-if" -version = "1.0.4" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" - -[[package]] -name = "cfg_aliases" -version = "0.2.1" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" - -[[package]] -name = "cfg_aliases" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f079e83a288787bcd14a6aea84cee5c87a67c5a3e660c30f557a3d24761b3527" - -[[package]] -name = "chacha20" -version = "0.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d524456ba66e72eb8b115ff89e01e497f8e6d11d78b70b1aa13c0fbd97540a81" -dependencies = [ - "cfg-if 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "cpufeatures 0.3.0", - "rand_core 0.10.1", -] - -[[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 0.2.19", - "serde", - "wasm-bindgen", - "windows-link 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[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 = "clap" -version = "4.6.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "301b56658598e48f3648647ac6fc887be7e7108eddfa4e9b63fcf3ec58c0cadf" -dependencies = [ - "clap_builder", - "clap_derive", -] - -[[package]] -name = "clap_builder" -version = "4.6.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94a65403d1a1bd28f7dc68eb8506e8874808ee5eecb59298de588e2e1407a078" -dependencies = [ - "anstream", - "anstyle", - "clap_lex", - "strsim", -] - -[[package]] -name = "clap_derive" -version = "4.6.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d012d2b9d65aca7f18f4d9878a045bc17899bba951561ba5ec3c2ba1eed9a061" -dependencies = [ - "heck 0.5.0", - "proc-macro2", - "quote", - "syn 3.0.3", -] - -[[package]] -name = "clap_lex" -version = "1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9" - -[[package]] -name = "cobs" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1" -dependencies = [ - "thiserror 2.0.19", -] - -[[package]] -name = "colorchoice" -version = "1.0.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570" - -[[package]] -name = "combine" -version = "4.6.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd" -dependencies = [ - "bytes", - "memchr 2.8.3", -] - -[[package]] -name = "convert_case" -version = "0.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca" -dependencies = [ - "unicode-segmentation 1.13.3", -] - -[[package]] -name = "core-foundation-sys" -version = "0.8.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" - -[[package]] -name = "cpufeatures" -version = "0.2.17" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" -dependencies = [ - "libc", -] - -[[package]] -name = "cpufeatures" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201" -dependencies = [ - "libc", -] - -[[package]] -name = "crc32fast" -version = "1.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" -dependencies = [ - "cfg-if 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "critical-section" -version = "1.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b" - -[[package]] -name = "crossbeam-deque" -version = "0.8.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb" -dependencies = [ - "crossbeam-epoch", - "crossbeam-utils", -] - -[[package]] -name = "crossbeam-epoch" -version = "0.9.20" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f" -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 = "crunchy" -version = "0.2.4" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" - -[[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 = "csv" -version = "1.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938" -dependencies = [ - "csv-core", - "itoa", - "ryu", - "serde_core", -] - -[[package]] -name = "csv-core" -version = "0.1.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782" -dependencies = [ - "memchr 2.8.3", -] - -[[package]] -name = "ctor" -version = "0.2.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501" -dependencies = [ - "quote", - "syn 2.0.119", -] - -[[package]] -name = "ctrlc" -version = "3.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e0b1fab2ae45819af2d0731d60f2afe17227ebb1a1538a236da84c93e9a60162" -dependencies = [ - "dispatch2", - "nix", - "windows-sys 0.61.2", -] - -[[package]] -name = "deranged" -version = "0.5.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c" - -[[package]] -name = "digest" -version = "0.10.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" -dependencies = [ - "block-buffer", - "crypto-common", -] - -[[package]] -name = "dirs-sys" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab" -dependencies = [ - "libc", - "option-ext", - "redox_users", - "windows-sys 0.61.2", -] - -[[package]] -name = "dispatch2" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e0e367e4e7da84520dedcac1901e4da967309406d1e51017ae1abfb97adbd38" -dependencies = [ - "bitflags 2.13.1", - "block2", - "libc", - "objc2", -] - -[[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 = "doc-engine" -version = "0.1.0" -dependencies = [ - "serde", - "serde_json", -] - -[[package]] -name = "downcast-rs" -version = "1.2.1" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" - -[[package]] -name = "either" -version = "1.17.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e5e8f6c15a24b9a3ee5efec809ccd006d3b30e8b3bb63c39af737c7f87daa1d" - -[[package]] -name = "email-encoding" -version = "0.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "420b9da095f052ea597503e39073b5b3c522f7db933fbac202d91d24492693fd" -dependencies = [ - "base64 0.23.0", - "memchr 2.8.3", -] - -[[package]] -name = "email_address" -version = "0.2.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e079f19b08ca6239f47f8ba8509c11cf3ea30095831f7fed61441475edd8c449" - -[[package]] -name = "embedded-io" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced" - -[[package]] -name = "embedded-io" -version = "0.6.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d" - -[[package]] -name = "encoding_rs" -version = "0.8.35" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" -dependencies = [ - "cfg-if 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "equivalent" -version = "1.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" - -[[package]] -name = "equivalent" -version = "1.0.2" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" - -[[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_set" -version = "0.9.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ce8f47d095467cd3c796a35d95a0363877f59a91cc2df0c47770cb87dbb6a3c" -dependencies = [ - "error_set_impl", -] - -[[package]] -name = "error_set_impl" -version = "0.9.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7521f538d4b71021e32ee4e6c4ed2426fd04c49e0a0d34ea3c65dcb4ca5f7930" -dependencies = [ - "proc-macro2", - "quote", - "regex", - "syn 2.0.119", -] - -[[package]] -name = "fallible-iterator" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649" - -[[package]] -name = "fallible-streaming-iterator" -version = "0.1.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a" - -[[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 0.3.10", -] - -[[package]] -name = "find-msvc-tools" -version = "0.1.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582" - -[[package]] -name = "flate2" -version = "1.1.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c" -dependencies = [ - "crc32fast", - "miniz_oxide 0.8.9", -] - -[[package]] -name = "foldhash" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb" - -[[package]] -name = "foldhash" -version = "0.2.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" - -[[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" -version = "0.3.33" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a88cf1f829d945f548cf8fec32c61b1f202b6d93b45848602fc02af4b12ad218" -dependencies = [ - "futures-channel", - "futures-core", - "futures-io", - "futures-sink", - "futures-task", - "futures-util", -] - -[[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-io" -version = "0.3.33" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4577ecaa3c4f96589d473f679a71b596316f6641bc350038b962a5daf0085d7a" - -[[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 2.8.3", - "pin-project-lite", - "slab", -] - -[[package]] -name = "fxhash" -version = "0.2.1" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "byteorder 1.5.0 (git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec)", -] - -[[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 = "geohot" -version = "0.1.0" -dependencies = [ - "chrono", - "makepad-widgets", - "nigig-core", - "nigig-uikit", - "robius-location", - "robius-sms", - "serde", - "serde_json", -] - -[[package]] -name = "getrandom" -version = "0.2.17" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" -dependencies = [ - "cfg-if 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "js-sys", - "libc", - "wasi", - "wasm-bindgen", -] - -[[package]] -name = "getrandom" -version = "0.3.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" -dependencies = [ - "cfg-if 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "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 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "js-sys", - "libc", - "r-efi 6.0.0", - "rand_core 0.10.1", - "wasm-bindgen", -] - -[[package]] -name = "gio" -version = "0.17.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1981edf8679d2f2c8ec3120015867f45aa0a1c2d5e3e129ca2f7dda174d3d2a9" -dependencies = [ - "bitflags 1.3.2", - "futures-channel", - "futures-core", - "futures-io", - "futures-util", - "gio-sys", - "glib", - "libc", - "once_cell 1.21.4", - "pin-project-lite", - "smallvec 1.15.2", - "thiserror 1.0.69", -] - -[[package]] -name = "gio-sys" -version = "0.17.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ccf87c30a12c469b6d958950f6a9c09f2be20b7773f7e70d20b867fdf2628c3" -dependencies = [ - "glib-sys", - "gobject-sys", - "libc", - "system-deps", - "winapi", -] - -[[package]] -name = "glib" -version = "0.17.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d3fad45ba8d4d2cea612b432717e834f48031cd8853c8aaf43b2c79fec8d144b" -dependencies = [ - "bitflags 1.3.2", - "futures-channel", - "futures-core", - "futures-executor", - "futures-task", - "futures-util", - "gio-sys", - "glib-macros", - "glib-sys", - "gobject-sys", - "libc", - "memchr 2.8.3", - "once_cell 1.21.4", - "smallvec 1.15.2", - "thiserror 1.0.69", -] - -[[package]] -name = "glib-macros" -version = "0.17.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eca5c79337338391f1ab8058d6698125034ce8ef31b72a442437fa6c8580de26" -dependencies = [ - "anyhow", - "heck 0.4.1", - "proc-macro-crate", - "proc-macro-error", - "proc-macro2", - "quote", - "syn 1.0.109", -] - -[[package]] -name = "glib-sys" -version = "0.17.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d80aa6ea7bba0baac79222204aa786a6293078c210abe69ef1336911d4bdc4f0" -dependencies = [ - "libc", - "system-deps", -] - -[[package]] -name = "gobject-sys" -version = "0.17.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd34c3317740a6358ec04572c1bcfd3ac0b5b6529275fae255b237b314bb8062" -dependencies = [ - "glib-sys", - "libc", - "system-deps", -] - -[[package]] -name = "hash32" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b0c35f58762feb77d74ebe43bdbc3210f09be9fe6742234d573bacc26ed92b67" -dependencies = [ - "byteorder 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "hashbrown" -version = "0.14.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" -dependencies = [ - "ahash", -] - -[[package]] -name = "hashbrown" -version = "0.16.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" -dependencies = [ - "allocator-api2", - "equivalent 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "foldhash 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "hashbrown" -version = "0.16.1" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "foldhash 0.2.0 (git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec)", -] - -[[package]] -name = "hashbrown" -version = "0.17.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a" - -[[package]] -name = "hashlink" -version = "0.9.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af" -dependencies = [ - "hashbrown 0.14.5", -] - -[[package]] -name = "heapless" -version = "0.7.17" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cdc6457c0eb62c71aac4bc17216026d8410337c4126773b9c5daba343f17964f" -dependencies = [ - "atomic-polyfill", - "hash32", - "rustc_version", - "serde", - "spin", - "stable_deref_trait", -] - -[[package]] -name = "heck" -version = "0.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" - -[[package]] -name = "heck" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" - -[[package]] -name = "hexf-parse" -version = "0.2.1" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" - -[[package]] -name = "hilog-sys" -version = "0.1.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f715f263b6e73aa2322b59057134b4daf56a765cbebc2f6b35e640ffded3361b" - -[[package]] -name = "hostname" -version = "0.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "617aaa3557aef3810a6369d0a99fac8a080891b68bd9f9812a1eeda0c0730cbd" -dependencies = [ - "cfg-if 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "libc", - "windows-link 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[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 = "1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ca2a8f2913ee65f60facd6a5905613afaa448497a0230cc41ce022d93290bc2c" -dependencies = [ - "bytes", - "http", -] - -[[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", - "http-body", - "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 = "1.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d22053281f852e11534f5198498373cbb59295120a20771d90f7ed1897490a72" -dependencies = [ - "atomic-waker", - "bytes", - "futures-channel", - "futures-core", - "http", - "http-body", - "httparse", - "itoa", - "pin-project-lite", - "smallvec 1.15.2", - "tokio", - "want", -] - -[[package]] -name = "hyper-rustls" -version = "0.27.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f" -dependencies = [ - "http", - "hyper", - "hyper-util", - "rustls", - "tokio", - "tokio-rustls", - "tower-service", - "webpki-roots", -] - -[[package]] -name = "hyper-util" -version = "0.1.20" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0" -dependencies = [ - "base64 0.22.1", - "bytes", - "futures-channel", - "futures-util", - "http", - "http-body", - "hyper", - "ipnet", - "libc", - "percent-encoding", - "pin-project-lite", - "socket2", - "tokio", - "tower-service", - "tracing", -] - -[[package]] -name = "i_float" -version = "3.0.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" - -[[package]] -name = "i_key_sort" -version = "0.11.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" - -[[package]] -name = "i_overlay" -version = "7.0.3" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "i_float", - "i_key_sort", - "i_shape", - "i_tree", -] - -[[package]] -name = "i_shape" -version = "3.0.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "i_float", -] - -[[package]] -name = "i_tree" -version = "0.19.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" - -[[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 0.4.33", - "wasm-bindgen", - "windows-core 0.62.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[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 1.15.2", - "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 = "idna" -version = "1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" -dependencies = [ - "idna_adapter", - "smallvec 1.15.2", - "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 1.25.2", - "byteorder-lite", - "moxcms", - "num-traits 0.2.19", - "png", -] - -[[package]] -name = "imghdr" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c8b35f3ad95576ac81603375dfe47a0450b70a368aa34d2b6e5bb0a0d7f02428" - -[[package]] -name = "indexmap" -version = "2.13.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "equivalent 1.0.2 (git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec)", - "hashbrown 0.16.1 (git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec)", -] - -[[package]] -name = "indexmap" -version = "2.14.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9" -dependencies = [ - "equivalent 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", - "hashbrown 0.17.1", -] - -[[package]] -name = "inout" -version = "0.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01" -dependencies = [ - "block-padding", - "generic-array", -] - -[[package]] -name = "ipnet" -version = "2.12.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2" - -[[package]] -name = "is_terminal_polyfill" -version = "1.70.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695" - -[[package]] -name = "itoa" -version = "1.0.18" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682" - -[[package]] -name = "jni" -version = "0.21.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97" -dependencies = [ - "cesu8", - "cfg-if 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "combine", - "jni-sys 0.3.1", - "log 0.4.33", - "thiserror 1.0.69", - "walkdir", - "windows-sys 0.45.0", -] - -[[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 = "js-sys" -version = "0.3.103" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102" -dependencies = [ - "cfg-if 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-util", - "wasm-bindgen", -] - -[[package]] -name = "lettre" -version = "0.11.22" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0da65617f6cb926332d039cb578aad56178da86e128db6a1b09f4c94fa5b3349" -dependencies = [ - "async-trait", - "base64 0.22.1", - "email-encoding", - "email_address", - "fastrand", - "futures-io", - "futures-util", - "hostname", - "httpdate", - "idna", - "mime", - "nom", - "percent-encoding", - "quoted_printable", - "rustls", - "socket2", - "tokio", - "tokio-rustls", - "url", - "webpki-roots", -] - -[[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 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "windows-link 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "libloading" -version = "0.8.9" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "cfg-if 1.0.4 (git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec)", - "windows-link 0.2.1 (git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec)", -] - -[[package]] -name = "libredox" -version = "0.1.18" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c943259e342f1e06ff2da7a83eabdfe7f92ce10262688dbf1895ff0b3e6e4652" -dependencies = [ - "libc", -] - -[[package]] -name = "libsqlite3-sys" -version = "0.30.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149" -dependencies = [ - "cc", - "pkg-config 0.3.33", - "vcpkg", -] - -[[package]] -name = "linked-hash-map" -version = "0.5.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" - -[[package]] -name = "litemap" -version = "0.8.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0" - -[[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.29" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" - -[[package]] -name = "log" -version = "0.4.33" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad" - -[[package]] -name = "lopdf" -version = "0.31.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "07c8e1b6184b1b32ea5f72f572ebdc40e5da1d2921fa469947ff7c480ad1f85a" -dependencies = [ - "encoding_rs", - "flate2", - "itoa", - "linked-hash-map", - "log 0.4.33", - "md5", - "pom", - "time", - "weezl 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "lru-slab" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154" - -[[package]] -name = "makepad-ai" -version = "1.0.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "makepad-live-id", - "makepad-micro-serde", - "makepad-widgets", -] - -[[package]] -name = "makepad-android-state" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd004cda8be459fd76954218b76a1249a079fb9360bbca4e724cb7ddb2962857" -dependencies = [ - "makepad-jni-sys", -] - -[[package]] -name = "makepad-apple-sys" -version = "1.0.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "makepad-objc-sys", -] - -[[package]] -name = "makepad-base64" -version = "1.0.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" - -[[package]] -name = "makepad-box3d" -version = "0.1.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" - -[[package]] -name = "makepad-byteorder-lite" -version = "0.1.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" - -[[package]] -name = "makepad-code-editor" -version = "2.0.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "makepad-widgets", -] - -[[package]] -name = "makepad-csg" -version = "0.1.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "makepad-csg-boolean", - "makepad-csg-math", - "makepad-csg-mesh", - "makepad-csg-primitives", - "makepad-csg-sdf", -] - -[[package]] -name = "makepad-csg-boolean" -version = "0.1.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "makepad-csg-exact", - "makepad-csg-math", - "makepad-csg-mesh", -] - -[[package]] -name = "makepad-csg-exact" -version = "0.1.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "makepad-csg-math", -] - -[[package]] -name = "makepad-csg-math" -version = "0.1.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" - -[[package]] -name = "makepad-csg-mesh" -version = "0.1.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "makepad-csg-math", -] - -[[package]] -name = "makepad-csg-primitives" -version = "0.1.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "makepad-csg-math", - "makepad-csg-mesh", -] - -[[package]] -name = "makepad-csg-sdf" -version = "0.1.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "makepad-csg-math", - "makepad-csg-mesh", -] - -[[package]] -name = "makepad-derive-wasm-bridge" -version = "1.0.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "makepad-micro-proc-macro", -] - -[[package]] -name = "makepad-derive-widget" -version = "2.0.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "makepad-live-id", - "makepad-micro-proc-macro", -] - -[[package]] -name = "makepad-draw" -version = "2.0.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "ab_glyph_rasterizer", - "fxhash", - "makepad-gif", - "makepad-live-id", - "makepad-math", - "makepad-platform", - "makepad-svg", - "makepad-webp", - "makepad-zune-bmp", - "makepad-zune-jpeg", - "makepad-zune-png", - "makepad-zune-qoi", - "rustybuzz", - "sdfer", - "serde", - "unicode-bidi", - "unicode-linebreak", - "unicode-segmentation 1.12.0", -] - -[[package]] -name = "makepad-error-log" -version = "1.0.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "makepad-micro-serde", -] - -[[package]] -name = "makepad-fast-inflate" -version = "0.1.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" - -[[package]] -name = "makepad-filesystem-watcher" -version = "0.1.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" - -[[package]] -name = "makepad-futures" -version = "1.0.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" - -[[package]] -name = "makepad-futures-legacy" -version = "1.0.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" - -[[package]] -name = "makepad-gif" -version = "0.1.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "weezl 0.1.12 (git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec)", -] - -[[package]] -name = "makepad-git" -version = "0.1.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "makepad-fast-inflate", -] - -[[package]] -name = "makepad-gltf" -version = "1.0.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "makepad-base64", - "makepad-math", - "makepad-micro-serde", -] - -[[package]] -name = "makepad-half" -version = "2.7.1" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "cfg-if 1.0.4 (git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec)", - "crunchy", - "num-traits 0.2.20", - "zerocopy 0.8.39", -] - -[[package]] -name = "makepad-html" -version = "1.0.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "makepad-live-id", -] - -[[package]] -name = "makepad-jni-sys" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9775cbec5fa0647500c3e5de7c850280a88335d1d2d770e5aa2332b801ba7064" - -[[package]] -name = "makepad-latex-math" -version = "0.1.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "ttf-parser 0.24.1", -] - -[[package]] -name = "makepad-live-id" -version = "1.0.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "makepad-live-id-macros", - "serde", -] - -[[package]] -name = "makepad-live-id-macros" -version = "1.0.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "makepad-micro-proc-macro", -] - -[[package]] -name = "makepad-live-reload-core" -version = "0.1.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "makepad-filesystem-watcher", -] - -[[package]] -name = "makepad-lz4" -version = "0.1.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" - -[[package]] -name = "makepad-math" -version = "1.0.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "makepad-micro-serde", -] - -[[package]] -name = "makepad-mbtile-reader" -version = "1.0.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" - -[[package]] -name = "makepad-micro-proc-macro" -version = "1.0.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" - -[[package]] -name = "makepad-micro-serde" -version = "1.0.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "makepad-live-id", - "makepad-micro-serde-derive", -] - -[[package]] -name = "makepad-micro-serde-derive" -version = "1.0.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "makepad-micro-proc-macro", -] - -[[package]] -name = "makepad-network" -version = "1.0.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "makepad-apple-sys", - "makepad-error-log", - "makepad-futures-legacy", - "makepad-live-id", - "makepad-micro-serde", - "makepad-script", - "windows 0.62.2", -] - -[[package]] -name = "makepad-objc-sys" -version = "1.0.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" - -[[package]] -name = "makepad-platform" -version = "2.0.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "ash", - "bitflags 2.10.0", - "ctrlc", - "hilog-sys", - "makepad-android-state", - "makepad-apple-sys", - "makepad-futures", - "makepad-futures-legacy", - "makepad-jni-sys", - "makepad-live-reload-core", - "makepad-network", - "makepad-objc-sys", - "makepad-script", - "makepad-script-std", - "makepad-shared-bytes", - "makepad-studio-protocol", - "makepad-tsdf", - "makepad-wasm-bridge", - "makepad-zune-png", - "naga", - "napi-derive-ohos", - "napi-ohos", - "ohos-sys", - "smallvec 1.15.1", - "wayland-client", - "wayland-egl", - "wayland-protocols", - "windows 0.62.2", - "windows-core 0.62.2 (git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec)", - "windows-targets 0.52.6", -] - -[[package]] -name = "makepad-rabin-karp" -version = "1.0.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" - -[[package]] -name = "makepad-regex" -version = "0.1.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" - -[[package]] -name = "makepad-script" -version = "1.0.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "makepad-error-log", - "makepad-html", - "makepad-live-id", - "makepad-math", - "makepad-regex", - "makepad-script-derive", - "smallvec 1.15.1", -] - -[[package]] -name = "makepad-script-derive" -version = "1.0.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "makepad-micro-proc-macro", -] - -[[package]] -name = "makepad-script-std" -version = "1.0.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "makepad-network", - "makepad-script", -] - -[[package]] -name = "makepad-shared-bytes" -version = "1.0.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" - -[[package]] -name = "makepad-splat" -version = "1.0.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "makepad-micro-serde", - "makepad-webp", - "makepad-zip-file", -] - -[[package]] -name = "makepad-studio-hub" -version = "0.1.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "makepad-filesystem-watcher", - "makepad-git", - "makepad-live-id", - "makepad-micro-serde", - "makepad-network", - "makepad-rabin-karp", - "makepad-regex", - "makepad-script-std", - "makepad-studio-protocol", - "makepad-terminal-core", -] - -[[package]] -name = "makepad-studio-protocol" -version = "0.1.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "bitflags 2.10.0", - "makepad-error-log", - "makepad-live-id", - "makepad-micro-serde", - "makepad-script", -] - -[[package]] -name = "makepad-svg" -version = "1.0.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "makepad-html", - "makepad-live-id", -] - -[[package]] -name = "makepad-terminal-core" -version = "1.0.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "windows 0.62.2", -] - -[[package]] -name = "makepad-test" -version = "0.1.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "makepad-micro-serde", - "makepad-network", - "makepad-studio-hub", - "makepad-studio-protocol", - "makepad-test-macros", -] - -[[package]] -name = "makepad-test-macros" -version = "0.1.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.119", -] - -[[package]] -name = "makepad-tsdf" -version = "0.1.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "makepad-math", - "makepad-micro-serde", -] - -[[package]] -name = "makepad-wasm-bridge" -version = "1.0.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "makepad-derive-wasm-bridge", - "makepad-live-id", -] - -[[package]] -name = "makepad-webp" -version = "0.2.4" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "makepad-byteorder-lite", -] - -[[package]] -name = "makepad-widgets" -version = "2.0.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "i_overlay", - "makepad-csg", - "makepad-derive-widget", - "makepad-draw", - "makepad-fast-inflate", - "makepad-gltf", - "makepad-html", - "makepad-latex-math", - "makepad-mbtile-reader", - "makepad-test", - "pulldown-cmark", - "serde", - "ttf-parser 0.24.1", - "unicode-segmentation 1.12.0", -] - -[[package]] -name = "makepad-xr" -version = "1.0.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "makepad-box3d", - "makepad-gltf", - "makepad-lz4", - "makepad-splat", - "makepad-widgets", -] - -[[package]] -name = "makepad-zip-file" -version = "1.0.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "makepad-fast-inflate", -] - -[[package]] -name = "makepad-zune-bmp" -version = "0.5.2" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "log 0.4.33", - "makepad-zune-core", -] - -[[package]] -name = "makepad-zune-core" -version = "0.5.1" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "log 0.4.33", -] - -[[package]] -name = "makepad-zune-inflate" -version = "0.2.54" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "simd-adler32 0.3.9", -] - -[[package]] -name = "makepad-zune-jpeg" -version = "0.5.15" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "makepad-zune-core", -] - -[[package]] -name = "makepad-zune-png" -version = "0.5.2" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "makepad-zune-core", - "makepad-zune-inflate", -] - -[[package]] -name = "makepad-zune-qoi" -version = "0.5.2" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "makepad-zune-core", -] - -[[package]] -name = "matrix_client" -version = "0.1.0" -dependencies = [ - "chrono", - "error_set", - "rand 0.8.7", - "reqwest", - "rusqlite", - "serde", - "serde_json", - "tokio", - "url", - "uuid", -] - -[[package]] -name = "md-5" -version = "0.10.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf" -dependencies = [ - "cfg-if 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "digest", -] - -[[package]] -name = "md5" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771" - -[[package]] -name = "memchr" -version = "2.7.6" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" - -[[package]] -name = "memchr" -version = "2.8.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98" - -[[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 2.9.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "miniz_oxide" -version = "0.7.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08" -dependencies = [ - "adler", -] - -[[package]] -name = "miniz_oxide" -version = "0.8.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" -dependencies = [ - "adler2", - "simd-adler32 0.3.10", -] - -[[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 0.2.19", - "pxfm", -] - -[[package]] -name = "naga" -version = "27.0.3" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "arrayvec", - "bit-set", - "bitflags 2.13.1", - "cfg-if 1.0.4 (git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec)", - "cfg_aliases 0.2.1", - "hashbrown 0.16.1 (git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec)", - "hexf-parse", - "indexmap 2.13.0", - "makepad-error-log", - "makepad-half", - "num-traits 0.2.20", - "once_cell 1.21.3", - "rustc-hash 1.1.0", - "spirv", - "thiserror 2.0.18", - "unicode-ident", -] - -[[package]] -name = "napi-derive-backend-ohos" -version = "0.0.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f6b18d697bedddd2d4c9f8f76b49fe65bd81ed1c55a7eec21ba40c176c236ddc" -dependencies = [ - "convert_case", - "once_cell 1.21.4", - "proc-macro2", - "quote", - "regex", - "syn 2.0.119", -] - -[[package]] -name = "napi-derive-ohos" -version = "0.0.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8462d74a2d6c7a671bd610f99f9ba34c739aadd2da4d8dd9f109a7e666cc2ad2" -dependencies = [ - "cfg-if 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "convert_case", - "napi-derive-backend-ohos", - "proc-macro2", - "quote", - "syn 2.0.119", -] - -[[package]] -name = "napi-ohos" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ad5a3bbb2ae61f345b8c11776f2e79fc2bb71d1901af9a5f81f03c9238a05d86" -dependencies = [ - "bitflags 2.13.1", - "ctor", - "napi-sys-ohos", - "once_cell 1.21.4", -] - -[[package]] -name = "napi-sys-ohos" -version = "0.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f101404db01422d034db5afa63eefff6d9c8f66c0894278bc456b4c30954e166" -dependencies = [ - "libloading 0.8.9 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "ndk-context" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b" - -[[package]] -name = "nigig-ai" -version = "0.1.0" -dependencies = [ - "chrono", - "makepad-widgets", - "nigig-core", - "nigig-uikit", - "robius-location", - "robius-sms", - "serde", - "serde_json", -] - -[[package]] -name = "nigig-alerts" -version = "0.1.0" -dependencies = [ - "chrono", - "makepad-widgets", - "nigig-core", - "nigig-uikit", - "robius-location", - "robius-sms", - "serde", - "serde_json", -] - -[[package]] -name = "nigig-book" -version = "0.1.0" -dependencies = [ - "chrono", - "makepad-widgets", - "nigig-core", - "nigig-uikit", - "robius-location", - "robius-sms", - "serde", - "serde_json", -] - -[[package]] -name = "nigig-build" -version = "0.1.0" -dependencies = [ - "chrono", - "doc-engine", - "makepad-ai", - "makepad-base64", - "makepad-code-editor", - "makepad-widgets", - "makepad-xr", - "nigig-core", - "nigig-uikit", - "printpdf", - "rayon", - "robius-file-picker", - "robius-location", - "robius-sms", - "serde", - "serde_json", - "spreadsheet-ui", - "time", -] - -[[package]] -name = "nigig-chat" -version = "0.1.0" -dependencies = [ - "chrono", - "makepad-widgets", - "nigig-core", - "nigig-uikit", - "robius-location", - "robius-sms", - "serde", - "serde_json", -] - -[[package]] -name = "nigig-core" -version = "0.1.0" -dependencies = [ - "cfg-if 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "chrono", - "clap", - "csv", - "error_set", - "futures", - "getrandom 0.2.17", - "image", - "js-sys", - "lettre", - "makepad-widgets", - "matrix_client", - "nigig-system-prefs", - "postcard", - "rand 0.8.7", - "reqwest", - "robius-directories", - "robius-location", - "robius-open", - "robius-sms", - "robius-ussd", - "serde", - "serde_json", - "tokio", - "url", - "wasm-bindgen", - "wasm-bindgen-futures", - "web-sys", -] - -[[package]] -name = "nigig-delivery" -version = "0.1.0" -dependencies = [ - "chrono", - "makepad-widgets", - "nigig-core", - "nigig-uikit", - "robius-location", - "robius-sms", - "serde", - "serde_json", -] - -[[package]] -name = "nigig-email" -version = "0.1.0" -dependencies = [ - "chrono", - "makepad-widgets", - "nigig-core", - "nigig-uikit", - "robius-location", - "robius-sms", - "serde", - "serde_json", -] - -[[package]] -name = "nigig-feed" -version = "0.1.0" -dependencies = [ - "chrono", - "makepad-widgets", - "nigig-core", - "nigig-uikit", - "robius-location", - "robius-sms", - "serde", - "serde_json", -] - -[[package]] -name = "nigig-garage" -version = "0.1.0" -dependencies = [ - "chrono", - "makepad-widgets", - "nigig-core", - "nigig-uikit", - "robius-location", - "robius-sms", - "serde", - "serde_json", -] - -[[package]] -name = "nigig-health" -version = "0.1.0" -dependencies = [ - "chrono", - "makepad-widgets", - "nigig-core", - "nigig-uikit", - "robius-location", - "robius-sms", - "serde", - "serde_json", -] - -[[package]] -name = "nigig-insure" -version = "0.1.0" -dependencies = [ - "chrono", - "makepad-widgets", - "nigig-core", - "nigig-uikit", - "robius-location", - "robius-sms", - "serde", - "serde_json", -] - -[[package]] -name = "nigig-map" -version = "0.1.0" -dependencies = [ - "makepad-test", - "makepad-widgets", -] - -[[package]] -name = "nigig-marikiti" -version = "0.1.0" -dependencies = [ - "chrono", - "makepad-widgets", - "nigig-core", - "nigig-uikit", - "robius-location", - "robius-sms", - "serde", - "serde_json", -] - -[[package]] -name = "nigig-mobility" -version = "0.1.0" -dependencies = [ - "chrono", - "makepad-widgets", - "nigig-core", - "nigig-uikit", - "robius-location", - "robius-sms", - "serde", - "serde_json", -] - -[[package]] -name = "nigig-mpesa" -version = "0.1.0" -dependencies = [ - "chrono", - "makepad-widgets", - "nigig-core", - "nigig-pay-domain", - "nigig-pay-ui", - "nigig-uikit", - "robius-contacts", - "robius-fingerprinting", - "robius-location", - "robius-sms", - "robius-trigger", - "robius-ussd", - "serde", - "serde_json", -] - -[[package]] -name = "nigig-pay" -version = "0.1.0" -dependencies = [ - "chrono", - "makepad-widgets", - "nigig-core", - "nigig-pay-domain", - "nigig-pay-ui", - "nigig-uikit", - "robius-fingerprinting", - "robius-location", - "robius-sms", - "robius-ussd", - "serde", - "serde_json", -] - -[[package]] -name = "nigig-pay-domain" -version = "0.1.0" -dependencies = [ - "chrono", - "rand 0.8.7", - "serde", -] - -[[package]] -name = "nigig-pay-platform" -version = "0.1.0" -dependencies = [ - "nigig-pay-domain", - "robius-ussd", -] - -[[package]] -name = "nigig-pay-storage" -version = "0.1.0" -dependencies = [ - "nigig-pay-domain", - "rusqlite", - "serde_json", -] - -[[package]] -name = "nigig-pay-ui" -version = "0.1.0" -dependencies = [ - "chrono", - "makepad-widgets", - "nigig-core", - "nigig-pay-domain", - "nigig-pay-storage", - "nigig-uikit", - "robius-contacts", - "robius-file-picker", - "robius-fingerprinting", - "robius-ussd", - "serde", - "serde_json", - "zeroize", -] - -[[package]] -name = "nigig-pdf-cos" -version = "0.1.0" -dependencies = [ - "aes", - "cbc", - "md-5", - "miniz_oxide 0.7.4", - "rc4", - "sha2", -] - -[[package]] -name = "nigig-pdf-document" -version = "0.1.0" -dependencies = [ - "nigig-pdf-cos", - "nigig-pdf-graphics", -] - -[[package]] -name = "nigig-pdf-graphics" -version = "0.1.0" -dependencies = [ - "nigig-pdf-cos", - "nigig-pdf-document", -] - -[[package]] -name = "nigig-pdf-makepad" -version = "0.1.0" -dependencies = [ - "makepad-test", - "makepad-widgets", - "nigig-pdf-cos", - "nigig-pdf-document", - "nigig-pdf-graphics", -] - -[[package]] -name = "nigig-property" -version = "0.1.0" -dependencies = [ - "chrono", - "makepad-widgets", - "nigig-core", - "nigig-uikit", - "robius-location", - "robius-sms", - "serde", - "serde_json", -] - -[[package]] -name = "nigig-rider" -version = "0.1.0" -dependencies = [ - "chrono", - "makepad-widgets", - "nigig-core", - "nigig-map", - "nigig-uikit", - "robius-location", - "robius-sms", - "serde", - "serde_json", - "valhalla", -] - -[[package]] -name = "nigig-shop" -version = "0.1.0" -dependencies = [ - "chrono", - "makepad-widgets", - "nigig-core", - "nigig-uikit", - "robius-location", - "robius-sms", - "serde", - "serde_json", -] - -[[package]] -name = "nigig-sms" -version = "0.1.0" -dependencies = [ - "chrono", - "makepad-widgets", - "nigig-core", - "nigig-uikit", - "robius-contacts", - "robius-location", - "robius-sms", - "serde", - "serde_json", -] - -[[package]] -name = "nigig-system-prefs" -version = "0.1.0" -dependencies = [ - "block2", - "cfg-if 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "jni", - "objc2", - "objc2-app-kit", - "objc2-foundation", - "robius-android-env", - "windows 0.56.0", - "windows-core 0.56.0", -] - -[[package]] -name = "nigig-tow" -version = "0.1.0" -dependencies = [ - "chrono", - "makepad-widgets", - "nigig-core", - "nigig-uikit", - "robius-location", - "robius-sms", - "serde", - "serde_json", -] - -[[package]] -name = "nigig-uikit" -version = "0.1.0" -dependencies = [ - "chrono", - "makepad-widgets", - "nigig-core", - "robius-contacts", - "robius-location", - "robius-sms", - "serde", - "serde_json", -] - -[[package]] -name = "nigig-vehicle" -version = "0.1.0" -dependencies = [ - "chrono", - "makepad-widgets", - "nigig-core", - "nigig-uikit", - "robius-location", - "robius-sms", - "serde", - "serde_json", -] - -[[package]] -name = "nigig-walkie" -version = "0.1.0" -dependencies = [ - "chrono", - "makepad-widgets", - "nigig-core", - "nigig-uikit", - "robius-location", - "robius-sms", - "serde", - "serde_json", -] - -[[package]] -name = "nix" -version = "0.31.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf20d2fde8ff38632c426f1165ed7436270b44f199fc55284c38276f9db47c3d" -dependencies = [ - "bitflags 2.13.1", - "cfg-if 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "cfg_aliases 0.2.2", - "libc", -] - -[[package]] -name = "nom" -version = "8.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405" -dependencies = [ - "memchr 2.8.3", -] - -[[package]] -name = "num-conv" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441" - -[[package]] -name = "num-traits" -version = "0.2.19" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" -dependencies = [ - "autocfg", -] - -[[package]] -name = "num-traits" -version = "0.2.20" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" - -[[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.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d49e936b501e5c5bf01fda3a9452ff86dc3ea98ad5f283e1455153142d97518c" -dependencies = [ - "bitflags 2.13.1", - "block2", - "objc2", - "objc2-foundation", -] - -[[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", -] - -[[package]] -name = "objc2-core-location" -version = "0.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ca347214e24bc973fc025fd0d36ebb179ff30536ed1f80252706db19ee452009" -dependencies = [ - "objc2", - "objc2-foundation", -] - -[[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.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3e0adef53c21f888deb4fa59fc59f7eb17404926ee8a6f59f5df0fd7f9f3272" -dependencies = [ - "bitflags 2.13.1", - "block2", - "objc2", - "objc2-core-foundation", -] - -[[package]] -name = "objc2-photos-ui" -version = "0.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fdddde9dfb986546746e3115021a85c4a83e1c5e9037b3c865a688fe9bf94ebb" -dependencies = [ - "bitflags 2.13.1", - "objc2", - "objc2-foundation", -] - -[[package]] -name = "objc2-ui-kit" -version = "0.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d87d638e33c06f577498cbcc50491496a3ed4246998a7fbba7ccb98b1e7eab22" -dependencies = [ - "bitflags 2.13.1", - "block2", - "objc2", - "objc2-foundation", - "objc2-uniform-type-identifiers", -] - -[[package]] -name = "objc2-uniform-type-identifiers" -version = "0.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7902ac02859fc1f7045f8b598c63f1ae0cc7efeaa06a9bc9f3d9a3c955974fa4" -dependencies = [ - "objc2", - "objc2-foundation", -] - -[[package]] -name = "ohos-sys" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8d380ab6c951261a0e44306245bc960b3b3367f099a7da7156bd1a3cacaf783c" - -[[package]] -name = "once_cell" -version = "1.21.3" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" - -[[package]] -name = "once_cell" -version = "1.21.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50" - -[[package]] -name = "once_cell_polyfill" -version = "1.70.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe" - -[[package]] -name = "option-ext" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" - -[[package]] -name = "owned_ttf_parser" -version = "0.19.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "706de7e2214113d63a8238d1910463cfce781129a6f263d13fdb09ff64355ba4" -dependencies = [ - "ttf-parser 0.19.2", -] - -[[package]] -name = "pageflipnav" -version = "1.0.0" -dependencies = [ - "chrono", - "clap", - "error_set", - "futures-util", - "getrandom 0.2.17", - "hashbrown 0.16.1 (registry+https://github.com/rust-lang/crates.io-index)", - "imghdr", - "makepad-widgets", - "nigig-ai", - "nigig-alerts", - "nigig-book", - "nigig-build", - "nigig-chat", - "nigig-core", - "nigig-delivery", - "nigig-email", - "nigig-feed", - "nigig-garage", - "nigig-health", - "nigig-insure", - "nigig-marikiti", - "nigig-mobility", - "nigig-mpesa", - "nigig-pay", - "nigig-property", - "nigig-rider", - "nigig-shop", - "nigig-sms", - "nigig-tow", - "nigig-uikit", - "nigig-vehicle", - "nigig-walkie", - "postcard", - "rand 0.8.7", - "reqwest", - "robius-contacts", - "robius-directories", - "robius-fingerprinting", - "robius-open", - "robius-sms", - "robius-trigger", - "robius-use-makepad", - "robius-ussd", - "serde", - "serde_json", - "tokio", - "unicode-segmentation 1.13.3", - "url", -] - -[[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 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "libc", - "redox_syscall", - "smallvec 1.15.2", - "windows-link 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "percent-encoding" -version = "2.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" - -[[package]] -name = "pin-project-lite" -version = "0.2.17" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd" - -[[package]] -name = "pkg-config" -version = "0.3.32" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" - -[[package]] -name = "pkg-config" -version = "0.3.33" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e" - -[[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 0.8.9", -] - -[[package]] -name = "polkit" -version = "0.17.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f7866121c1e115212fd6e4eca8f84e03af65eda1a3d57babf849a946c791559c" -dependencies = [ - "bitflags 1.3.2", - "gio", - "glib", - "polkit-sys", -] - -[[package]] -name = "polkit-sys" -version = "0.17.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fdc4bc8e597191fc76cbd8a1b1d22a9a8dbbbf599f9e7af58ab5703303423d53" -dependencies = [ - "gio-sys", - "glib-sys", - "gobject-sys", - "libc", - "system-deps", -] - -[[package]] -name = "pollster" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f3a9f18d041e6d0e102a0a46750538147e5e8992d3b4873aaafee2520b00ce3" - -[[package]] -name = "pom" -version = "3.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c972d8f86e943ad532d0b04e8965a749ad1d18bb981a9c7b3ae72fe7fd7744b" -dependencies = [ - "bstr", -] - -[[package]] -name = "postcard" -version = "1.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6764c3b5dd454e283a30e6dfe78e9b31096d9e32036b5d1eaac7a6119ccb9a24" -dependencies = [ - "cobs", - "embedded-io 0.4.0", - "embedded-io 0.6.1", - "heapless", - "serde", -] - -[[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 0.8.55", -] - -[[package]] -name = "printpdf" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c30a4cc87c3ca9a98f4970db158a7153f8d1ec8076e005751173c57836380b1d" -dependencies = [ - "js-sys", - "lopdf", - "owned_ttf_parser", - "time", -] - -[[package]] -name = "proc-macro-crate" -version = "1.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" -dependencies = [ - "once_cell 1.21.4", - "toml_edit 0.19.15", -] - -[[package]] -name = "proc-macro-error" -version = "1.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" -dependencies = [ - "proc-macro-error-attr", - "proc-macro2", - "quote", - "syn 1.0.109", - "version_check", -] - -[[package]] -name = "proc-macro-error-attr" -version = "1.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" -dependencies = [ - "proc-macro2", - "quote", - "version_check", -] - -[[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 = "pulldown-cmark" -version = "0.12.2" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "bitflags 2.10.0", - "memchr 2.7.6", - "unicase 2.9.0 (git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec)", -] - -[[package]] -name = "pxfm" -version = "0.1.30" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d55d956fa96f5ec02be2e13af0e20391a5aa83d6a074e3ad368959d0fab299ea" - -[[package]] -name = "quinn" -version = "0.11.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c1a41e437b6bbd489372cd4971de128e85c855f56c57f283d20ff016cf7c0a8" -dependencies = [ - "bytes", - "cfg_aliases 0.2.2", - "pin-project-lite", - "quinn-proto", - "quinn-udp", - "rustc-hash 2.1.3", - "rustls", - "socket2", - "thiserror 2.0.19", - "tokio", - "tracing", - "web-time", -] - -[[package]] -name = "quinn-proto" -version = "0.11.16" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f4bfc015262b9df63c8845072ce59068853ff5872180c2ce2f13038b970e560" -dependencies = [ - "bytes", - "getrandom 0.4.3", - "lru-slab", - "rand 0.10.2", - "rand_pcg", - "ring", - "rustc-hash 2.1.3", - "rustls", - "rustls-pki-types", - "slab", - "thiserror 2.0.19", - "tinyvec", - "tracing", - "web-time", -] - -[[package]] -name = "quinn-udp" -version = "0.5.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "35a133f956daabe89a61a685c2649f13d82d5aa4bd5d12d1277e1072a21c0694" -dependencies = [ - "cfg_aliases 0.2.2", - "libc", - "once_cell 1.21.4", - "socket2", - "tracing", - "windows-sys 0.61.2", -] - -[[package]] -name = "quote" -version = "1.0.47" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001" -dependencies = [ - "proc-macro2", -] - -[[package]] -name = "quoted_printable" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "478e0585659a122aa407eb7e3c0e1fa51b1d8a870038bd29f0cf4a8551eea972" - -[[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 0.6.4", -] - -[[package]] -name = "rand" -version = "0.10.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80" -dependencies = [ - "chacha20", - "getrandom 0.4.3", - "rand_core 0.10.1", -] - -[[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 0.6.4", -] - -[[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 = "rand_core" -version = "0.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69" - -[[package]] -name = "rand_pcg" -version = "0.10.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "caa0f4137e1c0a72f4c651489402276c8e8e1cf081f3b0ba156d2cbeef09e86a" -dependencies = [ - "rand_core 0.10.1", -] - -[[package]] -name = "raw-window-handle" -version = "0.6.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539" - -[[package]] -name = "rayon" -version = "1.12.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d" -dependencies = [ - "either", - "rayon-core", -] - -[[package]] -name = "rayon-core" -version = "1.13.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91" -dependencies = [ - "crossbeam-deque", - "crossbeam-utils", -] - -[[package]] -name = "rc4" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0f1256e23efe6097f27aa82d6ca6889361c001586ae0f6917cbad072f05eb275" -dependencies = [ - "cipher", -] - -[[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_users" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac" -dependencies = [ - "getrandom 0.2.17", - "libredox", - "thiserror 2.0.19", -] - -[[package]] -name = "regex" -version = "1.13.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d" -dependencies = [ - "aho-corasick", - "memchr 2.8.3", - "regex-automata", - "regex-syntax", -] - -[[package]] -name = "regex-automata" -version = "0.4.16" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8fcfdb36bda0c880c5931cdc7a2bcdc8ba4556847b9d912bca70bc94708711ad" -dependencies = [ - "aho-corasick", - "memchr 2.8.3", - "regex-syntax", -] - -[[package]] -name = "regex-syntax" -version = "0.8.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4" - -[[package]] -name = "reqwest" -version = "0.12.28" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147" -dependencies = [ - "base64 0.22.1", - "bytes", - "futures-core", - "futures-util", - "http", - "http-body", - "http-body-util", - "hyper", - "hyper-rustls", - "hyper-util", - "js-sys", - "log 0.4.33", - "percent-encoding", - "pin-project-lite", - "quinn", - "rustls", - "rustls-pki-types", - "serde", - "serde_json", - "serde_urlencoded", - "sync_wrapper", - "tokio", - "tokio-rustls", - "tokio-util", - "tower", - "tower-http", - "tower-service", - "url", - "wasm-bindgen", - "wasm-bindgen-futures", - "wasm-streams", - "web-sys", - "webpki-roots", -] - -[[package]] -name = "rfd" -version = "0.17.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "20dafead71c16a34e1ff357ddefc8afc11e7d51d6d2b9fbd07eaa48e3e540220" -dependencies = [ - "block2", - "dispatch2", - "js-sys", - "libc", - "log 0.4.33", - "objc2", - "objc2-app-kit", - "objc2-core-foundation", - "objc2-foundation", - "percent-encoding", - "pollster", - "raw-window-handle", - "wasm-bindgen", - "wasm-bindgen-futures", - "web-sys", - "windows-sys 0.61.2", -] - -[[package]] -name = "ring" -version = "0.17.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" -dependencies = [ - "cc", - "cfg-if 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "getrandom 0.2.17", - "libc", - "untrusted", - "windows-sys 0.52.0", -] - -[[package]] -name = "robius-android-env" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "087fcb3061ccc432658a605cb868edd44e0efb08e7a159b486f02804a7616bef" -dependencies = [ - "jni", - "makepad-android-state", - "ndk-context", -] - -[[package]] -name = "robius-common" -version = "0.3.0" -source = "git+https://github.com/project-robius/robius?rev=b766e62b0600f5d2ee21cc6995648346fc277bd8#b766e62b0600f5d2ee21cc6995648346fc277bd8" - -[[package]] -name = "robius-contacts" -version = "0.1.0" -dependencies = [ - "cfg-if 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "jni", - "robius-android-env", -] - -[[package]] -name = "robius-directories" -version = "6.0.0" -source = "git+https://github.com/project-robius/robius?rev=b766e62b0600f5d2ee21cc6995648346fc277bd8#b766e62b0600f5d2ee21cc6995648346fc277bd8" -dependencies = [ - "dirs-sys", - "jni", - "robius-android-env", -] - -[[package]] -name = "robius-file-picker" -version = "0.3.0" -source = "git+https://github.com/project-robius/robius?rev=b766e62b0600f5d2ee21cc6995648346fc277bd8#b766e62b0600f5d2ee21cc6995648346fc277bd8" -dependencies = [ - "android-build", - "block2", - "cfg-if 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "dispatch2", - "jni", - "mime_guess", - "objc2", - "objc2-foundation", - "objc2-photos-ui", - "objc2-ui-kit", - "objc2-uniform-type-identifiers", - "rfd", - "robius-android-env", - "robius-common", - "robius-directories", -] - -[[package]] -name = "robius-fingerprinting" -version = "0.1.0" -dependencies = [ - "android-build", - "cfg-if 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "jni", - "robius-android-env", -] - -[[package]] -name = "robius-location" -version = "0.3.0" -source = "git+https://github.com/project-robius/robius?rev=b766e62b0600f5d2ee21cc6995648346fc277bd8#b766e62b0600f5d2ee21cc6995648346fc277bd8" -dependencies = [ - "android-build", - "cfg-if 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "jni", - "objc2", - "objc2-core-location", - "objc2-foundation", - "robius-android-env", - "windows 0.56.0", -] - -[[package]] -name = "robius-open" -version = "0.3.0" -source = "git+https://github.com/project-robius/robius?rev=b766e62b0600f5d2ee21cc6995648346fc277bd8#b766e62b0600f5d2ee21cc6995648346fc277bd8" -dependencies = [ - "block2", - "cfg-if 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "dispatch2", - "jni", - "objc2", - "objc2-app-kit", - "objc2-foundation", - "objc2-ui-kit", - "robius-android-env", - "windows 0.56.0", -] - -[[package]] -name = "robius-sms" -version = "0.1.0" -dependencies = [ - "android-build", - "block2", - "cfg-if 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "dispatch2", - "gio", - "jni", - "objc2", - "objc2-foundation", - "polkit", - "robius-android-env", - "rusqlite", - "windows 0.56.0", - "windows-core 0.56.0", -] - -[[package]] -name = "robius-trigger" -version = "0.1.0" -dependencies = [ - "android-build", - "jni", - "robius-android-env", - "serde", - "serde_json", -] - -[[package]] -name = "robius-use-makepad" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "947db6944188cbab806d657f70ec5c55ec9f169d3cab83ac2d04801bd25a2826" -dependencies = [ - "robius-android-env", -] - -[[package]] -name = "robius-ussd" -version = "0.1.0" -dependencies = [ - "android-build", - "block2", - "cfg-if 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "dispatch2", - "jni", - "objc2", - "objc2-foundation", - "robius-android-env", - "serde", -] - -[[package]] -name = "rusqlite" -version = "0.32.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7753b721174eb8ff87a9a0e799e2d7bc3749323e773db92e0984debb00019d6e" -dependencies = [ - "bitflags 2.13.1", - "fallible-iterator", - "fallible-streaming-iterator", - "hashlink", - "libsqlite3-sys", - "smallvec 1.15.2", -] - -[[package]] -name = "rustc-hash" -version = "1.1.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" - -[[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 = "rustls" -version = "0.23.43" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0283386ce02abc0151e1761d08802dfe86c173b0b494af5cbc086574e453da06" -dependencies = [ - "log 0.4.33", - "once_cell 1.21.4", - "ring", - "rustls-pki-types", - "rustls-webpki", - "subtle", - "zeroize", -] - -[[package]] -name = "rustls-pki-types" -version = "1.15.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f4925028c7eb5d1fcdaf196971378ed9d2c1c4efc7dc5d011256f76c99c0a96" -dependencies = [ - "web-time", - "zeroize", -] - -[[package]] -name = "rustls-webpki" -version = "0.103.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e" -dependencies = [ - "ring", - "rustls-pki-types", - "untrusted", -] - -[[package]] -name = "rustversion" -version = "1.0.23" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f" - -[[package]] -name = "rustybuzz" -version = "0.18.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "bitflags 2.10.0", - "bytemuck 1.25.0", - "makepad-error-log", - "smallvec 1.15.1", - "ttf-parser 0.24.1", - "unicode-bidi-mirroring", - "unicode-ccc", - "unicode-properties", - "unicode-script", -] - -[[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 = "scoped-tls" -version = "1.0.1" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" - -[[package]] -name = "scopeguard" -version = "1.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" - -[[package]] -name = "sdfer" -version = "0.2.1" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" - -[[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 2.8.3", - "serde", - "serde_core", - "zmij", -] - -[[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 = "sha2" -version = "0.10.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" -dependencies = [ - "cfg-if 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "cpufeatures 0.2.17", - "digest", -] - -[[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 = "simd-adler32" -version = "0.3.9" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" - -[[package]] -name = "simd-adler32" -version = "0.3.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea" - -[[package]] -name = "slab" -version = "0.4.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5" - -[[package]] -name = "smallvec" -version = "1.15.1" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" - -[[package]] -name = "smallvec" -version = "1.15.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90" - -[[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.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 = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "bitflags 2.13.1", -] - -[[package]] -name = "spreadsheet-engine" -version = "0.1.0" - -[[package]] -name = "spreadsheet-ui" -version = "0.1.0" -dependencies = [ - "makepad-test", - "makepad-widgets", - "spreadsheet-engine", -] - -[[package]] -name = "stable_deref_trait" -version = "1.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" - -[[package]] -name = "streem" -version = "0.1.0" -dependencies = [ - "ahash", - "chrono", - "makepad-widgets", - "nigig-core", - "nigig-uikit", - "robius-location", - "robius-sms", - "serde", - "serde_json", -] - -[[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 = "1.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" -dependencies = [ - "futures-core", -] - -[[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-deps" -version = "6.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a3e535eb8dded36d55ec13eddacd30dec501792ff23a0b1682c38601b8cf2349" -dependencies = [ - "cfg-expr", - "heck 0.5.0", - "pkg-config 0.3.33", - "toml", - "version-compare", -] - -[[package]] -name = "target-lexicon" -version = "0.12.16" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1" - -[[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.18" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "thiserror-impl 2.0.18", -] - -[[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.18" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "makepad-micro-proc-macro", -] - -[[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 = "time" -version = "0.3.54" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3e1d5e639ff6bab73cb6885cc7e7b1de96c3f32c68ec55f3952614bec1092244" -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 = "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 = "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", - "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-rustls" -version = "0.26.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61" -dependencies = [ - "rustls", - "tokio", -] - -[[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", - "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", - "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_edit" -version = "0.19.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" -dependencies = [ - "indexmap 2.14.0", - "toml_datetime", - "winnow 0.5.40", -] - -[[package]] -name = "toml_edit" -version = "0.22.27" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a" -dependencies = [ - "indexmap 2.14.0", - "serde", - "serde_spanned", - "toml_datetime", - "winnow 0.7.15", -] - -[[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", - "tokio", - "tower-layer", - "tower-service", -] - -[[package]] -name = "tower-http" -version = "0.6.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840" -dependencies = [ - "bitflags 2.13.1", - "bytes", - "futures-util", - "http", - "http-body", - "pin-project-lite", - "tower", - "tower-layer", - "tower-service", - "url", -] - -[[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 = [ - "pin-project-lite", - "tracing-core", -] - -[[package]] -name = "tracing-core" -version = "0.1.36" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" -dependencies = [ - "once_cell 1.21.4", -] - -[[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.19.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49d64318d8311fc2668e48b63969f4343e0a85c4a109aa8460d6672e364b8bd1" - -[[package]] -name = "ttf-parser" -version = "0.24.1" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" - -[[package]] -name = "typenum" -version = "1.20.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20" - -[[package]] -name = "unicase" -version = "2.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142" - -[[package]] -name = "unicase" -version = "2.9.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" - -[[package]] -name = "unicode-bidi" -version = "0.3.18" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" - -[[package]] -name = "unicode-bidi-mirroring" -version = "0.3.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" - -[[package]] -name = "unicode-ccc" -version = "0.3.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" - -[[package]] -name = "unicode-ident" -version = "1.0.24" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75" - -[[package]] -name = "unicode-linebreak" -version = "0.1.5" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" - -[[package]] -name = "unicode-properties" -version = "0.1.4" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" - -[[package]] -name = "unicode-script" -version = "0.5.8" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" - -[[package]] -name = "unicode-segmentation" -version = "1.12.0" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" - -[[package]] -name = "unicode-segmentation" -version = "1.13.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8" - -[[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 = "utf8_iter" -version = "1.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" - -[[package]] -name = "utf8parse" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" - -[[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", - "wasm-bindgen", -] - -[[package]] -name = "valhalla" -version = "0.1.0" -dependencies = [ - "serde_json", - "valhalla-builder", - "valhalla-core", - "valhalla-cost", - "valhalla-diff", - "valhalla-elevation", - "valhalla-makepad", - "valhalla-match", - "valhalla-narrative", - "valhalla-path", - "valhalla-search", - "valhalla-service", -] - -[[package]] -name = "valhalla-builder" -version = "0.1.0" -dependencies = [ - "bytemuck 1.25.2", - "flate2", - "serde", - "serde_json", - "valhalla-core", - "valhalla-cost", - "valhalla-path", -] - -[[package]] -name = "valhalla-core" -version = "0.1.0" -dependencies = [ - "bitflags 2.13.1", - "bytemuck 1.25.2", - "serde", - "serde_json", - "zerocopy 0.7.35", -] - -[[package]] -name = "valhalla-cost" -version = "0.1.0" -dependencies = [ - "serde", - "serde_json", - "valhalla-core", -] - -[[package]] -name = "valhalla-diff" -version = "0.1.0" -dependencies = [ - "serde", - "serde_json", - "valhalla-builder", - "valhalla-core", - "valhalla-cost", - "valhalla-match", - "valhalla-narrative", - "valhalla-path", - "valhalla-search", - "valhalla-service", -] - -[[package]] -name = "valhalla-elevation" -version = "0.1.0" -dependencies = [ - "byteorder 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde", - "serde_json", - "valhalla-core", -] - -[[package]] -name = "valhalla-makepad" -version = "0.1.0" -dependencies = [ - "serde", - "serde_json", - "valhalla-core", - "valhalla-cost", - "valhalla-match", - "valhalla-narrative", - "valhalla-path", - "valhalla-search", - "valhalla-service", -] - -[[package]] -name = "valhalla-match" -version = "0.1.0" -dependencies = [ - "serde", - "serde_json", - "valhalla-core", - "valhalla-cost", - "valhalla-search", -] - -[[package]] -name = "valhalla-narrative" -version = "0.1.0" -dependencies = [ - "serde", - "serde_json", - "valhalla-core", - "valhalla-cost", - "valhalla-path", -] - -[[package]] -name = "valhalla-path" -version = "0.1.0" -dependencies = [ - "serde", - "serde_json", - "valhalla-core", - "valhalla-cost", -] - -[[package]] -name = "valhalla-search" -version = "0.1.0" -dependencies = [ - "serde", - "serde_json", - "valhalla-core", - "valhalla-cost", -] - -[[package]] -name = "valhalla-service" -version = "0.1.0" -dependencies = [ - "bytemuck 1.25.2", - "serde", - "serde_json", - "valhalla-core", - "valhalla-cost", - "valhalla-elevation", - "valhalla-match", - "valhalla-narrative", - "valhalla-path", - "valhalla-search", -] - -[[package]] -name = "vcpkg" -version = "0.2.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" - -[[package]] -name = "version-compare" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "03c2856837ef78f57382f06b2b8563a2f512f7185d732608fd9176cb3b8edf0e" - -[[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 = "wasm-bindgen" -version = "0.2.126" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4" -dependencies = [ - "cfg-if 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "once_cell 1.21.4", - "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 = "wasm-streams" -version = "0.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65" -dependencies = [ - "futures-util", - "js-sys", - "wasm-bindgen", - "wasm-bindgen-futures", - "web-sys", -] - -[[package]] -name = "wayland-backend" -version = "0.3.12" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "downcast-rs", - "libc", - "scoped-tls", - "smallvec 1.15.2", - "wayland-sys", -] - -[[package]] -name = "wayland-client" -version = "0.31.12" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "bitflags 2.13.1", - "libc", - "wayland-backend", -] - -[[package]] -name = "wayland-egl" -version = "0.32.9" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "wayland-backend", - "wayland-sys", -] - -[[package]] -name = "wayland-protocols" -version = "0.32.10" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "bitflags 2.13.1", - "wayland-backend", - "wayland-client", -] - -[[package]] -name = "wayland-sys" -version = "0.31.8" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "log 0.4.29", - "pkg-config 0.3.32", -] - -[[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 = "webpki-roots" -version = "1.0.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7dcd9d09a39985f5344844e66b0c530a33843579125f23e21e9f0f220850f22a" -dependencies = [ - "rustls-pki-types", -] - -[[package]] -name = "weezl" -version = "0.1.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88" - -[[package]] -name = "weezl" -version = "0.1.12" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" - -[[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.56.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1de69df01bdf1ead2f4ac895dc77c9351aefff65b2f3db429a343f9cbf05e132" -dependencies = [ - "windows-core 0.56.0", - "windows-targets 0.52.6", -] - -[[package]] -name = "windows" -version = "0.62.2" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "windows-collections", - "windows-core 0.62.2 (git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec)", - "windows-future", -] - -[[package]] -name = "windows-collections" -version = "0.3.2" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "windows-core 0.62.2 (git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec)", -] - -[[package]] -name = "windows-core" -version = "0.56.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4698e52ed2d08f8658ab0c39512a7c00ee5fe2688c65f8c0a4f06750d729f2a6" -dependencies = [ - "windows-implement 0.56.0", - "windows-interface 0.56.0", - "windows-result 0.1.2", - "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 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "windows-result 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", - "windows-strings 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "windows-core" -version = "0.62.2" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "windows-link 0.2.1 (git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec)", - "windows-result 0.4.1 (git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec)", - "windows-strings 0.5.1 (git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec)", -] - -[[package]] -name = "windows-future" -version = "0.3.2" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "windows-core 0.62.2 (git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec)", -] - -[[package]] -name = "windows-implement" -version = "0.56.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f6fc35f58ecd95a9b71c4f2329b911016e6bec66b3f2e6a4aad86bd2e99e2f9b" -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.56.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08990546bf4edef8f431fa6326e032865f27138718c587dc21bc0265bbcb57cc" -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-link" -version = "0.2.1" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" - -[[package]] -name = "windows-result" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8" -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 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "windows-result" -version = "0.4.1" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "windows-link 0.2.1 (git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec)", -] - -[[package]] -name = "windows-strings" -version = "0.5.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091" -dependencies = [ - "windows-link 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "windows-strings" -version = "0.5.1" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" -dependencies = [ - "windows-link 0.2.1 (git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec)", -] - -[[package]] -name = "windows-sys" -version = "0.45.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" -dependencies = [ - "windows-targets 0.42.2", -] - -[[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.61.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" -dependencies = [ - "windows-link 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "windows-targets" -version = "0.42.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" -dependencies = [ - "windows_aarch64_gnullvm 0.42.2", - "windows_aarch64_msvc 0.42.2", - "windows_i686_gnu 0.42.2", - "windows_i686_msvc 0.42.2", - "windows_x86_64_gnu 0.42.2", - "windows_x86_64_gnullvm 0.42.2", - "windows_x86_64_msvc 0.42.2", -] - -[[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", - "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_aarch64_gnullvm" -version = "0.42.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" - -[[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_msvc" -version = "0.42.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" - -[[package]] -name = "windows_aarch64_msvc" -version = "0.52.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" - -[[package]] -name = "windows_i686_gnu" -version = "0.42.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" - -[[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_gnullvm" -version = "0.52.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" - -[[package]] -name = "windows_i686_msvc" -version = "0.42.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" - -[[package]] -name = "windows_i686_msvc" -version = "0.52.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" - -[[package]] -name = "windows_x86_64_gnu" -version = "0.42.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" - -[[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_gnullvm" -version = "0.42.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" - -[[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_msvc" -version = "0.42.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" - -[[package]] -name = "windows_x86_64_msvc" -version = "0.52.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" - -[[package]] -name = "winnow" -version = "0.5.40" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" -dependencies = [ - "memchr 2.8.3", -] - -[[package]] -name = "winnow" -version = "0.7.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945" -dependencies = [ - "memchr 2.8.3", -] - -[[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 = "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 = "zerocopy" -version = "0.7.35" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" -dependencies = [ - "byteorder 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "zerocopy-derive 0.7.35", -] - -[[package]] -name = "zerocopy" -version = "0.8.39" -source = "git+https://gitdab.com/andodeki/makepad?rev=a79f0dce4d477e2232344facca0798d3f25043ec#a79f0dce4d477e2232344facca0798d3f25043ec" - -[[package]] -name = "zerocopy" -version = "0.8.55" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b5a105cd7b140f6eeec8acff2ea38135d3cab283ada58540f629fe51e46696eb" -dependencies = [ - "zerocopy-derive 0.8.55", -] - -[[package]] -name = "zerocopy-derive" -version = "0.7.35" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.119", -] - -[[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" - -[[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" diff --git a/crates/robius-sms/src/sys/android/receivers.rs b/crates/robius-sms/src/sys/android/receivers.rs index 52dae46..e3d170d 100644 --- a/crates/robius-sms/src/sys/android/receivers.rs +++ b/crates/robius-sms/src/sys/android/receivers.rs @@ -29,8 +29,10 @@ pub extern "C" fn Java_robius_sms_SmsBootReceiver_rustRestoreSchedules<'a>( _: JObject<'a>, context: JObject<'a>, ) { - let mut env = env; - let _ = super::schedule::restore_all_schedules(&mut env, &context); + unsafe { + let mut env = env; + let _ = super::schedule::restore_all_schedules(&mut env, &context); + } } pub(crate) fn ensure_loaded(env: &mut JNIEnv<'_>) -> Result<()> { diff --git a/crates/robius-sms/src/sys/android/schedule.rs b/crates/robius-sms/src/sys/android/schedule.rs index 5124526..980b606 100644 --- a/crates/robius-sms/src/sys/android/schedule.rs +++ b/crates/robius-sms/src/sys/android/schedule.rs @@ -34,7 +34,7 @@ pub(crate) fn cancel_scheduled_sms(id: i32) -> Result<()> { } pub(crate) fn list_scheduled_sms() -> Result> { - robius_android_env::with_activity(load_schedules) + robius_android_env::with_activity(|env, activity| load_schedules(env, activity)) .map_err(|_| Error::AndroidEnvironment) .and_then(|x| x) } diff --git a/crates/robius-sms/src/sys/android/thread.rs b/crates/robius-sms/src/sys/android/thread.rs index 31d16b3..e1d6738 100644 --- a/crates/robius-sms/src/sys/android/thread.rs +++ b/crates/robius-sms/src/sys/android/thread.rs @@ -6,7 +6,7 @@ use jni::{ use crate::{Error, Result, SmsThread}; pub(crate) fn list_threads() -> Result> { - robius_android_env::with_activity(list_threads_inner) + robius_android_env::with_activity(|env, activity| list_threads_inner(env, activity)) .map_err(|_| Error::AndroidEnvironment) .and_then(|x| x) }