1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- [package]
- name = "tauri-runtime"
- version = "0.13.0-alpha.4"
- authors = [ "Tauri Programme within The Commons Conservancy" ]
- categories = [ "gui", "web-programming" ]
- license = "Apache-2.0 OR MIT"
- homepage = "https://tauri.app"
- repository = "https://github.com/tauri-apps/tauri"
- description = "Runtime for Tauri applications"
- edition = "2021"
- rust-version = "1.64"
- exclude = [ "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.workspace = true
- serde_json.workspace = true
- thiserror.workspace = true
- tauri-utils = { version = "2.0.0-alpha.4", path = "../tauri-utils" }
- uuid = { version = "1", features = [ "v4" ] }
- http = "0.2.4"
- http-range = "0.1.4"
- raw-window-handle = "0.5"
- rand = "0.8"
- url.workspace = true
- [target."cfg(windows)".dependencies]
- webview2-com = "0.22"
- [target."cfg(windows)".dependencies.windows]
- version = "0.44"
- features = [ "Win32_Foundation" ]
- [target."cfg(any(target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies]
- gtk = { version = "0.16", features = [ "v3_24" ] }
- [target."cfg(target_os = \"android\")".dependencies]
- jni = "0.20"
- [features]
- devtools = [ ]
- system-tray = [ ]
- macos-private-api = [ ]
|