mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-11 10:10:25 +01:00
2ce8500391
* Update unix biometrics for desktop biometrics rework * Implement polkit policy setup * Enable browser integration on Linux * Remove polkit policy file * Undo change to messages.json * Fix biometrics setup, implement missing functions * Implement osSupportsBiometrics * Fix polkit settings message * Remove unwraps in biometrics unix rust module * Force password reprompt on start on linux with biometrics * Merge branch 'main' into feature/unix-biometrics * Allow browser extension to be unlocked on Linux via Polkit * Implement availability check * Cleanup * Add auto-setup, manual setup, setup detection and change localized prompts * Implement missing methods * Add i18n to polkit message * Implement missing method * Small cleanup * Update polkit consent message * Fix unlock and print errors on failed biometrics * Add dependencies to core crate * Fix reference and update polkit policy * Remove async-trait * Add tsdoc * Add comment about auto setup * Delete unused init * Update help link * Remove additional settings for polkit * Add availability-check to passwords implementation on linux * Add availability test * Add availability check to libsecret * Expose availability check in napi crate * Update d.ts * Update osSupportsBiometric check to detect libsecret presence * Improve secret service detection * Add client half to Linux biometrics * Fix windows build * Remove unencrypted key handling for biometric key * Move rng to rust, align linux bio implementation with windows * Consolidate elevated commands into one * Disable snap support in linux biometrics --------- Co-authored-by: DigitallyRefined <129616584+DigitallyRefined@users.noreply.github.com>
56 lines
1.2 KiB
TOML
56 lines
1.2 KiB
TOML
[package]
|
|
edition = "2021"
|
|
license = "GPL-3.0"
|
|
name = "desktop_core"
|
|
version = "0.0.0"
|
|
publish = false
|
|
|
|
[features]
|
|
default = []
|
|
manual_test = []
|
|
|
|
[dependencies]
|
|
aes = "=0.8.4"
|
|
anyhow = "=1.0.86"
|
|
arboard = { version = "=3.4.0", default-features = false, features = [
|
|
"wayland-data-control",
|
|
] }
|
|
base64 = "=0.22.1"
|
|
cbc = { version = "=0.1.2", features = ["alloc"] }
|
|
libc = "0.2.155"
|
|
rand = "=0.8.5"
|
|
retry = "=2.0.0"
|
|
scopeguard = "=1.2.0"
|
|
sha2 = "=0.10.8"
|
|
thiserror = "=1.0.61"
|
|
tokio = { version = "1.38.0", features = ["io-util", "sync", "macros"] }
|
|
typenum = "=1.17.0"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
widestring = "=1.1.0"
|
|
windows = { version = "=0.57.0", features = [
|
|
"Foundation",
|
|
"Security_Credentials_UI",
|
|
"Security_Cryptography",
|
|
"Storage_Streams",
|
|
"Win32_Foundation",
|
|
"Win32_Security_Credentials",
|
|
"Win32_System_WinRT",
|
|
"Win32_UI_Input_KeyboardAndMouse",
|
|
"Win32_UI_WindowsAndMessaging",
|
|
] }
|
|
|
|
[target.'cfg(windows)'.dev-dependencies]
|
|
keytar = "=0.1.6"
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
core-foundation = "=0.9.4"
|
|
security-framework = "=2.11.0"
|
|
security-framework-sys = "=2.11.0"
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
gio = "=0.19.5"
|
|
libsecret = "=0.5.0"
|
|
zbus = "4.3.1"
|
|
zbus_polkit = "4.0.0"
|