mirror of
https://github.com/bitwarden/browser
synced 2025-12-24 04:04:24 +00:00
* Extract windows biometrics v2 changes Co-authored-by: Bernd Schoolmann <mail@quexten.com> * Address some code review feedback * cargo fmt * rely on zeroizing allocator * Handle TDE edge cases * Update windows default * Make windows rust code async and fix restoring focus freezes * fix formatting * cleanup native logging * Add unit test coverage * Add missing logic to edge case for PIN disable. * Address code review feedback * fix test * code review changes * fix clippy warning * Swap to unimplemented on each method * Implement encrypted memory store * Make dpapi secure key container pub(super) * Add comments on sync and send * Clean up comments * Clean up * Fix build * Add logging and update codeowners * Run cargo fmt * Clean up doc * fix unit tests * Update apps/desktop/desktop_native/core/src/secure_memory/secure_key/mod.rs Co-authored-by: Thomas Avery <43214426+Thomas-Avery@users.noreply.github.com> * Handle tampering with re-key and log * Add docs * Fix windows build * Prevent rust flycheck log from being commited to git * Undo feature flag change * Add env var override and docs * Add deps to km owership --------- Co-authored-by: Thomas Avery <tavery@bitwarden.com> Co-authored-by: Thomas Avery <43214426+Thomas-Avery@users.noreply.github.com>
99 lines
3.0 KiB
TOML
99 lines
3.0 KiB
TOML
[package]
|
|
name = "desktop_core"
|
|
edition = { workspace = true }
|
|
license = { workspace = true }
|
|
version = { workspace = true }
|
|
publish = { workspace = true }
|
|
|
|
[features]
|
|
default = [
|
|
"dep:widestring",
|
|
"dep:windows",
|
|
"dep:core-foundation",
|
|
"dep:security-framework",
|
|
"dep:security-framework-sys",
|
|
"dep:zbus",
|
|
"dep:zbus_polkit"
|
|
]
|
|
manual_test = []
|
|
|
|
[dependencies]
|
|
aes = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
arboard = { workspace = true, features = ["wayland-data-control"] }
|
|
base64 = { workspace = true }
|
|
bitwarden-russh = { workspace = true }
|
|
byteorder = { workspace = true }
|
|
bytes = { workspace = true }
|
|
cbc = { workspace = true, features = ["alloc"] }
|
|
chacha20poly1305 = { workspace = true }
|
|
dirs = { workspace = true }
|
|
ed25519 = { workspace = true, features = ["pkcs8"] }
|
|
futures = { workspace = true }
|
|
homedir = { workspace = true }
|
|
interprocess = { workspace = true, features = ["tokio"] }
|
|
memsec = { workspace = true, features = ["alloc_ext"] }
|
|
pin-project = { workspace = true }
|
|
pkcs8 = { workspace = true, features = ["alloc", "encryption", "pem"] }
|
|
rand = { workspace = true }
|
|
rsa = { workspace = true }
|
|
russh-cryptovec = { workspace = true }
|
|
scopeguard = { workspace = true }
|
|
secmem-proc = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
sha2 = { workspace = true }
|
|
ssh-encoding = { workspace = true }
|
|
ssh-key = { workspace = true, features = [
|
|
"encryption",
|
|
"ed25519",
|
|
"rsa",
|
|
"getrandom",
|
|
] }
|
|
sysinfo = { workspace = true, features = ["windows"] }
|
|
thiserror = { workspace = true }
|
|
tokio = { workspace = true, features = ["io-util", "sync", "macros", "net"] }
|
|
tokio-stream = { workspace = true, features = ["net"] }
|
|
tokio-util = { workspace = true, features = ["codec"] }
|
|
tracing = { workspace = true }
|
|
typenum = { workspace = true }
|
|
zeroizing-alloc = { workspace = true }
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
widestring = { workspace = true, optional = true }
|
|
windows = { workspace = true, features = [
|
|
"Foundation",
|
|
"Security_Credentials_UI",
|
|
"Security_Cryptography",
|
|
"Storage_Streams",
|
|
"Win32_Foundation",
|
|
"Win32_Security_Credentials",
|
|
"Win32_Security_Cryptography",
|
|
"Win32_System_WinRT",
|
|
"Win32_UI_Input_KeyboardAndMouse",
|
|
"Win32_UI_WindowsAndMessaging",
|
|
"Win32_System_Pipes",
|
|
], optional = true }
|
|
windows-future = { workspace = true }
|
|
|
|
[target.'cfg(windows)'.dev-dependencies]
|
|
keytar = { workspace = true }
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
core-foundation = { workspace = true, optional = true }
|
|
security-framework = { workspace = true, optional = true }
|
|
security-framework-sys = { workspace = true, optional = true }
|
|
desktop_objc = { path = "../objc" }
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
oo7 = { workspace = true }
|
|
libc = { workspace = true }
|
|
linux-keyutils = { workspace = true }
|
|
ashpd = { workspace = true }
|
|
|
|
zbus = { workspace = true, optional = true }
|
|
zbus_polkit = { workspace = true, optional = true }
|
|
|
|
[lints]
|
|
workspace = true
|