mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-16 15:13:38 +03:00
3806b88ee1
Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
32 lines
1003 B
TOML
32 lines
1003 B
TOML
[package]
|
|
name = "tauri-runtime-wry"
|
|
version = "0.1.3"
|
|
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.10", default-features = false, features = [ "file-drop", "protocol", "win32" ] }
|
|
tauri-runtime = { version = "0.1.3", path = "../tauri-runtime" }
|
|
tauri-utils = { version = "1.0.0-beta.1", 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(target_os = \"linux\")".dependencies]
|
|
png = "0.16"
|
|
|
|
[features]
|
|
dox = [ "wry/dox" ]
|
|
menu = [ "wry/menu", "tauri-runtime/menu" ]
|
|
system-tray = [ "wry/tray", "tauri-runtime/system-tray" ]
|