Cargo.toml 1.7 KB

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