Cargo.toml 457 B

123456789101112131415161718
  1. [package]
  2. name = "app-updater"
  3. version = "0.1.0"
  4. edition = "2021"
  5. [build-dependencies]
  6. tauri-build = { path = "../../tauri-build", features = [] }
  7. [dependencies]
  8. serde = { version = "1", features = ["derive"] }
  9. serde_json.workspace = true
  10. tiny_http = "0.11"
  11. tauri = { path = "../../tauri", features = ["updater"] }
  12. time = { version = "0.3", features = ["formatting"] }
  13. [features]
  14. default = ["custom-protocol"]
  15. custom-protocol = ["tauri/custom-protocol"]