Cargo.toml 1.3 KB

123456789101112131415161718192021222324252627
  1. [package]
  2. name = "chatgpt-next-web"
  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 = "chatgpt-next-web"
  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.3.0", features = [] }
  14. [dependencies]
  15. serde_json = "1.0"
  16. serde = { version = "1.0", features = ["derive"] }
  17. tauri = { version = "1.3.0", features = ["notification-all", "fs-all", "clipboard-all", "dialog-all", "shell-open", "updater", "window-close", "window-hide", "window-maximize", "window-minimize", "window-set-icon", "window-set-ignore-cursor-events", "window-set-resizable", "window-show", "window-start-dragging", "window-unmaximize", "window-unminimize"] }
  18. tauri-plugin-window-state = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v1" }
  19. [features]
  20. # this feature is used for production builds or when `devPath` points to the filesystem and the built-in dev server is disabled.
  21. # 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.
  22. # DO NOT REMOVE!!
  23. custom-protocol = [ "tauri/custom-protocol" ]