Skip to content

build from source issues #96

@egnrse

Description

@egnrse

I wanted to maybe package this program for the AUR, but I was not able to compile it successfully.

Firstly, the command pnpm run tauri build does not exist for me. Did you mean pnpm tauri build or pnpm run tauri:build?

Assuming one of the above, I still cant run this on Arch Linux and Windows 11 (failing with different errors though).

Arch Linux

System Stats
  • OS: Arch Linux x86_64 (kernel: Linux 6.19.10-arch1-1)
  • Compositor: Hyprland 0.54.3 (Wayland)
  • rustc 1.94.1 (e408947bf 2026-03-25)
$ pnpm version
{
  'quantframe-react': '1.2.0',
  npm: '11.12.1',
  node: '25.8.2',
  acorn: '8.16.0',
  ada: '3.4.4',
  amaro: '1.1.8',
  ares: '1.34.6',
  brotli: '1.2.0',
  cldr: '48.0',
  icu: '78.3',
  lief: '0.17.0',
  llhttp: '9.3.1',
  merve: '1.2.0',
  modules: '141',
  napi: '10',
  nbytes: '0.1.3',
  ncrypto: '0.0.1',
  nghttp2: '1.68.1',
  nghttp3: '',
  ngtcp2: '',
  openssl: '3.6.1',
  simdjson: '4.4.2',
  simdutf: '7.3.3',
  sqlite: '3.52.0',
  tz: '2026a',
  undici: '7.24.4',
  unicode: '17.0',
  uv: '1.52.1',
  uvwasi: '0.0.23',
  v8: '14.1.146.11-node.24',
  zlib: '1.3.2',
  zstd: '1.5.7'
}

It compiles (mostly), but does not run.

  • the binary and .deb compiles, but it fails to build the AppImage (can be ignored though)
Bundling quantframe_1.3.4_amd64.AppImage (/home/elia/Documents/Packages/quantframe-git/src/QuantFrame-git/src-tauri/target/release/bundle/appimage/quantframe_1.3.4_amd64.AppImage)
       Error failed to bundle project: error running appimage.sh
  • running the binary instantly crashes:
$ RUST_BACKTRACE=1 GDK_BACKEND=x11 ./src-tauri/target/debug/Quantframe
** (Quantframe:1990262): WARNING **: 00:01:37.962: webkit_settings_set_enable_offline_web_application_cache is deprecated and does nothing.
[2026-03-28 23:01:37] [INFO] [Setup:Logs] Clearing logs older then 7 days
[2026-03-28 23:01:37] [INFO] [Setup:Database] Creating a backup of the database file
[2026-03-28 23:01:37] [CRITICAL] [Panic] Panic: PanicHookInfo { payload: Any { .. }, location: Location { file: "src/main.rs", line: 108, column: 37 }, can_unwind: true, force_no_backtrace: false }
$ RUST_BACKTRACE=1 ./src-tauri/target/debug/Quantframe
(Quantframe:2107126): Gtk-WARNING **: 00:06:43.100: cannot open display: :0
$ GDK_BACKEND=x11 ./usr/bin/Quantframe
[2026-03-28 23:12:37] [0.0001] [INFO] [Setup:Database] Creating a backup of the database file
[2026-03-28 23:12:37] [0.0016] [INFO] [Setup:Database] Database migrations applied successfully
[2026-03-28 23:12:38] [0.2021] [CRITICAL] [AppState:Validate] User tokens are empty, please login first. | Location: src/app/client.rs:443:17
[2026-03-28 23:12:38] [0.2025] [WARNING] [Cache:Client] User is not verified or banned
[2026-03-28 23:12:38] [0.2027] [WARNING] [FileWatcher] File not found: /home/elia/.local/share/Warframe/EE.log, retrying... in 5 seconds
Gdk-Message: 00:12:38.267: Error 71 (Protocol error) dispatching to Wayland display.
  • the binaries need the pkg webkit2gtk-4.1, which completely break compiling the project
    I need to uninstall the pkg and run cargo update in the ./src-tauri folder, to be able to compile it again.
compile error with the pkg installed
error[E0599]: no method named `set_enable_webgl` found for struct `webkit2gtk::Settings` in the current scope
    --> /home/elia/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wry-0.24.11/src/webview/webkitgtk/mod.rs:278:16
     |
 278 |       settings.set_enable_webgl(true);
     |                ^^^^^^^^^^^^^^^^
     |
    ::: /home/elia/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/webkit2gtk-0.18.2/src/auto/settings.rs:1222:6
     |
