[package]
edition = "2021"
rust-version = "1.77.2"
name = "tauri-agent-plugin"
version = "0.0.2"
authors = ["Byeongsu Hong"]
build = "build.rs"
links = "tauri-plugin-agent"
include = [
"/src/**/*.rs",
"/permissions/**",
"/build.rs",
"/Cargo.toml",
"/README.md",
"/LICENSE-MIT",
"/LICENSE-APACHE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Agent-facing control surface for live Tauri apps using compact semantic trees."
readme = "README.md"
keywords = [
"tauri",
"agent",
"debugger",
"automation",
"webview",
]
categories = [
"development-tools::debugging",
"gui",
"development-tools::testing",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/byeongsu-hong/tauri-agent-plugin"
[features]
cef = []
default = ["wry"]
unstable-multiwebview = ["tauri/unstable"]
wry = ["tauri/wry"]
[lib]
name = "tauri_agent_plugin"
crate-type = ["lib"]
path = "src/lib.rs"
[dependencies.base64]
version = "0.22"
[dependencies.getrandom]
version = "0.3"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tauri]
version = "2"
default-features = false
[dependencies.thiserror]
version = "2"
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tauri]
version = "2"
features = [
"test",
"unstable",
]
default-features = false
[build-dependencies.tauri-plugin]
version = "2"
features = ["build"]
[target.'cfg(target_os = "macos")'.dependencies.objc2]
version = "0.6"
default-features = false
[target.'cfg(target_os = "macos")'.dependencies.objc2-app-kit]
version = "0.3"
features = [
"std",
"NSBitmapImageRep",
"NSImageRep",
"NSView",
"NSWindow",
]
default-features = false
[target.'cfg(target_os = "macos")'.dependencies.objc2-foundation]
version = "0.3"
features = [
"std",
"NSData",
"NSDictionary",
]
default-features = false