Cargo.toml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. [package]
  2. name = "tauri-plugin-appload"
  3. version = "0.1.0"
  4. authors = [ "CuriousCorrelation" ]
  5. description = "A Tauri plugin to download and load web app into WebView"
  6. edition = "2021"
  7. rust-version = "1.77.2"
  8. exclude = ["/examples", "/webview-dist", "/webview-src", "/node_modules"]
  9. links = "tauri-plugin-appload"
  10. [dependencies]
  11. tauri = { version = "2.0.6", features = ["unstable"] }
  12. serde = "1.0"
  13. serde_json = { version = "1", features = [] }
  14. thiserror = { version = "2.0.3", features = [] }
  15. url = { version = "2.5.3", features = ["serde"] }
  16. reqwest = { version = "0.12.9", features = [] }
  17. zip = { version = "2.2.0", features = [] }
  18. tokio = { version = "1.41.1", features = [] }
  19. mime-infer = { version = "3.0.0", features = [] }
  20. regex = { version = "1.11.1", features = [] }
  21. tracing = "0.1.41"
  22. dashmap = { version = "6.1.0" }
  23. flate2 = { version = "1.0.35" }
  24. chrono = { version = "0.4.38", features = ["serde"] }
  25. base64 = "0.22.1"
  26. blake3 = { version = "1.5.4", features = ["serde"] }
  27. ed25519-dalek = { version = "2.1.1", features = ["serde"] }
  28. hex = "0.4.3"
  29. lru = "0.12.5"
  30. sys-info = "0.9.1"
  31. humantime-serde = "1.1.1"
  32. futures = "0.3.31"
  33. mime_guess = "2.0.5"
  34. rayon = "1.10.0"
  35. hex_color = "3.0.0"
  36. [build-dependencies]
  37. tauri-plugin = { version = "2.0.1", features = ["build"] }
  38. [target.'cfg(target_os = "macos")'.dependencies]
  39. cocoa = "0.26.0"
  40. objc = "0.2.7"
  41. rand = "0.8.5"
  42. [target.'cfg(target_os = "windows")'.dependencies]
  43. windows = { version = "0.58.0", features = [
  44. "Win32_Graphics_Dwm",
  45. "Win32_Foundation",
  46. "Win32_UI_Controls",
  47. ] }
  48. winver = "1.0.0"