Cargo.crate-manifest 612 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.77.2"
  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. log = "0.4"
  20. tauri = {{ tauri_dep }}
  21. tauri-plugin-log = "2.0.0-rc"
  22. {{#if patch_tauri_dep}}
  23. [patch.crates-io]
  24. tauri = {{ tauri_dep }}
  25. {{/if}}