1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-05 11:13:44 +00:00

Fix cargo toml

This commit is contained in:
Bernd Schoolmann
2025-08-29 14:55:11 +02:00
parent 9f51f85b10
commit f4d1c33f5a
3 changed files with 4 additions and 4 deletions

View File

@@ -892,7 +892,6 @@ dependencies = [
"byteorder",
"bytes",
"cbc",
"chacha20",
"chacha20poly1305",
"core-foundation",
"desktop_objc",

View File

@@ -18,6 +18,7 @@ bitwarden-russh = { git = "https://github.com/bitwarden/bitwarden-russh.git", re
byteorder = "=1.5.0"
bytes = "=1.10.1"
cbc = "=0.1.2"
chacha20poly1305 = "0.10.1"
core-foundation = "=0.10.0"
dirs = "=6.0.0"
ed25519 = "=2.2.3"
@@ -29,6 +30,7 @@ interprocess = "=2.2.1"
keytar = "=0.1.6"
libc = "=0.2.172"
log = "=0.4.25"
memsec = "0.7.0"
napi = "=2.16.17"
napi-build = "=2.2.0"
napi-derive = "=2.16.13"

View File

@@ -55,11 +55,10 @@ ed25519 = { workspace = true, features = ["pkcs8"] }
bytes = { workspace = true }
sysinfo = { workspace = true, features = ["windows"] }
zeroizing-alloc = { workspace = true }
chacha20 = "0.9.1"
chacha20poly1305 = "0.10.1"
chacha20poly1305 = { workspace = true }
serde = { workspace = true, features = ["derive"] }
serde_json.workspace = true
memsec = { version = "0.7.0", features = ["alloc_ext"] }
memsec = { workspace = true, features = ["alloc_ext"] }
[target.'cfg(windows)'.dependencies]
widestring = { workspace = true, optional = true }