1222 |   fn set_enable_webgl(&self, enabled: bool);
     |      ---------------- the method is available for `webkit2gtk::Settings` here
     |
     = help: items from traits can only be used if the trait is in scope
help: there is a method `enables_webgl` with a similar name, but with different arguments
    --> /home/elia/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/webkit2gtk-0.18.2/src/auto/settings.rs:992:3
     |
 992 |   fn enables_webgl(&self) -> bool;
     |   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
help: trait `SettingsExt` which provides `set_enable_webgl` is implemented but not in scope; perhaps you want to import it
     |
   5 + use webkit2gtk::SettingsExt;
     |

error[E0599]: no method named `set_enable_webaudio` found for struct `webkit2gtk::Settings` in the current scope
    --> /home/elia/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wry-0.24.11/src/webview/webkitgtk/mod.rs:279:16
     |
 279 |       settings.set_enable_webaudio(true);
     |                ^^^^^^^^^^^^^^^^^^^
     |
    ::: /home/elia/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/webkit2gtk-0.18.2/src/auto/settings.rs:1219:6
     |
1219 |   fn set_enable_webaudio(&self, enabled: bool);
     |      ------------------- the method is available for `webkit2gtk::Settings` here
     |
     = help: items from traits can only be used if the trait is in scope
help: there is a method `enables_webaudio` with a similar name, but with different arguments
    --> /home/elia/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/webkit2gtk-0.18.2/src/auto/settings.rs:988:3
     |
 988 |   fn enables_webaudio(&self) -> bool;
     |   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
help: trait `SettingsExt` which provides `set_enable_webaudio` is implemented but not in scope; perhaps you want to import it
     |
   5 + use webkit2gtk::SettingsExt;
     |

   Compiling zstd v0.13.3
error[E0599]: no method named `set_javascript_can_access_clipboard` found for struct `webkit2gtk::Settings` in the current scope
    --> /home/elia/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wry-0.24.11/src/webview/webkitgtk/mod.rs:283:18
     |
 283 |         settings.set_javascript_can_access_clipboard(true);
     |                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
    ::: /home/elia/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/webkit2gtk-0.18.2/src/auto/settings.rs:1241:6
     |
1241 |   fn set_javascript_can_access_clipboard(&self, enabled: bool);
     |      ----------------------------------- the method is available for `webkit2gtk::Settings` here
     |
     = help: items from traits can only be used if the trait is in scope
help: there is a method `is_javascript_can_access_clipboard` with a similar name, but with different arguments
    --> /home/elia/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/webkit2gtk-0.18.2/src/auto/settings.rs:1016:3
     |
1016 |   fn is_javascript_can_access_clipboard(&self) -> bool;
     |   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
help: trait `SettingsExt` which provides `set_javascript_can_access_clipboard` is implemented but not in scope; perhaps you want to import it
     |
   5 + use webkit2gtk::SettingsExt;
     |

   Compiling actix-web-codegen v4.3.0
error[E0599]: no method named `set_enable_offline_web_application_cache` found for struct `webkit2gtk::Settings` in the current scope
    --> /home/elia/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wry-0.24.11/src/webview/webkitgtk/mod.rs:287:16
     |
 287 |       settings.set_enable_offline_web_application_cache(true);
     |                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
    ::: /home/elia/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/webkit2gtk-0.18.2/src/auto/settings.rs:1188:6
     |
1188 |   fn set_enable_offline_web_application_cache(&self, enabled: bool);
     |      ---------------------------------------- the method is available for `webkit2gtk::Settings` here
     |
     = help: items from traits can only be used if the trait is in scope
help: there is a method `enables_offline_web_application_cache` with a similar name, but with different arguments
    --> /home/elia/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/webkit2gtk-0.18.2/src/auto/settings.rs:948:3
     |
 948 |   fn enables_offline_web_application_cache(&self) -> bool;
     |   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
help: trait `SettingsExt` which provides `set_enable_offline_web_application_cache` is implemented but not in scope; perhaps you want to import it
     |
   5 + use webkit2gtk::SettingsExt;
     |

error[E0599]: no method named `set_enable_page_cache` found for struct `webkit2gtk::Settings` in the current scope
    --> /home/elia/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wry-0.24.11/src/webview/webkitgtk/mod.rs:288:16
     |
 288 |       settings.set_enable_page_cache(true);
     |                ^^^^^^^^^^^^^^^^^^^^^
     |
    ::: /home/elia/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/webkit2gtk-0.18.2/src/auto/settings.rs:1191:6
     |
