Cargo.toml 709 B

12345678910111213141516171819202122
  1. [package]
  2. name = "tauri-updater"
  3. version = "0.4.2"
  4. authors = ["Lucas Fernandes Gonçalves Nogueira <lucas@tauri.studio>", "Daniel Thompson-Yvetot <denjell@sfosc.org>", "Tensor Programming <tensordeveloper@gmail.com>"]
  5. license = "MIT"
  6. homepage = "https://tauri.studio"
  7. repository = "https://github.com/tauri-apps/tauri"
  8. description = "Updater for Tauri"
  9. edition = "2018"
  10. exclude = ["test/fixture/**"]
  11. [dependencies]
  12. attohttpc = {version = "0.10.1", features=["json", "compress" ]}
  13. # pbr = "1"
  14. serde_json = "1.0"
  15. serde = "1.0"
  16. zip = "0.5.3"
  17. tempdir = "0.3"
  18. tauri-api = { version = "0.5", path = "../tauri-api" }
  19. tauri-utils = { version = "0.5", path = "../tauri-utils" }
  20. anyhow = "1.0.31"
  21. thiserror = "1.0.19"