123456789101112131415161718192021222324252627282930313233343536373839 |
- [package]
- name = "tauri-runtime-wry"
- version = "0.2.1"
- 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 = "2021"
- rust-version = "1.56"
- exclude = [ ".license_template", "CHANGELOG.md", "/target" ]
- readme = "README.md"
- [dependencies]
- #wry = { version = "0.12", default-features = false, features = [ "file-drop", "protocol" ] }
- wry = { git = "https://github.com/tauri-apps/wry", rev = "11557f15cf759fcf3008598b684c009f03a8c645", default-features = false, features = [ "file-drop", "protocol", "transparent", "fullscreen" ] }
- tauri-runtime = { version = "0.2.1", path = "../tauri-runtime" }
- tauri-utils = { version = "1.0.0-beta.3", path = "../tauri-utils" }
- uuid = { version = "0.8.2", features = [ "v4" ] }
- infer = "0.4"
- [target."cfg(windows)".dependencies]
- ico = "0.1"
- webview2-com = "0.7.0"
- [target."cfg(windows)".dependencies.windows]
- version = "0.25.0"
- features = [
- "Win32_Foundation",
- ]
- [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.14", features = [ "v3_20" ] }
- [features]
- dox = [ "wry/dox" ]
- system-tray = [ "wry/tray", "tauri-runtime/system-tray" ]
|