Cargo.crate-manifest 831 B

1234567891011121314151617181920212223242526272829
  1. [package]
  2. name = "app"
  3. version = "0.1.0"
  4. description = "A Tauri App"
  5. authors = ["you"]
  6. license = ""
  7. repository = ""
  8. edition = "2021"
  9. rust-version = "1.65"
  10. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  11. [lib]
  12. name = "app_lib"
  13. crate-type = ["staticlib", "cdylib", "rlib"]
  14. [build-dependencies]
  15. tauri-build = {{ tauri_build_dep }}
  16. [dependencies]
  17. serde_json = "1.0"
  18. serde = { version = "1.0", features = ["derive"] }
  19. tauri = {{ tauri_dep }}
  20. [features]
  21. # this feature is used for production builds or when `devPath` points to the filesystem and the built-in dev server is disabled.
  22. # 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.
  23. # DO NOT REMOVE!!
  24. custom-protocol = [ "tauri/custom-protocol" ]