[package]
edition = "2021"
name = "tauri-plugin-playwright"
version = "0.1.0"
authors = ["Simon Holmes"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Tauri plugin that enables Playwright E2E testing by embedding a control server in the app"
homepage = "https://github.com/srsholmes/tauri-playwright"
readme = "README.md"
keywords = [
"tauri",
"playwright",
"testing",
"e2e",
"webdriver",
]
license = "MIT"
repository = "https://github.com/srsholmes/tauri-playwright"
[lib]
name = "tauri_plugin_playwright"
path = "src/lib.rs"
[dependencies.log]
version = "0.4"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tauri]
version = "2"
features = []
[dependencies.tokio]
version = "1"
features = [
"net",
"io-util",
"sync",
"macros",
"rt",
"time",
"process",
"fs",
]