the main plugins and dependencies have been added

This commit is contained in:
Александр Ебаклаков
2026-03-21 22:34:12 +03:00
parent c0a1fa6273
commit ce6e025d0e
8 changed files with 2909 additions and 23 deletions

1064
src-tauri/Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,12 +1,12 @@
[package]
name = "abdristus"
version = "0.1.0"
version = "0.0.0"
description = "Cross-platform password manager built with Tauri and Angular"
authors = ["you"]
authors = ["stopmnenepriyatno"]
license = "MIT"
repository = ""
edition = "2021"
rust-version = "1.77.2"
repository = "https://github.com/stopmnenepriyatno/abdristus"
edition = "2024"
rust-version = "1.94.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@@ -15,11 +15,18 @@ name = "app_lib"
crate-type = ["staticlib", "cdylib", "rlib"]
[build-dependencies]
tauri-build = { version = "2.5.6" }
tauri-build = { version = "2.5.6", features = [] }
[dependencies]
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
log = "0.4"
tauri = { version = "2.10.3" }
tauri = { version = "2.10.3", features = [] }
tauri-plugin-log = "2"
argon2 = "0.5.3"
chacha20poly1305 = "0.10.1"
keyring = "3.6.3"
sqlx = { version = "0.8.6", features = ["sqlite", "runtime-tokio-rustls"] }
uuid = { version = "1.22.0", features = ["v4"] }
tokio = { version = "1.50.0", features = ["full"] }
tauri-plugin-global-shortcut = "2.3.1"

View File

@@ -6,6 +6,7 @@ mod events;
#[cfg_attr(mobile, tauri::mobile_entry_point)]
pub fn run() {
tauri::Builder::default()
.plugin(tauri_plugin_global_shortcut::Builder::new().build())
.setup(|app| {
if cfg!(debug_assertions) {
app.handle().plugin(