2021-05-10 00:43:50 +03:00
|
|
|
[package]
|
|
|
|
name = "tauri-runtime-wry"
|
2024-05-23 05:20:59 +03:00
|
|
|
version = "2.0.0-beta.17"
|
2021-05-10 00:43:50 +03:00
|
|
|
description = "Wry bindings to the Tauri runtime"
|
2022-08-28 21:13:21 +03:00
|
|
|
exclude = [ "CHANGELOG.md", "/target" ]
|
2021-05-11 02:28:15 +03:00
|
|
|
readme = "README.md"
|
2023-05-26 16:04:01 +03:00
|
|
|
authors = { workspace = true }
|
|
|
|
homepage = { workspace = true }
|
|
|
|
repository = { workspace = true }
|
|
|
|
categories = { workspace = true }
|
|
|
|
license = { workspace = true }
|
|
|
|
edition = { workspace = true }
|
|
|
|
rust-version = { workspace = true }
|
|
|
|
|
2021-05-10 00:43:50 +03:00
|
|
|
[dependencies]
|
2024-05-22 19:45:39 +03:00
|
|
|
wry = { version = "0.40", default-features = false, features = [ "drag-drop", "protocol", "os-webview" ] }
|
2024-05-07 21:36:48 +03:00
|
|
|
tao = { version = "0.28", default-features = false, features = [ "rwh_06" ] }
|
2024-05-23 05:20:59 +03:00
|
|
|
tauri-runtime = { version = "2.0.0-beta.17", path = "../tauri-runtime" }
|
|
|
|
tauri-utils = { version = "2.0.0-beta.16", path = "../tauri-utils" }
|
2024-02-08 04:26:29 +03:00
|
|
|
raw-window-handle = "0.6"
|
2024-04-01 19:03:39 +03:00
|
|
|
http = "1.1"
|
2024-02-22 00:45:05 +03:00
|
|
|
url = "2"
|
2023-11-27 17:56:46 +03:00
|
|
|
tracing = { version = "0.1", optional = true }
|
2024-03-04 22:22:07 +03:00
|
|
|
log = "0.4"
|
2021-05-19 03:46:21 +03:00
|
|
|
|
|
|
|
[target."cfg(windows)".dependencies]
|
2024-04-22 19:33:16 +03:00
|
|
|
webview2-com = "0.30"
|
2024-04-01 19:03:39 +03:00
|
|
|
softbuffer = { version = "0.4", default-features = false }
|
2021-11-12 00:38:41 +03:00
|
|
|
|
2023-08-14 14:30:01 +03:00
|
|
|
[target."cfg(windows)".dependencies.windows]
|
2024-04-22 19:33:16 +03:00
|
|
|
version = "0.56"
|
2024-04-02 21:32:30 +03:00
|
|
|
features = [ "Win32_Foundation", "Win32_Graphics_Dwm" ]
|
2021-05-10 19:27:42 +03:00
|
|
|
|
2021-07-02 19:08:51 +03:00
|
|
|
[target."cfg(any(target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies]
|
2023-10-24 18:26:24 +03:00
|
|
|
gtk = { version = "0.18", features = [ "v3_24" ] }
|
|
|
|
webkit2gtk = { version = "=2.0", features = [ "v2_38" ] }
|
2022-05-03 19:05:18 +03:00
|
|
|
percent-encoding = "2.1"
|
2021-06-01 19:07:48 +03:00
|
|
|
|
2022-05-04 20:14:15 +03:00
|
|
|
[target."cfg(any(target_os = \"ios\", target_os = \"macos\"))".dependencies]
|
2023-11-24 23:09:15 +03:00
|
|
|
cocoa = "0.25"
|
2022-05-04 20:14:15 +03:00
|
|
|
|
2023-02-06 14:56:00 +03:00
|
|
|
[target."cfg(target_os = \"android\")".dependencies]
|
2023-08-14 04:25:50 +03:00
|
|
|
jni = "0.21"
|
2023-02-06 14:56:00 +03:00
|
|
|
|
2021-05-10 19:27:42 +03:00
|
|
|
[features]
|
2022-03-28 16:20:38 +03:00
|
|
|
devtools = [ "wry/devtools", "tauri-runtime/devtools" ]
|
2022-02-11 00:03:25 +03:00
|
|
|
macos-private-api = [
|
|
|
|
"wry/fullscreen",
|
|
|
|
"wry/transparent",
|
2024-02-19 21:49:28 +03:00
|
|
|
"tauri-runtime/macos-private-api"
|
2022-02-11 00:03:25 +03:00
|
|
|
]
|
2022-03-02 19:08:42 +03:00
|
|
|
objc-exception = [ "wry/objc-exception" ]
|
2023-08-10 16:12:38 +03:00
|
|
|
linux-protocol-body = [ "wry/linux-body", "webkit2gtk/v2_40" ]
|
2024-01-16 03:37:50 +03:00
|
|
|
tracing = [ "dep:tracing", "wry/tracing" ]
|
2024-02-01 14:53:32 +03:00
|
|
|
macos-proxy = [ "wry/mac-proxy" ]
|
2024-03-04 22:09:16 +03:00
|
|
|
unstable = [ ]
|