tauri/core/tauri-runtime-wry/Cargo.toml

53 lines
1.8 KiB
TOML
Raw Normal View History

[package]
name = "tauri-runtime-wry"
version = "1.0.0-alpha.9"
description = "Wry bindings to the Tauri runtime"
2022-08-28 21:13:21 +03:00
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 }
[dependencies]
feat: add tracing (port from #8289) (#8607) * feat(tracing): add IPC tracing * span for deserialization * trace spans for IPC command handlers * fix spans usage * app tracing [skip ci] * window tracing * fix run never resolving all spans * fix draw not entered * change level * feat(core): Manager::emit_filter and optimize serialization (#7512) Co-authored-by: Lucas Nogueira <lucas@tauri.studio> * event spans * lint & fix tests * change eval to run sync * fix instrument * update wry * change separator * Update core/tauri/src/plugin.rs Co-authored-by: Jonas Kruckenberg <118265418+CrabNejonas@users.noreply.github.com> * Update core/tauri/src/window.rs Co-authored-by: Jonas Kruckenberg <118265418+CrabNejonas@users.noreply.github.com> * Update core/tauri/src/window.rs Co-authored-by: Jonas Kruckenberg <118265418+CrabNejonas@users.noreply.github.com> * Update core/tauri/src/window.rs Co-authored-by: Jonas Kruckenberg <118265418+CrabNejonas@users.noreply.github.com> * Update core/tauri/src/window.rs Co-authored-by: Jonas Kruckenberg <118265418+CrabNejonas@users.noreply.github.com> * instrument separators * remove on_event trace * skip all arguments on App::build tracing * ipc spans adjustments * delete change file * improve how request and response are added as values (serialize) * do not run evalScript sync on android :( freezes the app * wry 0.35.2 * add change file --------- Co-authored-by: Lucas Nogueira <lucas@tauri.studio> Co-authored-by: Jonas Kruckenberg <118265418+CrabNejonas@users.noreply.github.com>
2024-01-16 03:37:50 +03:00
wry = { version = "0.35.2", default-features = false, features = [ "file-drop", "protocol", "os-webview" ] }
tao = { version = "0.24", default-features = false, features = [ "rwh_05", "rwh_06" ] }
tauri-runtime = { version = "1.0.0-alpha.8", path = "../tauri-runtime" }
tauri-utils = { version = "2.0.0-alpha.13", path = "../tauri-utils" }
raw-window-handle = "0.5"
http = "0.2"
tracing = { version = "0.1", optional = true }
[target."cfg(windows)".dependencies]
webview2-com = "0.28"
softbuffer = "0.4"
[target."cfg(windows)".dependencies.windows]
version = "0.52"
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.18", features = [ "v3_24" ] }
webkit2gtk = { version = "=2.0", features = [ "v2_38" ] }
percent-encoding = "2.1"
[target."cfg(any(target_os = \"ios\", target_os = \"macos\"))".dependencies]
cocoa = "0.25"
[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" ]
linux-protocol-body = [ "wry/linux-body", "webkit2gtk/v2_40" ]
feat: add tracing (port from #8289) (#8607) * feat(tracing): add IPC tracing * span for deserialization * trace spans for IPC command handlers * fix spans usage * app tracing [skip ci] * window tracing * fix run never resolving all spans * fix draw not entered * change level * feat(core): Manager::emit_filter and optimize serialization (#7512) Co-authored-by: Lucas Nogueira <lucas@tauri.studio> * event spans * lint & fix tests * change eval to run sync * fix instrument * update wry * change separator * Update core/tauri/src/plugin.rs Co-authored-by: Jonas Kruckenberg <118265418+CrabNejonas@users.noreply.github.com> * Update core/tauri/src/window.rs Co-authored-by: Jonas Kruckenberg <118265418+CrabNejonas@users.noreply.github.com> * Update core/tauri/src/window.rs Co-authored-by: Jonas Kruckenberg <118265418+CrabNejonas@users.noreply.github.com> * Update core/tauri/src/window.rs Co-authored-by: Jonas Kruckenberg <118265418+CrabNejonas@users.noreply.github.com> * Update core/tauri/src/window.rs Co-authored-by: Jonas Kruckenberg <118265418+CrabNejonas@users.noreply.github.com> * instrument separators * remove on_event trace * skip all arguments on App::build tracing * ipc spans adjustments * delete change file * improve how request and response are added as values (serialize) * do not run evalScript sync on android :( freezes the app * wry 0.35.2 * add change file --------- Co-authored-by: Lucas Nogueira <lucas@tauri.studio> Co-authored-by: Jonas Kruckenberg <118265418+CrabNejonas@users.noreply.github.com>
2024-01-16 03:37:50 +03:00
tracing = [ "dep:tracing", "wry/tracing" ]