[package]
edition = "2021"
rust-version = "1.83"
name = "tauri-plugin-velesdb"
version = "1.5.1"
authors = ["Julien Lange <contact@wiscale.fr>"]
build = "build.rs"
links = "tauri-plugin-velesdb"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Tauri plugin for VelesDB - Vector search in desktop apps"
readme = "README.md"
keywords = [
"tauri",
"plugin",
"vector",
"database",
"search",
]
categories = [
"database",
"gui",
]
license-file = "LICENSE"
repository = "https://github.com/cyberlife-coder/VelesDB"
[features]
default = ["velesdb-core/default"]
gpu = ["velesdb-core/gpu"]
loom = ["velesdb-core/loom"]
persistence = ["velesdb-core/persistence"]
update-check = ["velesdb-core/update-check"]
[lib]
name = "tauri_plugin_velesdb"
path = "src/lib.rs"
[[test]]
name = "feature_parity"
path = "tests/feature_parity.rs"
[dependencies.dirs]
version = "5.0"
[dependencies.parking_lot]
version = "0.12"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.tauri]
version = "2.0"
default-features = false
[dependencies.thiserror]
version = "2.0"
[dependencies.tracing]
version = "0.1"
[dependencies.velesdb-core]
version = "1.5.1"
default-features = false
[dev-dependencies.tempfile]
version = "3.14"
[dev-dependencies.toml]
version = "0.8"
[build-dependencies.tauri-plugin]
version = "2.0"
features = ["build"]
[lints.clippy]
assertions_on_constants = "allow"
cast_lossless = "allow"
cast_possible_truncation = "warn"
cast_possible_wrap = "warn"
cast_precision_loss = "warn"
cast_sign_loss = "warn"
collapsible_if = "allow"
derive_partial_eq_without_eq = "allow"
doc_markdown = "allow"
if_not_else = "allow"
implicit_hasher = "allow"
imprecise_flops = "allow"
large_stack_arrays = "allow"
manual_assert = "allow"
manual_let_else = "allow"
match_single_binding = "allow"
missing_const_for_fn = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
non_send_fields_in_send_ty = "warn"
option_if_let_else = "allow"
ptr_as_ptr = "allow"
redundant_clone = "allow"
redundant_pub_crate = "allow"
set_contains_or_insert = "allow"
significant_drop_in_scrutinee = "allow"
significant_drop_tightening = "allow"
single_match_else = "allow"
struct_field_names = "allow"
suboptimal_flops = "allow"
uninlined_format_args = "allow"
unnecessary_cast = "allow"
unused_async = "allow"
unused_peekable = "allow"
unused_self = "allow"
use_self = "allow"
used_underscore_binding = "allow"
useless_let_if_seq = "allow"
wildcard_imports = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(loom)"]