mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-21 00:49:17 +01:00
* Search and install plugins PoC * Checksum * Tab sidebar for settings * Fix nested tabs, and tweaks * Table for plugin results * Deep links working * Focus window during deep links * Merge branch 'master' into plugin-directory * More stuff
21 lines
529 B
TOML
21 lines
529 B
TOML
[package]
|
|
name = "yaak-crypto"
|
|
links = "yaak-crypto"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
base32 = "0.5.1" # For encoding human-readable key
|
|
base64 = "0.22.1" # For encoding in the database
|
|
chacha20poly1305 = "0.10.1"
|
|
keyring = { version = "4.0.0-rc.1" }
|
|
log = "0.4.26"
|
|
serde = { workspace = true, features = ["derive"] }
|
|
tauri = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
yaak-models = { workspace = true }
|
|
|
|
[build-dependencies]
|
|
tauri-plugin = { workspace = true, features = ["build"] }
|