Cargo.toml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. [package]
  2. name = "nextchat"
  3. version = "0.1.0"
  4. description = "A cross platform app for LLM ChatBot."
  5. authors = ["Yidadaa"]
  6. license = "mit"
  7. repository = ""
  8. default-run = "nextchat"
  9. edition = "2021"
  10. rust-version = "1.60"
  11. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  12. [build-dependencies]
  13. tauri-build = { version = "1.5.1", features = [] }
  14. [dependencies]
  15. serde_json = "1.0"
  16. serde = { version = "1.0", features = ["derive"] }
  17. tauri = { version = "1.5.4", features = [
  18. "notification-all",
  19. "fs-all",
  20. "clipboard-all",
  21. "dialog-all",
  22. "shell-open",
  23. "updater",
  24. "window-close",
  25. "window-hide",
  26. "window-maximize",
  27. "window-minimize",
  28. "window-set-icon",
  29. "window-set-ignore-cursor-events",
  30. "window-set-resizable",
  31. "window-show",
  32. "window-start-dragging",
  33. "window-unmaximize",
  34. "window-unminimize",
  35. ] }
  36. tauri-plugin-window-state = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v1" }
  37. [features]
  38. # this feature is used for production builds or when `devPath` points to the filesystem and the built-in dev server is disabled.
  39. # If you use cargo directly instead of tauri's cli you can use this feature flag to switch between tauri's `dev` and `build` modes.
  40. # DO NOT REMOVE!!
  41. custom-protocol = ["tauri/custom-protocol"]