Files
NexaVPN/desktop-client/src-tauri/Cargo.toml
nessi c921e86a11 feat: enable static_secrets feature for x25519-dalek in desktop client
Add static_secrets feature flag to x25519-dalek dependency to support deterministic key generation from seed material.
2026-03-17 19:40:56 +01:00

23 lines
630 B
TOML

[package]
name = "nexavpn-desktop"
version = "0.1.0"
description = "NexaVPN desktop client"
authors = ["NexaVPN"]
edition = "2021"
[lib]
name = "nexavpn_desktop"
crate-type = ["staticlib", "cdylib", "rlib"]
[build-dependencies]
tauri-build = { version = "2.5.5" }
[dependencies]
base64 = "0.22"
rand_core = { version = "0.6", features = ["getrandom"] }
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tauri = { version = "2.10.1", features = [] }
x25519-dalek = { version = "2.0", features = ["static_secrets"] }