[package]
edition = "2021"
rust-version = "1.77.2"
name = "tauri-runtime"
version = "2.10.0"
authors = ["Tauri Programme within The Commons Conservancy"]
build = "build.rs"
exclude = [
"CHANGELOG.md",
"/target",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Runtime for Tauri applications"
homepage = "https://tauri.app/"
readme = "README.md"
categories = [
"gui",
"web-programming",
]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/tauri-apps/tauri"
[package.metadata.docs.rs]
all-features = true
default-target = "x86_64-unknown-linux-gnu"
targets = [
"x86_64-pc-windows-msvc",
"x86_64-unknown-linux-gnu",
"x86_64-apple-darwin",
"x86_64-linux-android",
"x86_64-apple-ios",
]
[features]
devtools = []
macos-private-api = []
[lib]
name = "tauri_runtime"
path = "src/lib.rs"
[dependencies.cookie]
version = "0.18"
[dependencies.dpi]
version = "0.1"
features = ["serde"]
[dependencies.http]
version = "1"
[dependencies.raw-window-handle]
version = "0.6"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tauri-utils]
version = "2.8.2"
[dependencies.thiserror]
version = "2"
[dependencies.url]
version = "2"
[target.'cfg(all(target_vendor = "apple", not(target_os = "macos")))'.dependencies.objc2]
version = "0.6"
[target.'cfg(all(target_vendor = "apple", not(target_os = "macos")))'.dependencies.objc2-ui-kit]
version = "0.3.0"
features = [
"UIView",
"UIResponder",
]
default-features = false
[target.'cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd", target_os = "openbsd", target_os = "netbsd"))'.dependencies.gtk]
version = "0.18"
features = ["v3_24"]
[target.'cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd", target_os = "openbsd", target_os = "netbsd"))'.dependencies.webkit2gtk]
version = "=2.0"
features = ["v2_40"]
[target.'cfg(target_os = "android")'.dependencies.jni]
version = "0.21"
[target.'cfg(target_os = "macos")'.dependencies.objc2]
version = "0.6"
[target.'cfg(target_os = "macos")'.dependencies.objc2-web-kit]
version = "0.3"
features = [
"objc2-app-kit",
"WKWebView",
]
[target.'cfg(target_os = "macos")'.dependencies.url]
version = "2"
[target."cfg(windows)".dependencies.webview2-com]
version = "0.38"
[target."cfg(windows)".dependencies.windows]
version = "0.61"
features = [
"Win32_Foundation",
"Win32_System_WinRT",
]