tauri-plugin-pg-sync 0.1.11

Offline-first PostgreSQL sync plugin for Tauri apps
[build-dependencies.tauri-plugin]
features = ["build"]
version = "2"

[dependencies.anyhow]
version = "1.0"

[dependencies.chrono]
features = ["serde"]
version = "0.4"

[dependencies.geo]
version = "0.28"

[dependencies.log]
version = "0.4"

[dependencies.rusqlite]
features = ["bundled", "blob"]
version = "0.31"

[dependencies.serde]
features = ["derive"]
version = "1"

[dependencies.serde_json]
version = "1"

[dependencies.sqlx]
default-features = false
features = ["runtime-tokio", "tls-native-tls", "postgres", "uuid", "json", "chrono"]
version = "0.8"

[dependencies.tauri]
default-features = false
version = "2"

[dependencies.tauri-plugin]
features = ["runtime"]
version = "2"

[dependencies.thiserror]
version = "1.0"

[dependencies.tokio]
features = ["full"]
version = "1"

[dependencies.uuid]
features = ["v4", "serde"]
version = "1.0"

[dependencies.wkb]
version = "0.7"

[features]
default = []
geo = []

[lib]
name = "tauri_plugin_pg_sync"
path = "src/lib.rs"

[package]
authors = ["BiShen <bishen@live.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = "build.rs"
categories = ["database", "asynchronous"]
description = "Offline-first PostgreSQL sync plugin for Tauri apps"
documentation = "https://docs.rs/tauri-plugin-pg-sync"
edition = "2021"
exclude = ["PUBLISHING.md"]
keywords = ["tauri", "plugin", "postgresql", "sync", "offline-first"]
license = "MIT"
links = "tauri-plugin-pg-sync"
name = "tauri-plugin-pg-sync"
readme = "README.md"
repository = "https://github.com/bishen/tauri-plugin-pg-sync"
rust-version = "1.70"
version = "0.1.11"

[package.metadata.docs.rs]
rustc-args = ["--cfg", "docsrs"]
rustdoc-args = ["--cfg", "docsrs"]

[target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies.native-tls]
version = "0.2"

[target.'cfg(target_os = "android")'.dependencies.sqlx]
default-features = false
features = ["runtime-tokio", "tls-rustls", "postgres", "uuid", "json", "chrono"]
version = "0.8"

[target.'cfg(target_os = "ios")'.dependencies.sqlx]
default-features = false
features = ["runtime-tokio", "tls-rustls", "postgres", "uuid", "json", "chrono"]
version = "0.8"