Cargo.toml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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 = [ "http-all",
  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. percent-encoding = "2.3.1"
  38. reqwest = "0.11.18"
  39. futures-util = "0.3.30"
  40. bytes = "1.7.2"
  41. [features]
  42. # this feature is used for production builds or when `devPath` points to the filesystem and the built-in dev server is disabled.
  43. # 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.
  44. # DO NOT REMOVE!!
  45. custom-protocol = ["tauri/custom-protocol"]