You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a Tauri app that uses Tauri Specta to generate bindings for my plugins. On Linux and MacOS everything works fine.
But on Windows I cannot generate the bindings as it fails with the following error: (exit code: 0xc0000139, STATUS_ENTRYPOINT_NOT_FOUND)
To be sure that I have an issue with this lib, I cloned the repo and ran its tests, but it failed with the same error (I also tried to run the tests on another Windows machine, and it also failed).
I'm pretty sure it's not an issue with Tauri Specta itself, but I have no clue how to fix this kind of error.
Any help is welcomed !
Reproduction
Clone the Tauri Specta repository and try to run its tests on a Windows machine.
Expected behavior
It should raise this error when trying to run the tests: (exit code: 0xc0000139, STATUS_ENTRYPOINT_NOT_FOUND)
$ RUST_BACKTRACE=1 cargo test --all --all-features
warning: use of deprecated function `deprecated`: This is a deprecated function
--> examples\app\src-tauri\src/main.rs:126:13
|
126 | deprecated,
| ^^^^^^^^^^
|
= note: `#[warn(deprecated)]` on by default
warning: use of deprecated function `deprecated`: This is a deprecated function
--> examples\app\src-tauri\src/main.rs:126:13
|
126 | deprecated,
| ^^^^^^^^^^
warning: field `0` is never read
--> examples\app\src-tauri\src/main.rs:111:19
|
111 | pub struct Custom(String);
| ------ ^^^^^^
| |
| field in this struct
|
= help: consider removing this field
= note: `#[warn(dead_code)]` on by default
warning: field `a` is never read
--> examples\app\src-tauri\src/main.rs:115:5
|
114 | pub struct Testing {
| ------- field in this struct
115 | a: String,
| ^
warning: `tauri-specta-example-app` (bin "tauri-specta-example-app" test) generated 4 warnings
Finished `test` profile [unoptimized + debuginfo] target(s) in 0.50s
Running unittests src\lib.rs (target\debug\deps\tauri_plugin_specta_example-b9e9267bbe2d2bf0.exe)
error: test failed, to rerun pass `-p tauri-plugin-specta-example --lib`
Caused by:
process didn't exit successfully: `C:\Users\***\tauri-specta\target\debug\deps\tauri_plugin_specta_example-b9e9267bbe2d2bf0.exe` (exit code: 0xc0000139, STATUS_ENTRYPOINT_NOT_FOUND)
note: test exited abnormally; to see the full output pass --nocapture to the harness.
Additional context
No response
The text was updated successfully, but these errors were encountered:
Describe the bug
I have a Tauri app that uses Tauri Specta to generate bindings for my plugins. On Linux and MacOS everything works fine.
But on Windows I cannot generate the bindings as it fails with the following error: (exit code: 0xc0000139, STATUS_ENTRYPOINT_NOT_FOUND)
To be sure that I have an issue with this lib, I cloned the repo and ran its tests, but it failed with the same error (I also tried to run the tests on another Windows machine, and it also failed).
I'm pretty sure it's not an issue with Tauri Specta itself, but I have no clue how to fix this kind of error.
Any help is welcomed !
Reproduction
Clone the Tauri Specta repository and try to run its tests on a Windows machine.
Expected behavior
It should raise this error when trying to run the tests: (exit code: 0xc0000139, STATUS_ENTRYPOINT_NOT_FOUND)
Full
tauri info
outputStack trace
Additional context
No response
The text was updated successfully, but these errors were encountered: