Cargo.toml 509 B

123456789101112131415161718
  1. [package]
  2. name = "resources"
  3. version = "0.1.0"
  4. description = "A Tauri application that uses Node.js with app resources"
  5. edition = "2021"
  6. rust-version = "1.57"
  7. [build-dependencies]
  8. tauri-build = { path = "../../../core/tauri-build", features = [ "codegen" ] }
  9. [dependencies]
  10. serde_json = "1.0"
  11. serde = { version = "1.0", features = [ "derive" ] }
  12. tauri = { path = "../../../core/tauri", features = ["shell-execute"] }
  13. [features]
  14. default = [ "custom-protocol" ]
  15. custom-protocol = [ "tauri/custom-protocol" ]