Cargo.toml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. [package]
  2. name = "tauri-runtime-wry"
  3. version = "2.0.0-beta.11"
  4. description = "Wry bindings to the Tauri runtime"
  5. exclude = [ "CHANGELOG.md", "/target" ]
  6. readme = "README.md"
  7. authors = { workspace = true }
  8. homepage = { workspace = true }
  9. repository = { workspace = true }
  10. categories = { workspace = true }
  11. license = { workspace = true }
  12. edition = { workspace = true }
  13. rust-version = { workspace = true }
  14. [dependencies]
  15. wry = { version = "0.39", default-features = false, features = [ "drag-drop", "protocol", "os-webview" ] }
  16. tao = { version = "0.27", default-features = false, features = [ "rwh_06" ] }
  17. tauri-runtime = { version = "2.0.0-beta.11", path = "../tauri-runtime" }
  18. tauri-utils = { version = "2.0.0-beta.11", path = "../tauri-utils" }
  19. raw-window-handle = "0.6"
  20. http = "1.1"
  21. url = "2"
  22. tracing = { version = "0.1", optional = true }
  23. log = "0.4"
  24. [target."cfg(windows)".dependencies]
  25. webview2-com = "0.29"
  26. softbuffer = { version = "0.4", default-features = false }
  27. [target."cfg(windows)".dependencies.windows]
  28. version = "0.54"
  29. features = [ "Win32_Foundation", "Win32_Graphics_Dwm" ]
  30. [target."cfg(any(target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies]
  31. gtk = { version = "0.18", features = [ "v3_24" ] }
  32. webkit2gtk = { version = "=2.0", features = [ "v2_38" ] }
  33. percent-encoding = "2.1"
  34. [target."cfg(any(target_os = \"ios\", target_os = \"macos\"))".dependencies]
  35. cocoa = "0.25"
  36. [target."cfg(target_os = \"android\")".dependencies]
  37. jni = "0.21"
  38. [features]
  39. devtools = [ "wry/devtools", "tauri-runtime/devtools" ]
  40. macos-private-api = [
  41. "wry/fullscreen",
  42. "wry/transparent",
  43. "tauri-runtime/macos-private-api"
  44. ]
  45. objc-exception = [ "wry/objc-exception" ]
  46. linux-protocol-body = [ "wry/linux-body", "webkit2gtk/v2_40" ]
  47. tracing = [ "dep:tracing", "wry/tracing" ]
  48. macos-proxy = [ "wry/mac-proxy" ]
  49. unstable = [ ]