Cargo.toml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. [package]
  2. name = "tauri-api"
  3. version = "0.7.3"
  4. authors = [
  5. "Lucas Fernandes Gonçalves Nogueira <lucas@tauri.studio>",
  6. "Daniel Thompson-Yvetot <denjell@sfosc.org>",
  7. "Tensor Programming <tensordeveloper@gmail.com>"
  8. ]
  9. categories = [ "gui", "os", "filesystem", "web-programming" ]
  10. license = "MIT"
  11. homepage = "https://tauri.studio"
  12. repository = "https://github.com/tauri-apps/tauri"
  13. description = "Make tiny, secure apps for all desktop platforms with Tauri"
  14. edition = "2018"
  15. exclude = [ "test/fixture/**" ]
  16. [dependencies]
  17. serde = { version = "1.0", features = [ "derive" ] }
  18. serde_json = "1.0"
  19. serde_repr = "0.1"
  20. dirs = "3.0.1"
  21. zip = "0.5.6"
  22. semver = "0.10"
  23. tempfile = "3"
  24. either = "1.5.3"
  25. tar = "0.4"
  26. flate2 = "1"
  27. anyhow = "1.0.31"
  28. thiserror = "1.0.20"
  29. rand = "0.7"
  30. nfd = "0.0.4"
  31. tauri-dialog = "0.1.0"
  32. attohttpc = { version = "0.15.0", features = [ "json", "form" ] }
  33. http = "0.2"
  34. tauri-utils = { version = "0.5", path = "../tauri-utils" }
  35. clap = { git = "https://github.com/clap-rs/clap", rev = "1a276f8", version = "3.0.0-beta.1", optional = true }
  36. notify-rust = { version = "4.0.0", optional = true }
  37. once_cell = "1.4.0"
  38. [dev-dependencies]
  39. quickcheck = "0.9.2"
  40. quickcheck_macros = "0.9.1"
  41. [features]
  42. cli = [ "clap" ]
  43. notification = [ "notify-rust" ]