[package]
edition = "2021"
rust-version = "1.77.2"
name = "tauri-plugin-vue"
version = "2.2.0"
authors = ["Andrew Ferreira <andrew.shien2@gmail.com>"]
build = "build.rs"
links = "tauri-plugin-vue"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Persistence for Tauri and Vue"
homepage = "https://tb.dev.br/tauri-store/plugin-vue/guide/getting-started"
documentation = "https://docs.rs/tauri-plugin-vue"
readme = "README.md"
keywords = [
"nuxt",
"plugin",
"store",
"tauri",
"vue",
]
categories = [
"filesystem",
"gui",
"web-programming",
]
license = "MIT"
repository = "https://github.com/ferreira-tb/tauri-store"
[package.metadata.docs.rs]
no-default-features = true
features = [
"marshaler-cbor",
"marshaler-ron",
"marshaler-toml",
]
[features]
file-sync-all = ["tauri-store/file-sync-all"]
marshaler-cbor = ["tauri-store/marshaler-cbor"]
marshaler-ron = ["tauri-store/marshaler-ron"]
marshaler-toml = ["tauri-store/marshaler-toml"]
preserve-order = ["tauri-store/preserve-order"]
[lib]
name = "tauri_plugin_vue"
path = "src/lib.rs"
[dependencies.serde]
version = "1.0"
[dependencies.tauri]
version = "2"
[dependencies.tauri-store]
version = "1"
features = ["derive"]
default-features = false
[build-dependencies.tauri-plugin]
version = "2.4"
features = ["build"]
[lints.clippy]
clone_on_ref_ptr = "deny"
filetype_is_file = "deny"
incompatible_msrv = "deny"
map_unwrap_or = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
missing_safety_doc = "deny"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_for_each = "allow"
rc_buffer = "deny"
rc_mutex = "deny"
rest_pat_in_fully_bound_structs = "deny"
single_match_else = "allow"
[lints.clippy.pedantic]
level = "deny"
priority = -1