Cargo.toml 984 B

12345678910111213141516171819202122232425262728293031323334
  1. [package]
  2. name = "opencode-desktop"
  3. version = "0.0.0"
  4. description = "A Tauri App"
  5. authors = ["you"]
  6. edition = "2021"
  7. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  8. [lib]
  9. # The `_lib` suffix may seem redundant but it is necessary
  10. # to make the lib name unique and wouldn't conflict with the bin name.
  11. # This seems to be only an issue on Windows, see https://github.com/rust-lang/cargo/issues/8519
  12. name = "opencode_lib"
  13. crate-type = ["staticlib", "cdylib", "rlib"]
  14. [build-dependencies]
  15. tauri-build = { version = "2", features = [] }
  16. [dependencies]
  17. tauri = { version = "2", features = ["macos-private-api", "devtools"] }
  18. tauri-plugin-opener = "2"
  19. tauri-plugin-shell = "2"
  20. tauri-plugin-dialog = "2"
  21. tauri-plugin-updater = "2"
  22. tauri-plugin-process = "2"
  23. tauri-plugin-store = "2"
  24. tauri-plugin-window-state = "2"
  25. serde = { version = "1", features = ["derive"] }
  26. serde_json = "1"
  27. tokio = "1.48.0"
  28. listeners = "0.3"
  29. tauri-plugin-os = "2"