mirror of
https://github.com/tauri-apps/tauri.git
synced 2026-04-07 10:22:29 +02:00
* chore: promote to v2 stable - deletes all RC change files - adds a new change file to promote all packages to v2 stable - manually fix the tauri-driver, tauri-macos-sign, tauri-bundler versions so the next covector bump will move them to 2.0.0 - manually patch the metadata-v2.json file so the next covector update will mark all packages as 2.0.0 * ignore audit vuln without fixes * bump msrv to 1.78 * run covector version * fix sync lockfile covector * #[allow(clippy::manual_inspect)]
74 lines
2.0 KiB
TOML
74 lines
2.0 KiB
TOML
[package]
|
|
name = "tauri-runtime-wry"
|
|
version = "2.0.0"
|
|
description = "Wry bindings to the Tauri runtime"
|
|
exclude = ["CHANGELOG.md", "/target"]
|
|
readme = "README.md"
|
|
authors.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
categories.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
rustc-args = ["--cfg", "docsrs"]
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[dependencies]
|
|
wry = { version = "0.44.0", default-features = false, features = [
|
|
"drag-drop",
|
|
"protocol",
|
|
"os-webview",
|
|
"linux-body",
|
|
] }
|
|
tao = { version = "0.30.2", default-features = false, features = ["rwh_06"] }
|
|
tauri-runtime = { version = "2.0.0", path = "../tauri-runtime" }
|
|
tauri-utils = { version = "2.0.0", path = "../tauri-utils" }
|
|
raw-window-handle = "0.6"
|
|
http = "1.1"
|
|
url = "2"
|
|
tracing = { version = "0.1", optional = true }
|
|
log = "0.4"
|
|
|
|
[target."cfg(windows)".dependencies]
|
|
webview2-com = "0.33"
|
|
softbuffer = { version = "0.4", default-features = false }
|
|
|
|
[target."cfg(windows)".dependencies.windows]
|
|
version = "0.58"
|
|
features = ["Win32_Foundation", "Win32_Graphics_Dwm"]
|
|
|
|
[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"] }
|
|
webkit2gtk = { version = "=2.0", features = ["v2_40"] }
|
|
percent-encoding = "2.1"
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
objc2 = "0.5.2"
|
|
objc2-foundation = { version = "0.2.2", features = [] }
|
|
objc2-app-kit = { version = "0.2.2", features = [
|
|
"block2",
|
|
"NSApplication",
|
|
"NSResponder",
|
|
"NSView",
|
|
"NSWindow",
|
|
"NSGraphics",
|
|
] }
|
|
|
|
[target."cfg(target_os = \"android\")".dependencies]
|
|
jni = "0.21"
|
|
|
|
[features]
|
|
devtools = ["wry/devtools", "tauri-runtime/devtools"]
|
|
macos-private-api = [
|
|
"wry/fullscreen",
|
|
"wry/transparent",
|
|
"tauri-runtime/macos-private-api",
|
|
]
|
|
objc-exception = ["wry/objc-exception"]
|
|
tracing = ["dep:tracing", "wry/tracing"]
|
|
macos-proxy = ["wry/mac-proxy"]
|
|
unstable = []
|