2021-05-10 00:43:50 +03:00
|
|
|
[package]
|
|
|
|
name = "tauri-runtime-wry"
|
2022-07-06 20:32:55 +03:00
|
|
|
version = "0.10.2"
|
2021-05-10 00:43:50 +03:00
|
|
|
authors = [ "Tauri Programme within The Commons Conservancy" ]
|
|
|
|
categories = [ "gui", "web-programming" ]
|
|
|
|
license = "Apache-2.0 OR MIT"
|
2022-06-16 05:08:50 +03:00
|
|
|
homepage = "https://tauri.app"
|
2021-05-10 00:43:50 +03:00
|
|
|
repository = "https://github.com/tauri-apps/tauri"
|
|
|
|
description = "Wry bindings to the Tauri runtime"
|
2021-10-22 16:04:42 +03:00
|
|
|
edition = "2021"
|
2022-01-17 16:46:14 +03:00
|
|
|
rust-version = "1.57"
|
2021-05-11 02:28:15 +03:00
|
|
|
exclude = [ ".license_template", "CHANGELOG.md", "/target" ]
|
|
|
|
readme = "README.md"
|
2021-05-10 00:43:50 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2022-07-31 16:41:49 +03:00
|
|
|
wry = { version = "0.20", default-features = false, features = [ "file-drop", "protocol" ] }
|
2022-07-06 20:32:55 +03:00
|
|
|
tauri-runtime = { version = "0.10.2", path = "../tauri-runtime" }
|
|
|
|
tauri-utils = { version = "1.0.3", path = "../tauri-utils" }
|
2022-04-20 20:38:40 +03:00
|
|
|
uuid = { version = "1", features = [ "v4" ] }
|
2022-03-15 18:59:37 +03:00
|
|
|
rand = "0.8"
|
2022-07-31 16:41:49 +03:00
|
|
|
raw-window-handle = "0.5"
|
2021-05-19 03:46:21 +03:00
|
|
|
|
|
|
|
[target."cfg(windows)".dependencies]
|
2022-05-24 17:44:07 +03:00
|
|
|
webview2-com = "0.16.0"
|
2021-11-12 00:38:41 +03:00
|
|
|
|
2022-05-24 21:35:35 +03:00
|
|
|
[target."cfg(windows)".dependencies.windows]
|
|
|
|
version = "0.37.0"
|
|
|
|
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]
|
2022-02-05 08:29:03 +03:00
|
|
|
gtk = { version = "0.15", features = [ "v3_20" ] }
|
2022-05-11 02:04:24 +03:00
|
|
|
webkit2gtk = { version = "0.18", features = [ "v2_22" ] }
|
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"
|
|
|
|
|
2021-05-10 19:27:42 +03:00
|
|
|
[features]
|
|
|
|
dox = [ "wry/dox" ]
|
2022-03-28 16:20:38 +03:00
|
|
|
devtools = [ "wry/devtools", "tauri-runtime/devtools" ]
|
2022-04-19 23:33:17 +03:00
|
|
|
system-tray = [ "tauri-runtime/system-tray", "wry/tray" ]
|
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" ]
|
2022-04-24 21:11:14 +03:00
|
|
|
global-shortcut = [ "tauri-runtime/global-shortcut" ]
|
2022-04-24 21:50:42 +03:00
|
|
|
clipboard = [ "tauri-runtime/clipboard" ]
|