1191 |   fn set_enable_page_cache(&self, enabled: bool);
     |      --------------------- the method is available for `webkit2gtk::Settings` here
     |
     = help: items from traits can only be used if the trait is in scope
help: there is a method `enables_page_cache` with a similar name, but with different arguments
    --> /home/elia/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/webkit2gtk-0.18.2/src/auto/settings.rs:952:3
     |
 952 |   fn enables_page_cache(&self) -> bool;
     |   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
help: trait `SettingsExt` which provides `set_enable_page_cache` is implemented but not in scope; perhaps you want to import it
     |
   5 + use webkit2gtk::SettingsExt;
     |

error[E0599]: no method named `set_user_agent` found for struct `webkit2gtk::Settings` in the current scope
    --> /home/elia/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wry-0.24.11/src/webview/webkitgtk/mod.rs:291:16
     |
 291 |       settings.set_user_agent(attributes.user_agent.as_deref());
     |                ^^^^^^^^^^^^^^
     |
    ::: /home/elia/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/webkit2gtk-0.18.2/src/auto/settings.rs:1279:6
     |
1279 |   fn set_user_agent(&self, user_agent: Option<&str>);
     |      -------------- the method is available for `webkit2gtk::Settings` here
     |
     = help: items from traits can only be used if the trait is in scope
help: there is a method `user_agent` with a similar name, but with different arguments
    --> /home/elia/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/webkit2gtk-0.18.2/src/auto/settings.rs:1066:3
     |
1066 |   fn user_agent(&self) -> Option<glib::GString>;
     |   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
help: trait `SettingsExt` which provides `set_user_agent` is implemented but not in scope; perhaps you want to import it
     |
   5 + use webkit2gtk::SettingsExt;
     |

error[E0599]: no method named `set_enable_developer_extras` found for struct `webkit2gtk::Settings` in the current scope
    --> /home/elia/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wry-0.24.11/src/webview/webkitgtk/mod.rs:294:18
     |
 294 |         settings.set_enable_developer_extras(true);
     |                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
    ::: /home/elia/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/webkit2gtk-0.18.2/src/auto/settings.rs:1126:6
     |
1126 |   fn set_enable_developer_extras(&self, enabled: bool);
     |      --------------------------- the method is available for `webkit2gtk::Settings` here
     |
     = help: items from traits can only be used if the trait is in scope
help: there is a method `enables_developer_extras` with a similar name, but with different arguments
    --> /home/elia/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/webkit2gtk-0.18.2/src/auto/settings.rs:870:3
     |
 870 |   fn enables_developer_extras(&self) -> bool;
     |   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
help: trait `SettingsExt` which provides `set_enable_developer_extras` is implemented but not in scope; perhaps you want to import it
     |
   5 + use webkit2gtk::SettingsExt;
     |

For more information about this error, try `rustc --explain E0599`.
error: could not compile `wry` (lib) due to 7 previous errors
warning: build failed, waiting for other jobs to finish...
  • the AppImage seems to work though

Windows 11

In windows i get a linking issue.

I am using Powershell 7.

