[package]
edition = "2021"
name = "tauri-plugin-sync-state"
version = "0.1.0"
build = "build.rs"
links = "tauri-plugin-sync-state"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Bidirectional, type-keyed state sync between a Tauri backend and a JS/React frontend."
homepage = "https://github.com/KingRainbow44/tauri-plugin-sync-state"
documentation = "https://docs.rs/tauri-plugin-sync-state"
readme = "README.md"
keywords = [
"tauri",
"state",
"sync",
"ipc",
"react",
]
categories = [
"gui",
"web-programming",
]
license = "MIT"
repository = "https://github.com/KingRainbow44/tauri-plugin-sync-state"
[lib]
name = "tauri_plugin_sync_state"
path = "src/lib.rs"
[[test]]
name = "registry"
path = "tests/registry.rs"
[dependencies.log]
version = "0.4"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tauri]
version = "2"
features = ["wry"]
default-features = false
[dependencies.tauri-plugin-sync-state-macros]
version = "0.1.0"
[dependencies.thiserror]
version = "1"
[dev-dependencies.tauri]
version = "2"
features = ["test"]
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt",
"rt-multi-thread",
]
[build-dependencies.tauri-plugin]
version = "2"
features = ["build"]