You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
814 B

3 months ago
  1. [package]
  2. name = "app"
  3. version = "0.1.0"
  4. description = "A Tauri App"
  5. authors = ["you"]
  6. license = ""
  7. repository = ""
  8. default-run = "app"
  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.4.0", features = [] }
  14. [dependencies]
  15. serde_json = "1.0"
  16. serde = { version = "1.0", features = ["derive"] }
  17. tauri = { version = "1.4.0", features = [] }
  18. [features]
  19. # this feature is used for production builds or when `devPath` points to the filesystem and the built-in dev server is disabled.
  20. # 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.
  21. # DO NOT REMOVE!!
  22. custom-protocol = [ "tauri/custom-protocol" ]