Cargo.toml 548 B

12345678910111213141516171819202122232425262728
  1. workspace = { }
  2. [package]
  3. name = "helloworld"
  4. version = "0.1.0"
  5. description = "A Tauri App"
  6. authors = [ "you" ]
  7. license = ""
  8. repository = ""
  9. default-run = "helloworld"
  10. edition = "2018"
  11. build = "src/build.rs"
  12. [dependencies]
  13. serde_json = "1.0"
  14. serde = { version = "1.0", features = [ "derive" ] }
  15. tauri = { path = "../../..", features =["api-all"]}
  16. [target."cfg(windows)".build-dependencies]
  17. winres = "0.1"
  18. [features]
  19. default = [ "custom-protocol" ]
  20. custom-protocol = [ "tauri/custom-protocol" ]
  21. [[bin]]
  22. name = "helloworld"
  23. path = "src/main.rs"