Cargo.toml 619 B

123456789101112131415161718192021222324252627
  1. [package]
  2. name = "client_html"
  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 = { version = "2.5.6", features = [] }
  16. [dependencies]
  17. serde_json = "1.0"
  18. serde = { version = "1.0", features = ["derive"] }
  19. log = "0.4"
  20. tauri = { version = "2.10.3", features = [] }
  21. tauri-plugin-log = "2"
  22. client_shared = { path = "../client_shared" }