Cargo.toml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. [package]
  2. name = "tauri-runtime-wry"
  3. version = "0.11.1"
  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.59"
  12. exclude = [ "CHANGELOG.md", "/target" ]
  13. readme = "README.md"
  14. [dependencies]
  15. wry = { git = "https://github.com/tauri-apps/wry", branch = "dev", default-features = false, features = [ "file-drop", "protocol" ] }
  16. tauri-runtime = { version = "0.11.1", path = "../tauri-runtime" }
  17. tauri-utils = { version = "1.1.1", path = "../tauri-utils" }
  18. uuid = { version = "1", features = [ "v4" ] }
  19. rand = "0.8"
  20. raw-window-handle = "0.5"
  21. [target."cfg(windows)".dependencies]
  22. webview2-com = "0.19.1"
  23. [target."cfg(windows)".dependencies.windows]
  24. version = "0.39.0"
  25. features = [ "Win32_Foundation" ]
  26. [target."cfg(any(target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies]
  27. gtk = { version = "0.15", features = [ "v3_20" ] }
  28. webkit2gtk = { version = "0.18.2", features = [ "v2_36" ] }
  29. percent-encoding = "2.1"
  30. [target."cfg(any(target_os = \"ios\", target_os = \"macos\"))".dependencies]
  31. cocoa = "0.24"
  32. [features]
  33. dox = [ "wry/dox" ]
  34. devtools = [ "wry/devtools", "tauri-runtime/devtools" ]
  35. system-tray = [ "tauri-runtime/system-tray", "wry/tray" ]
  36. macos-private-api = [
  37. "wry/fullscreen",
  38. "wry/transparent",
  39. "tauri-runtime/macos-private-api"
  40. ]
  41. objc-exception = [ "wry/objc-exception" ]
  42. global-shortcut = [ "tauri-runtime/global-shortcut" ]
  43. clipboard = [ "tauri-runtime/clipboard" ]