123456789101112131415161718192021222324252627282930313233343536373839 |
- [package]
- name = "tauri-runtime"
- 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 = "Runtime for Tauri applications"
- edition = "2018"
- exclude = [ ".license_template", "CHANGELOG.md", "/target" ]
- readme = "README.md"
- [package.metadata.docs.rs]
- all-features = true
- rustdoc-args = [ "--cfg", "doc_cfg" ]
- default-target = "x86_64-unknown-linux-gnu"
- targets = [
- "x86_64-pc-windows-msvc",
- "x86_64-unknown-linux-gnu",
- "x86_64-apple-darwin"
- ]
- [dependencies]
- serde = { version = "1.0", features = [ "derive" ] }
- serde_json = "1.0"
- thiserror = "1.0"
- tauri-utils = { version = "1.0.0-beta.2", path = "../tauri-utils" }
- uuid = { version = "0.8.2", features = [ "v4" ] }
- [target."cfg(windows)".dependencies]
- winapi = "0.3"
- [target."cfg(any(target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies]
- gtk = { version = "0.9", features = [ "v3_16" ] }
- [features]
- menu = [ ]
- system-tray = [ ]
|