Cargo.toml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. [package]
  2. name = "tauri-runtime"
  3. version = "0.13.0-alpha.5"
  4. description = "Runtime for Tauri applications"
  5. exclude = [ "CHANGELOG.md", "/target" ]
  6. readme = "README.md"
  7. # workspace defined package items
  8. authors = { workspace = true }
  9. homepage = { workspace = true }
  10. repository = { workspace = true }
  11. categories = { workspace = true }
  12. license = { workspace = true }
  13. edition = { workspace = true }
  14. rust-version = { workspace = true }
  15. [package.metadata.docs.rs]
  16. all-features = true
  17. rustdoc-args = [ "--cfg", "doc_cfg" ]
  18. default-target = "x86_64-unknown-linux-gnu"
  19. targets = [
  20. "x86_64-pc-windows-msvc",
  21. "x86_64-unknown-linux-gnu",
  22. "x86_64-apple-darwin"
  23. ]
  24. [dependencies]
  25. serde = { version = "1.0", features = [ "derive" ] }
  26. serde_json = "1.0"
  27. thiserror = "1.0"
  28. tauri-utils = { version = "2.0.0-alpha.5", path = "../tauri-utils" }
  29. uuid = { version = "1", features = [ "v4" ] }
  30. http = "0.2.4"
  31. http-range = "0.1.4"
  32. raw-window-handle = "0.5"
  33. rand = "0.8"
  34. url = { version = "2" }
  35. [target."cfg(windows)".dependencies.windows]
  36. version = "0.44"
  37. features = [ "Win32_Foundation" ]
  38. [target."cfg(any(target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies]
  39. gtk = { version = "0.16", features = [ "v3_24" ] }
  40. [target."cfg(target_os = \"android\")".dependencies]
  41. jni = "0.20"
  42. [features]
  43. devtools = [ ]
  44. system-tray = [ ]
  45. macos-private-api = [ ]