mirror of
https://github.com/bitwarden/browser
synced 2025-12-24 12:13:39 +00:00
* [PM-22783] Add initial feature flag and settings toggle for autotype MVP * [PM-22783] Undo Cargo.lock changes * [PM-22783] Disable console.log block * [PM-22783] Lint fix * [PM-22783] Small updates * [PM-22783] Build fix * [PM-22783] Use combineLatest in updating the desktop autotype service * [PM-22783] Check if the user is on Windows * [PM-22783] Undo access selector html change, linting keeps removing this * [PM-22783] Fix failing test * [PM-22788] Add initial desktop native autotype crate based on spike ticket investigation * [PM-22788] cargo fmt * [PM-22783] Update autotypeEnabled to be stored in service * [PM-22783] Add todo comments * [PM-22783] Add SlimConfigService and MainDesktopAutotypeService * [PM-22783] Small fixes * [PM-22788] Add get_foreground_window_title() and cleanup * [PM-22788] Add comment * [PM-22788] Lint and cross platform build fixes * [PM-22788] Update windows.rs in autotype_internal * [PM-22788] Update windows.rs and dummy.rs in autotype_internal * [PM-22788] cargo fmt * [PM-22788] Edit napi result types * [PM-22788] Edit napi result types again * [PM-22788] Add autofill as a codeowner of the desktop_native/autotype directory * [PM-22788] Refactor autotype code * [PM-22788] Move autotype dependency out of windows only due to abstraction change * [PM-22788] Fix lint errors * [PM-22788] Updates based on PR comments * [PM-22788] cargo fmt
67 lines
1.5 KiB
TOML
67 lines
1.5 KiB
TOML
[workspace]
|
|
resolver = "2"
|
|
members = ["napi", "core", "proxy", "macos_provider", "windows_plugin_authenticator", "autotype"]
|
|
|
|
[workspace.package]
|
|
version = "0.0.0"
|
|
license = "GPL-3.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[workspace.dependencies]
|
|
aes = "=0.8.4"
|
|
anyhow = "=1.0.94"
|
|
arboard = { version = "=3.6.0", default-features = false }
|
|
ashpd = "=0.11.0"
|
|
base64 = "=0.22.1"
|
|
bindgen = "=0.72.0"
|
|
bitwarden-russh = { git = "https://github.com/bitwarden/bitwarden-russh.git", rev = "a641316227227f8777fdf56ac9fa2d6b5f7fe662" }
|
|
byteorder = "=1.5.0"
|
|
bytes = "=1.10.1"
|
|
cbc = "=0.1.2"
|
|
core-foundation = "=0.10.0"
|
|
dirs = "=6.0.0"
|
|
ed25519 = "=2.2.3"
|
|
embed_plist = "=1.2.2"
|
|
futures = "=0.3.31"
|
|
hex = "=0.4.3"
|
|
homedir = "=0.3.4"
|
|
interprocess = "=2.2.1"
|
|
keytar = "=0.1.6"
|
|
libc = "=0.2.172"
|
|
log = "=0.4.25"
|
|
napi = "=2.16.17"
|
|
napi-build = "=2.2.0"
|
|
napi-derive = "=2.16.13"
|
|
oo7 = "=0.4.3"
|
|
oslog = "=0.2.0"
|
|
pin-project = "=1.1.10"
|
|
pkcs8 = "=0.10.2"
|
|
rand = "=0.9.1"
|
|
rsa = "=0.9.6"
|
|
russh-cryptovec = "=0.7.3"
|
|
scopeguard = "=1.2.0"
|
|
security-framework = "=3.1.0"
|
|
security-framework-sys = "=2.13.0"
|
|
serde = "=1.0.209"
|
|
serde_json = "=1.0.127"
|
|
sha2 = "=0.10.8"
|
|
simplelog = "=0.12.2"
|
|
ssh-encoding = "=0.2.0"
|
|
ssh-key = {version = "=0.6.7", default-features = false }
|
|
sysinfo = "=0.35.0"
|
|
thiserror = "=2.0.12"
|
|
tokio = "=1.45.0"
|
|
tokio-stream = "=0.1.15"
|
|
tokio-util = "=0.7.13"
|
|
typenum = "=1.18.0"
|
|
uniffi = "=0.28.3"
|
|
widestring = "=1.2.0"
|
|
windows = "=0.61.1"
|
|
windows-core = "=0.61.0"
|
|
windows-future = "=0.2.0"
|
|
windows-registry = "=0.5.3"
|
|
zbus = "=5.5.0"
|
|
zbus_polkit = "=5.0.0"
|
|
zeroizing-alloc = "=0.1.0"
|