2021-05-10 00:43:50 +03:00
|
|
|
[package]
|
|
|
|
name = "tauri-runtime-wry"
|
2021-06-28 17:03:55 +03:00
|
|
|
version = "0.1.3"
|
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"
|
|
|
|
homepage = "https://tauri.studio"
|
|
|
|
repository = "https://github.com/tauri-apps/tauri"
|
|
|
|
description = "Wry bindings to the Tauri runtime"
|
|
|
|
edition = "2018"
|
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]
|
2021-06-22 16:47:45 +03:00
|
|
|
wry = { version = "0.10", default-features = false, features = [ "file-drop", "protocol", "win32" ] }
|
2021-06-28 17:03:55 +03:00
|
|
|
tauri-runtime = { version = "0.1.3", path = "../tauri-runtime" }
|
2021-06-23 22:56:16 +03:00
|
|
|
tauri-utils = { version = "1.0.0-beta.1", path = "../tauri-utils" }
|
2021-05-10 00:43:50 +03:00
|
|
|
uuid = { version = "0.8.2", features = [ "v4" ] }
|
2021-05-19 03:46:21 +03:00
|
|
|
infer = "0.4"
|
|
|
|
|
|
|
|
[target."cfg(windows)".dependencies]
|
|
|
|
ico = "0.1"
|
2021-05-21 22:16:05 +03:00
|
|
|
winapi = "0.3"
|
2021-05-10 19:27:42 +03:00
|
|
|
|
2021-06-01 19:07:48 +03:00
|
|
|
[target."cfg(target_os = \"linux\")".dependencies]
|
|
|
|
png = "0.16"
|
|
|
|
|
2021-05-10 19:27:42 +03:00
|
|
|
[features]
|
|
|
|
dox = [ "wry/dox" ]
|
2021-05-12 16:55:21 +03:00
|
|
|
menu = [ "wry/menu", "tauri-runtime/menu" ]
|
|
|
|
system-tray = [ "wry/tray", "tauri-runtime/system-tray" ]
|