[package]
edition = "2021"
rust-version = "1.90"
name = "tauri-plugin-webdriver"
version = "0.1.2"
authors = ["You"]
build = "build.rs"
links = "tauri-plugin-webdriver"
exclude = ["/examples"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "W3C WebDriver implementation for Tauri applications"
readme = "README.md"
keywords = [
"tauri",
"webdriver",
"selenium",
"testing",
"automation",
]
categories = [
"development-tools::testing",
"gui",
]
license = "MIT"
repository = "https://github.com/Choochmeque/tauri-plugin-webdriver"
[lib]
name = "tauri_plugin_webdriver"
path = "src/lib.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.axum]
version = "0.8"
[dependencies.base64]
version = "0.22"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tauri]
version = "2.10.0"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"sync",
"net",
"time",
]
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1"
features = ["v4"]
[build-dependencies.tauri-plugin]
version = "2.5.3"
features = ["build"]
[target.'cfg(target_os = "linux")'.dependencies.glib]
version = "0.20"
[target.'cfg(target_os = "linux")'.dependencies.javascriptcore-rs]
version = "1.1"
[target.'cfg(target_os = "linux")'.dependencies.webkit2gtk]
version = "2.0"
[target.'cfg(target_os = "macos")'.dependencies.block2]
version = "0.5"
[target.'cfg(target_os = "macos")'.dependencies.objc2]
version = "0.5"
[target.'cfg(target_os = "macos")'.dependencies.objc2-app-kit]
version = "0.2"
features = [
"NSImage",
"NSImageRep",
"NSBitmapImageRep",
"NSGraphicsContext",
]
[target.'cfg(target_os = "macos")'.dependencies.objc2-foundation]
version = "0.2"
features = [
"NSString",
"NSData",
"NSURL",
"NSError",
"NSArray",
"NSDictionary",
]
[target.'cfg(target_os = "macos")'.dependencies.objc2-web-kit]
version = "0.2"
features = [
"WKWebView",
"WKWebsiteDataStore",
"WKHTTPCookieStore",
"WKSnapshotConfiguration",
"WKUIDelegate",
"WKPDFConfiguration",
"WKFrameInfo",
"block2",
"objc2-app-kit",
]
[target.'cfg(target_os = "windows")'.dependencies.webview2-com]
version = "0.38"
[target.'cfg(target_os = "windows")'.dependencies.windows]
version = "0.61"
features = [
"Win32_System_Com",
"Win32_System_WinRT",
]
[target.'cfg(target_os = "windows")'.dependencies.windows-core]
version = "0.61"