2021-05-10 00:43:50 +03:00
|
|
|
[package]
|
|
|
|
name = "tauri-runtime-wry"
|
2023-11-20 21:11:24 +03:00
|
|
|
version = "1.0.0-alpha.6"
|
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]
|
2023-10-28 14:04:35 +03:00
|
|
|
wry = { version = "0.34.2", default-features = false, features = [ "tao", "file-drop", "protocol" ] }
|
2023-11-20 21:11:24 +03:00
|
|
|
tauri-runtime = { version = "1.0.0-alpha.5", path = "../tauri-runtime" }
|
|
|
|
tauri-utils = { version = "2.0.0-alpha.11", path = "../tauri-utils" }
|
2023-03-20 17:54:09 +03:00
|
|
|
raw-window-handle = "0.5"
|
2023-09-06 21:53:03 +03:00
|
|
|
http = "0.2"
|
2021-05-19 03:46:21 +03:00
|
|
|
|
|
|
|
[target."cfg(windows)".dependencies]
|
2023-10-24 19:17:06 +03:00
|
|
|
webview2-com = "0.27"
|
2021-11-12 00:38:41 +03:00
|
|
|
|
2023-08-14 14:30:01 +03:00
|
|
|
[target."cfg(windows)".dependencies.windows]
|
2023-10-24 19:17:06 +03:00
|
|
|
version = "0.51"
|
2023-08-14 14:30:01 +03:00
|
|
|
features = [ "Win32_Foundation" ]
|
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]
|
|
|
|
cocoa = "0.24"
|
|
|
|
|
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",
|
|
|
|
"tauri-runtime/macos-private-api"
|
|
|
|
]
|
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" ]
|