Cargo.toml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. [package]
  2. name = "tauri-runtime-wry"
  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 = "Wry bindings to the Tauri runtime"
  10. edition = "2021"
  11. rust-version = "1.64"
  12. exclude = [ "CHANGELOG.md", "/target" ]
  13. readme = "README.md"
  14. [dependencies]
  15. wry = { version = "0.28.3", default-features = false, features = [ "file-drop", "protocol" ] }
  16. tauri-runtime = { version = "0.13.0-alpha.4", path = "../tauri-runtime" }
  17. tauri-utils = { version = "2.0.0-alpha.4", 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.22"
  23. [target."cfg(windows)".dependencies.windows]
  24. version = "0.44"
  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.16", features = [ "v3_24" ] }
  28. webkit2gtk = { version = "0.19.1", features = [ "v2_38" ] }
  29. percent-encoding = "2.1"
  30. [target."cfg(any(target_os = \"ios\", target_os = \"macos\"))".dependencies]
  31. cocoa = "0.24"
  32. [target."cfg(target_os = \"android\")".dependencies]
  33. jni = "0.20"
  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. linux-headers = [ "wry/linux-headers", "webkit2gtk/v2_36" ]