tauri/core/tauri-runtime-wry/Cargo.toml
david 8808085541
feat(window): Allow creation of Window without wry (#2321)
Co-authored-by: Lucas Nogueira <lucas@tauri.studio>
2021-07-29 14:35:26 -03:00

34 lines
1.2 KiB
TOML

[package]
name = "tauri-runtime-wry"
version = "0.1.4"
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"
exclude = [ ".license_template", "CHANGELOG.md", "/target" ]
readme = "README.md"
[dependencies]
#wry = { version = "0.11", default-features = false, features = [ "file-drop", "protocol" ] }
wry = { git = "https://github.com/tauri-apps/wry", branch = "dev", default-features = false, features = [ "file-drop", "protocol" ] }
tauri-runtime = { version = "0.1.4", path = "../tauri-runtime" }
tauri-utils = { version = "1.0.0-beta.2", path = "../tauri-utils" }
uuid = { version = "0.8.2", features = [ "v4" ] }
infer = "0.4"
[target."cfg(windows)".dependencies]
ico = "0.1"
winapi = "0.3"
[target."cfg(any(target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies]
png = "0.16"
gtk = { version = "0.9", features = [ "v3_16" ] }
[features]
dox = [ "wry/dox" ]
menu = [ "tauri-runtime/menu"]
system-tray = [ "wry/tray", "tauri-runtime/system-tray" ]