Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
360 changes: 354 additions & 6 deletions src-tauri/Cargo.lock

Large diffs are not rendered by default.

10 changes: 10 additions & 0 deletions src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,16 @@ tauri-plugin-updater = "2"
tauri-plugin-dialog = "2"
dirs = "5.0"
toml = "0.8"
reqwest = { version = "0.12", features = ["json", "blocking"] }
tokio = { version = "1.40", features = ["full"] }
base64 = "0.22"
chrono = { version = "0.4", features = ["serde"] }
ring = "0.17"
uuid = { version = "1.11", features = ["v4", "serde"] }
sha2 = "0.10"
chacha20poly1305 = "0.10"
pbkdf2 = "0.12"
rand = "0.8"

[target.'cfg(any(target_os = "macos", target_os = "windows", target_os = "linux"))'.dependencies]
tauri-plugin-single-instance = "2"
Expand Down
8 changes: 8 additions & 0 deletions src-tauri/clippy.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
msrv = "1.75.0"

# Allow certain lints for the cloud_sync module
warn-on-all-wildcard-imports = true
too-many-arguments-threshold = 8
single-char-binding-names-threshold = 4
type-complexity-threshold = 250
cognitive-complexity-threshold = 25
Loading