Closed slimandslam closed 3 months ago
Cargo.toml file:
[package]
name = "openaiimages"
version = "0.9.0"
description = "A sample Tauri v2 app based on React"
authors = ["Jason Levitt"]
edition = "2021"
[lib]
name = "openaiimages_lib"
crate-type = ["lib", "cdylib", "staticlib"]
[build-dependencies]
tauri-build = { version = "2.0.0-rc", features = [] }
[dependencies]
tauri = { version = "2.0.0-rc", features = [] }
tauri-plugin-shell = { version = "2.0.0-rc", features = [] }
tauri-plugin-store = { version = "2.0.0-rc.0", features = [] }
tauri-plugin-dialog = { version = "2.0.0-rc.0", features = [] }
tauri-plugin-fs = { version = "2.0.0-rc.0", features = [] }
tauri-plugin-http = { version = "2.0.0-rc.0", features = ["rustls-tls"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
The error is in your output:
Permission window:allow-set-title not found, expected one of core:app:default, core:app:allow-app-hide, core:app:allow-app-show, core:app:allow-default-window-icon,....
Please read the migration guide https://v2.tauri.app/start/migrate/from-tauri-2-beta/
Thank you!
Describe the bug
JS frontend (React) builds easily. But "yarn tauri dev" always fails mysteriously with the "error Command failed with exit code 101" message.
Reproduction
clone my open source repo here: https://github.com/slimandslam/openaiimages Update everything to RC and try to compile it.
Expected behavior
It should easily compile.
Full
tauri info
outputStack trace
Additional context
No response