Details
error: linking with `link.exe` failed: exit code: 1120
  |
  = note: "C:\\Program Files (x86)\\Microsoft Visual Studio\\18\\BuildTools\\VC\\Tools\\MSVC\\14.50.35717\\bin\\HostX64\\x64\\link.exe" "/NOLOGO" "C:\\Users\\elia\\Documents\\quantframe-react\\src-tauri\\target\\debug\\deps\\rustcFZzH85\\symbols.o" "<257 object files omitted>" "C:\\Users\\elia\\Documents\\quantframe-react\\src-tauri\\target\\debug\\deps/{libtauri_plugin_websocket-ac6f7bdd5048f87c,libtokio_tungstenite-628a9962344221f2,libtungstenite-9096dbd6468eaef8,libdata_encoding-f4ff024e568390bc,librand-ffec2cba2e47c4f6,librand_chacha-7520e4672982b974,librand_core-ce4dc9dd55688917,libzerocopy-745c49b0a970e2ed,libthiserror-9bb10888f4aa6074,libhttp-ae5114d60f1b25aa,libactix_cors-74a8e01ad68fab2b,libactix_web-d8829f261448c6d4,libimpl_more-c3d33078d0067856,libactix_server-e59fe879c7d02239,libactix_router-5d8f924e21ffa389,libcookie-6986c0595773552b,libactix_http-015b9f1f2be8f65d,libbrotli-2ec9011521b77954,libhttpdate-2c94269f43af4c0b,liblocal_channel-f06625437a4bdb93,libbytestring-4d775f7318c12a0f,liblanguage_tags-60f18d1f05522b7f,libzstd-0fba83180918566a,libzstd_safe-f4f9edbd898acca2,libactix_service-c4d82ccee346203c,libactix_codec-b6f4ef598d4af6e0,libbitflags-9b2594db7d0834e5,libactix_utils-f05f653ef307db02,liblocal_waker-d23f662a024c7e53,libactix_rt-81c6f261a68f532b,libsha256-485255f97b2b52cb,libhex-0dcbc79a6cc00104,libeyre-8427f7afdb68e146,libindenter-615b64efdb75e1f4,libtauri-8562c8b78782bc25,libnotify_rust-486159ecba88ca11,libtauri_winrt_notification-6a212a5e25666628,libquick_xml-d16db833d05bd97b,libwindows-33aeacb679cf7285,libwindows_core-bc8a024e0528c656,libwindows_result-7cf7b477865cd0be,libopen-f68ea36ea1fbff33,libwindows_sys-196e9f3a29b61c75,libdirs_next-0eec4b7e81bcda62,libdirs_sys_next-61d4483b9a647a25,libwinapi-6c8b35caed7e9af9,libzip-2986c48041b05b87,libpbkdf2-d28ea3dd4c428199,libpassword_hash-d5b0dbd3a7dddc0a,libbase64ct-f3fb3e2b2bcdd1e9,libzstd-fb814214db532e7f,libzstd_safe-7de51d6e0feeae2b,libzstd_sys-5b92648d7abf9ff5,libbzip2-0a2747ad61de1a4b,libbzip2_sys-78ff86739918c55b,libaes-d906a74cf7fe5870,libcipher-d369ec80167e711c,libinout-3ab81c6d438faaf2,libsha1-4757bfd7fb8ae805,libhmac-bf9ea9de5ee8903a,libconstant_time_eq-a445f34a07c80932,libtar-dc03a5caa55b44c3,libfiletime-3f5875b7b87fbab5,libflate2-2906b275b638cebe,libminiz_oxide-9d1edc1a5b564881,libadler2-19e8bbebc73d04ef,libcrc32fast-34231c0f35dd3559,librfd-f5aa632f540bd976,libwindows-dfe636b7a4b5d8b5,libtauri_runtime_wry-7071432b0b9ff284,libwry-e041b67dac06374f,libtao-ddf1e71a1e5ab7fa,liblibc-6e4c3398d29ecafe,libunicode_segmentation-b88326b5e2b30515,libcrossbeam_channel-637d1b0934cb8995,libinstant-3c05ae382979e961,libwebview2_com-d8dcee3c0aaddade,libwebview2_com_sys-976fa9daae28b1a8,libminisign_verify-956f93e38504c4d8,libbase64-00384957a60007b4,libstate-74dd48139e822104,libanyhow-e581bd8752f8167b,libtauri_runtime-b558cadbbb8750ae,libwindows-2d2418be56760ebd,libhttp_range-147fea8635949ef6,libtauri_utils-3db2ddfbdd6dc3c7,libdunce-6479b6b5c4938cba,libwindows_version-961a5602d2e28e47,libwindows_link-06c7b4a14f334845,libinfer-6d7a7d8dc448a655,libcfb-54ab8d208d698f9e,libbrotli-70d3862623e815e0,libbrotli_decompressor-75373cd2dae5a2d0,liballoc_stdlib-99a00925db8f1695,liballoc_no_stdlib-f59cd5a6c5f96f5e,libkuchikiki-ab78d501626a9c6f,libselectors-abb787e736a087fd,libthin_slice-c5faf5c9fa71d617,libservo_arc-769f0c110a7ca2a9,libnodrop-ddae8b3873feafa8,libfxhash-7535de093d478143,libbitflags-9140dbc4a75465d8,libcssparser-418b970e49a9cd04,libitoa-a76cde3a098f4af1,libdtoa_short-d3bbe2699c396866,libdtoa-1040e18efc9f7fee,libphf-0f4231bcf00d20ea,libphf_shared-74ade6d218c16d1d,libindexmap-f11d430dca0c8ce4,libhashbrown-88ee056032342edd,libmatches-a3ac79f6c62fac50,libhtml5ever-793057d1e94de3c7,libmarkup5ever-c8c100a5b2dab01f,libstring_cache-722826643dc0c836,libprecomputed_hash-cb81138013bae2fe,libphf-5b27e0ab0ccbcac3,libphf_shared-a5389725ff18e565,libsiphasher-00f77c51aa38fbbd,libtendril-c781fe00c9aa5764,libutf8-4450c8cf64b5911f,libfutf-346e33fad0c7d4f3,libdebug_unreachable-698beeb7ad9b7576,libmac-95331df9e7d9c7e5,libjson_patch-ad24b81208574384,libjsonptr-137c99c88569b8b7,libserde_with-683bd1a0983db78d,libphf-a3ec482c43ee0378,libphf_shared-832957eeed7819b9,libsiphasher-8040ccab621dacf4,libraw_window_handle-56257d71c5eaf7ef,librand-d001322f6d166b2c,librand_chacha-85f60bab73f31d09,libppv_lite86-5edb89a56d350c23,librand_core-187edeb43f2c3e20,libsemver-81969f25636c5c05,libserialize_to_javascript-79556b82e868cec7,libreqwest-9776af594c351695,librustls_pemfile-86965399913e0d1a,libhyper_tls-789466b18e5e6a1e,libserde_urlencoded-687c8ce779ccaae8,libbase64-78637503e05c6c20,libwinreg-6111969bbb439080,libwindows_sys-4eb9f2f13529a7bf,libwindows_targets-92db3d8fc0309969,libipnet-ce9a1ce7699dc77a,libtokio_native_tls-7951bbcf5a4a010c,libmime-a962d4c6a07196aa,libencoding_rs-f918518535c3cb2c,libhyper-d4afa9efea2002fb,libwant-82bed3fd0327e222,libtry_lock-c9043eadb5863ffd,libhttparse-99da9d421d53c024,libh2-6b606fe347382b2c,libtower_service-5bfa3f3a5a7cf07a,libtokio_util-00bcccc143fe9b83,libsync_wrapper-8564bfa79876c1c7,libhttp_body-ada93f38561333bf,libhttp-57a0fbe437e88f1e,libfnv-39571206bdee82c0,libignore-f3f7c773ac544d16,libwalkdir-a5e140a8b8f0b0c1,libsame_file-bd8122457492dfc5,libcrossbeam_deque-8c1383e1c4600c98,libcrossbeam_epoch-05b3f58eb30d65eb,libwinapi_util-58f70289c1c47dcf,libglobset-feb643327d4afe9d,libbstr-2c1e353a28929819,libtempfile-d052fa45db08d20c,libfastrand-6e2d7e01cc16e436,libservice-6c3543dbc086e295,libentity-15d54630f5298d8a,libmigration-b8ea694c7843d058,libsea_orm_migration-fe7b52839792351d,libsea_schema-b794a2bd43a2a34e,libsea_orm_cli-d2024530082e6a58,libglob-97163b996eacef3c,libsea_orm-7197b5b460aceddc,libouroboros-f9d9c1e5382cf87f,libstatic_assertions-1e2abc0a77ad5354,libaliasable-2c9897b7dd352b60,libasync_stream-ddf8d3843b89cea0,libstrum-730e58a15c69f646,libsea_query_binder-7f4130a0c5d4458e,libsqlx-f685d70d06d22f30,libsqlx_sqlite-43b0a2fc14fb2832,libfutures_executor-52b5cb2f3da24eef,libflume-815d2e90785d4a01,libspin-d890803f8caf1da5,liburlencoding-94e02348a3e5d1f1,libfutures_intrusive-d2e4531917bca3fe,liblibsqlite3_sys-89a392bbbba9ee02,libatoi-713e5e4124a4116f,libsqlx_core-7b6082a4acf37592,libthiserror-003eee7b86385cb3,libsha2-33af423ae1e9fd30,libcpufeatures-477cf83ae86727e7,libdigest-4a4b02048b0fd9b0,libsubtle-fbcc2cdc46500e81,libblock_buffer-ac09fb14674bda3c,libcrypto_common-10a1b4851722367d,libgeneric_array-9dbcfb5990628384,libtypenum-835487e8b30e4017,libnative_tls-c16773f2a5ab32ca,libschannel-949f017ffd5fe0fc,libsqlformat-6da04b2591f9505e,libunicode_categories-efe41605c4f7e078,libnom-f00a5cec688c6e04,libtokio-561343b43a0e9186,libsocket2-4679c6575ee6abae,libmio-316a5c212a2127da,libwindows_sys-c26a99cd57e86cff,libparking_lot-a1ff53a08e0eae23,libparking_lot_core-0a7ecc7977cafb25,liblock_api-339c832adf34b63d,libscopeguard-bbf2bc2b401ee9c7,libbytes-ca1f4ba7b3fb1859,libhashlink-1b32928cd8110fe1,libhashbrown-16c7acba948b919b,libahash-670071fd1ccbbd1f,libgetrandom-6598945db9ae7901,libzerocopy-d42d12adc1680c4d,libbyteorder-436e3834e4390f18,liballocator_api2-690a0e1c79bef924,libcrossbeam_queue-61dcd4d9cddc4eff,libcrossbeam_utils-3bfa44903d5927af,libeither-216834bbbce69c1a,libevent_listener-06f69eb4dc28e6b4,liburl-b772af0feb0e35e5,libidna-e728c7b1b84e3469,libidna_adapter-97a2f2f57e201f09,libicu_normalizer-32767ae0bf29a6fe,libicu_normalizer_data-b8a6a1779b3ad074,libwrite16-8bb153b20e408a7b,libutf8_iter-f228e7e8efe56842,libutf16_iter-38ec60cb27a86bd9,libsmallvec-5e8ae2af7e27d207,libicu_properties-d66f661e297d3194,libicu_properties_data-e0e5b57f333e1181,libicu_locid_transform-dbc0932e6a6277f9,libicu_locid_transform_data-6a94fed01d94452c,libicu_collections-430773cac1b81e0b,libicu_provider-47dff48d88db9656,libicu_locid-2bc3b49e2b46e3e1,liblitemap-8265db1bd3307b45,libtinystr-cca332161992b2be,libzerovec-2cdf6ca5b3041ddf,libwriteable-117b3f602656cde5,libyoke-1ced11825148dc83,libzerofrom-579dc4cc7d32d2e7,libstable_deref_trait-32055de2db953274,libform_urlencoded-1cbfa37bd7317049,libpercent_encoding-40a94bb38878cd1d,libsea_query-b90650978a9df2b3,libordered_float-41fdfd9c9baec3e8,libuuid-a747171aa57b2548,libgetrandom-fbcea26cd57e014f,libbigdecimal-39087b93d650ad90,libnum_bigint-688f600c19af57f6,libnum_integer-097d365e9e21e8d2,librust_decimal-93bcb9be6a1b14de,libarrayvec-7292719946941a73,libtime-554b77de76a20b8c,libtime_core-9f43f2d86728e076,libnum_conv-ef408814a50a040c,libderanged-e6b10eebd1341599,libpowerfmt-3b1cc4c5d9f5fa9c,libchrono-27c177c3acf1359e,libnum_traits-62954ffc4bb26caf,libserde_json-6a160381cab1b12e,libitoa-85a1515359c72608,libryu-4d70265bdbc02a45,libindexmap-0e9d439c8b8b86e0,libequivalent-dc36cde4901cc6a6,libhashbrown-17177fb78e1d4d0d,libserde-15dc30b605f20036,libfutures-237af08c2404be98,libfutures_util-b0a9dd1137114c9e,libfutures_io-622f08839a42a333,libslab-7d95b77e7040d746,libfutures_channel-88e8c359adb49f58,libfutures_sink-796f963ca782e3b7,libfutures_task-000ada31675e55f2,libpin_utils-7d2f4d70d17baa95,libfutures_core-24c453de8c6a94dd,libtracing_subscriber-c8e6146bd31a1be6,libsharded_slab-85cfb3eb392c979c,liblazy_static-9fac0106aed43c0e,libmatchers-341919e0af993b1e,libregex_automata-185463a92598edbe,libregex_syntax-b21b819448c7e7c9,libregex-ea9933c30a8976c2,libregex_automata-df47994c3a247486,libaho_corasick-d86e5ce73b9fc1e4,libmemchr-89e39ab76ce59599,libregex_syntax-1303aeefb5bf45db,libtracing-e06793ff25e9f8e0,liblog-4960d4149db96a14,libvalue_bag-8f307fc321232f6d,libpin_project_lite-999917a4105833f7,libthread_local-4d1261454ce963a2,libcfg_if-d864a49e8b5bde08,libtracing_core-25ce3a0e4e077b9c,libdotenvy-8f762d4bb049b429,libclap-7bd13f81e2d04a8d,libclap_builder-424c21963292ca2d,libstrsim-931cf441f3fdad85,libanstream-24f3f81994ac348b,libanstyle_query-dc63a8b95e275323,libis_terminal_polyfill-32a22aea8c5b14e6,libanstyle_wincon-abe5f9f48b5de023,libonce_cell-030c2d7d6243fc9a,libwindows_sys-9204c86991a16c1c,libwindows_targets-c5947a7efeb48f22,libcolorchoice-e6024e34d4646012,libanstyle_parse-d7ba6674e0175123,libutf8parse-c5ebf78922d60958,libclap_lex-5ad29ec4d97f0d84,libanstyle-403183571b4d2341}.rlib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib/{libstd-*,libpanic_unwind-*,libcfg_if-*,libwindows_targets-*,librustc_demangle-*,libstd_detect-*,libhashbrown-*,librustc_std_workspace_alloc-*,libunwind-*,librustc_std_workspace_core-*,liballoc-*,libcore-*,libcompiler_builtins-*}.rlib" "C:\\Users\\elia\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.52.6\\lib\\windows.0.52.0.lib" "C:\\Users\\elia\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.52.6\\lib\\windows.0.52.0.lib" "C:\\Users\\elia\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.52.6\\lib\\windows.0.52.0.lib" "C:\\Users\\elia\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.42.2\\lib\\windows.lib" "advapi32.lib" "cfgmgr32.lib" "gdi32.lib" "kernel32.lib" "msimg32.lib" "ole32.lib" "opengl32.lib" "shell32.lib" "user32.lib" "winspool.lib" "C:\\Users\\elia\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.42.2\\lib\\windows.lib" "legacy_stdio_definitions.lib" "C:\\Users\\elia\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.42.2\\lib\\windows.lib" "C:\\Users\\elia\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.48.5\\lib\\windows.0.48.5.lib" "C:\\Users\\elia\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.52.6\\lib\\windows.0.52.0.lib" "C:\\Users\\elia\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.52.6\\lib\\windows.0.52.0.lib" "bcrypt.lib" "advapi32.lib" "C:\\Users\\elia\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.52.6\\lib\\windows.0.52.0.lib" "C:\\Users\\elia\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.52.6\\lib\\windows.0.52.0.lib" "C:\\Users\\elia\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.52.6\\lib\\windows.0.52.0.lib" "kernel32.lib" "kernel32.lib" "kernel32.lib" "ntdll.lib" "userenv.lib" "ws2_32.lib" "dbghelp.lib" "/defaultlib:msvcrt" "/NXCOMPAT" "/LIBPATH:C:\\Users\\elia\\Documents\\quantframe-react\\src-tauri\\target\\debug\\build\\Quantframe-3d9e886e23e7d40a\\out" "/LIBPATH:C:\\Users\\elia\\Documents\\quantframe-react\\src-tauri\\target\\debug\\build\\zstd-sys-219ca2252e50f9d5\\out" "/LIBPATH:C:\\Users\\elia\\Documents\\quantframe-react\\src-tauri\\target\\debug\\build\\libsqlite3-sys-90b6b18569832277\\out" "/LIBPATH:C:\\Users\\elia\\Documents\\quantframe-react\\src-tauri\\target\\debug\\build\\webview2-com-sys-59db35f48fa3fb36\\out\\x64" "/LIBPATH:C:\\Users\\elia\\Documents\\quantframe-react\\src-tauri\\target\\debug\\build\\bzip2-sys-b87787d32661fc79\\out\\lib" "/LIBPATH:C:\\Users\\elia\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.52.6\\lib" "/LIBPATH:C:\\Users\\elia\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.48.5\\lib" "/LIBPATH:C:\\Users\\elia\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.42.2\\lib" "/LIBPATH:C:\\Users\\elia\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.37.0\\lib" "/LIBPATH:C:\\Users\\elia\\.cargo\\registry\\src\\index.crates.io-1949cf8c6b5b557f\\windows_x86_64_msvc-0.39.0\\lib" "/OUT:C:\\Users\\elia\\Documents\\quantframe-react\\src-tauri\\target\\debug\\deps\\Quantframe.exe" "/OPT:REF,NOICF" "/DEBUG" "/PDBALTPATH:%_PDB%" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\intrinsic.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\liballoc.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libcore.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libstd.natvis" "C:\\Users\\elia\\Documents\\quantframe-react\\src-tauri\\target\\debug\\build\\Quantframe-3d9e886e23e7d40a\\out\\resource.lib" "/NODEFAULTLIB:libvcruntimed.lib" "/NODEFAULTLIB:vcruntime.lib" "/NODEFAULTLIB:vcruntimed.lib" "/NODEFAULTLIB:libcmtd.lib" "/NODEFAULTLIB:msvcrt.lib" "/NODEFAULTLIB:msvcrtd.lib" "/NODEFAULTLIB:libucrt.lib" "/NODEFAULTLIB:libucrtd.lib" "/DEFAULTLIB:libcmt.lib" "/DEFAULTLIB:libvcruntime.lib" "/DEFAULTLIB:ucrt.lib"
  = note: some arguments are omitted. use `--verbose` to show all linker arguments
  = note: libzstd_sys-5b92648d7abf9ff5.rlib(88f362f13b0528ed-huf_decompress.o) : error LNK2001: unresolved external symbol ___chkstk_ms
          libbzip2_sys-78ff86739918c55b.rlib(a9dc8ba631b1466a-huffman.o) : error LNK2001: unresolved external symbol ___chkstk_ms
          liblibsqlite3_sys-89a392bbbba9ee02.rlib(c877a2978823c39d-sqlite3.o) : error LNK2001: unresolved external symbol ___chkstk_ms
          libzstd_sys-5b92648d7abf9ff5.rlib(3f451b2306bc13c8-zstd_v02.o) : error LNK2001: unresolved external symbol ___chkstk_ms
          libzstd_sys-5b92648d7abf9ff5.rlib(3f451b2306bc13c8-zstd_v03.o) : error LNK2001: unresolved external symbol ___chkstk_ms
          libzstd_sys-5b92648d7abf9ff5.rlib(3f451b2306bc13c8-zstd_v04.o) : error LNK2001: unresolved external symbol ___chkstk_ms
          libzstd_sys-5b92648d7abf9ff5.rlib(88f362f13b0528ed-zstd_decompress_block.o) : error LNK2001: unresolved external symbol ___chkstk_ms
          libzstd_sys-5b92648d7abf9ff5.rlib(3f451b2306bc13c8-zstd_v05.o) : error LNK2001: unresolved external symbol ___chkstk_ms
          libzstd_sys-5b92648d7abf9ff5.rlib(3f451b2306bc13c8-zstd_v06.o) : error LNK2001: unresolved external symbol ___chkstk_ms
          libzstd_sys-5b92648d7abf9ff5.rlib(3f451b2306bc13c8-zstd_v07.o) : error LNK2001: unresolved external symbol ___chkstk_ms
          libzstd_sys-5b92648d7abf9ff5.rlib(3f451b2306bc13c8-zstd_v01.o) : error LNK2001: unresolved external symbol ___chkstk_ms
          libzstd_sys-5b92648d7abf9ff5.rlib(fb80479a5fb81f6a-zstd_compress.o) : error LNK2001: unresolved external symbol ___chkstk_ms
          libzstd_sys-5b92648d7abf9ff5.rlib(a6c81c75fc82913a-zdict.o) : error LNK2001: unresolved external symbol ___chkstk_ms
          libzstd_sys-5b92648d7abf9ff5.rlib(fb80479a5fb81f6a-hist.o) : error LNK2001: unresolved external symbol ___chkstk_ms
          libzstd_sys-5b92648d7abf9ff5.rlib(fb80479a5fb81f6a-huf_compress.o) : error LNK2001: unresolved external symbol ___chkstk_ms
          libzstd_sys-5b92648d7abf9ff5.rlib(a6c81c75fc82913a-zdict.o) : error LNK2019: unresolved external symbol __mingw_vfprintf referenced in function fprintf
          libzstd_sys-5b92648d7abf9ff5.rlib(a6c81c75fc82913a-fastcover.o) : error LNK2001: unresolved external symbol __mingw_vfprintf
          libzstd_sys-5b92648d7abf9ff5.rlib(a6c81c75fc82913a-cover.o) : error LNK2001: unresolved external symbol __mingw_vfprintf
          C:\Users\elia\Documents\quantframe-react\src-tauri\target\debug\deps\Quantframe.exe : fatal error LNK1120: 2 unresolved externals


warning: `Quantframe` (bin "Quantframe") generated 28 warnings
error: could not compile `Quantframe` (bin "Quantframe") due to 1 previous error; 28 warnings emitted
       Error failed to build app: failed to build 

other notes

Does it not make more sense to disable the updater than just deleting the pubkey?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions