Cargo.toml 1.4 KB

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