mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-11 10:10:25 +01:00
55874b72bf
* [PM-7846] Implement a rust based native messaging proxy and IPC system
* Only build desktop_proxy
* Bundle the desktop_proxy file
* Make sys deps optional for the proxy
* Restore accidentally deleted after-sign
* Update native cache to contain dist folder
* Add some test logging
* Native module cache seems very aggressive
* Fix invalid directory
* Fix debug print
* Remove cache force
* Remove cache debug code
* Only log to file in debug builds
* Place the binary in the correct place for mac and make sure it's signed
* Fix platform paths
* Test unsigned appx
* Revert "Test unsigned appx"
This reverts commit e47535440a
.
* Fix comment
* Remove logs
* Use debug builds in native code, and test private path on MacOS
* Add connected message
* Update IPC API comments
* Update linux to also use XDG_ dir
* Update main.rs comment
* Improve docs and split some tasks spawned into separate functions
* Update send docs and return number of elements sent
* Mark `listen` as async to ensure it runs in a tokio context, handle errors better
* Add log on client channel closed
* Move binary to MacOS folder, and sign it manually so it gets the correct entitlements
* Fix some review comments
* Run prettier
* Added missing zbus_polkit dep
* Extract magic number and increase it to match spec
* Comment fix
* Use Napi object, combine nativeBinding export, always log to file
* Missed one comment
* Remove unnecessary generics
* Correct comment
* Select only codesigning identities
* Filter certificates
* Also add local dev cert
* Remove log
* Fix package ID
* debug_assert won't run the pop() in release mode
* Better error messages
* Fix review comments
* Remove unnecessary comment
* Update napi generated TS file
* Temporary fix for DDG
73 lines
1.8 KiB
TOML
73 lines
1.8 KiB
TOML
[package]
|
|
edition = "2021"
|
|
license = "GPL-3.0"
|
|
name = "desktop_core"
|
|
version = "0.0.0"
|
|
publish = false
|
|
|
|
[features]
|
|
default = ["sys"]
|
|
manual_test = []
|
|
|
|
sys = [
|
|
"dep:widestring",
|
|
"dep:windows",
|
|
"dep:core-foundation",
|
|
"dep:security-framework",
|
|
"dep:security-framework-sys",
|
|
"dep:gio",
|
|
"dep:libsecret",
|
|
"dep:zbus",
|
|
"dep:zbus_polkit",
|
|
]
|
|
|
|
[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"] }
|
|
dirs = "=5.0.1"
|
|
futures = "=0.3.30"
|
|
interprocess = { version = "=2.2.1", features = ["tokio"] }
|
|
libc = "=0.2.155"
|
|
log = "=0.4.22"
|
|
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"] }
|
|
tokio-util = "=0.7.11"
|
|
typenum = "=1.17.0"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
widestring = { version = "=1.1.0", optional = true }
|
|
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",
|
|
], optional = true }
|
|
|
|
[target.'cfg(windows)'.dev-dependencies]
|
|
keytar = "=0.1.6"
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
core-foundation = { version = "=0.9.4", optional = true }
|
|
security-framework = { version = "=2.11.0", optional = true }
|
|
security-framework-sys = { version = "=2.11.0", optional = true }
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
gio = { version = "=0.19.5", optional = true }
|
|
libsecret = { version = "=0.5.0", optional = true }
|
|
zbus = { version = "=4.3.1", optional = true }
|
|
zbus_polkit = { version = "=4.0.0", optional = true }
|