Cargo.toml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. [package]
  2. name = "tauri-runtime-wry"
  3. version = "0.14.8"
  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 = "Wry bindings to the Tauri runtime"
  10. edition = "2021"
  11. rust-version = "1.60"
  12. exclude = [ "CHANGELOG.md", "/target" ]
  13. readme = "README.md"
  14. [dependencies]
  15. wry = { version = "0.24.10", default-features = false, features = [ "file-drop", "protocol" ] }
  16. tauri-runtime = { version = "0.14.3", path = "../tauri-runtime" }
  17. tauri-utils = { version = "1.5.4", path = "../tauri-utils" }
  18. uuid = { version = "1", features = [ "v4" ] }
  19. rand = "0.8"
  20. raw-window-handle = "0.5"
  21. tracing = { version = "0.1", optional = true }
  22. arboard = { version = "3", optional = true }
  23. [target."cfg(windows)".dependencies]
  24. webview2-com = "0.19.1"
  25. [target."cfg(windows)".dependencies.windows]
  26. version = "0.39.0"
  27. features = [ "Win32_Foundation" ]
  28. [target."cfg(any(target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies]
  29. gtk = { version = "0.15", features = [ "v3_20" ] }
  30. webkit2gtk = { version = "0.18.2", features = [ "v2_22" ] }
  31. percent-encoding = "2.1"
  32. [target."cfg(any(target_os = \"ios\", target_os = \"macos\"))".dependencies]
  33. cocoa = "0.24"
  34. [features]
  35. dox = [ "wry/dox" ]
  36. devtools = [ "wry/devtools", "tauri-runtime/devtools" ]
  37. system-tray = [ "tauri-runtime/system-tray", "wry/tray" ]
  38. macos-private-api = [
  39. "wry/fullscreen",
  40. "wry/transparent",
  41. "tauri-runtime/macos-private-api"
  42. ]
  43. objc-exception = [ "wry/objc-exception" ]
  44. global-shortcut = [ "tauri-runtime/global-shortcut" ]
  45. clipboard = [ "tauri-runtime/clipboard", "arboard/wayland-data-control" ]
  46. linux-headers = [ "wry/linux-headers", "webkit2gtk/v2_36" ]
  47. tracing = [ "dep:tracing", "wry/tracing" ]