mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-05 09:10:53 +01:00
687f0e590a
* [deps] Platform: Update Rust crate libsecret to v0.5.0 * Update gio to match with the version from libsecret --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Daniel García <dani-garcia@users.noreply.github.com>
59 lines
1.3 KiB
TOML
59 lines
1.3 KiB
TOML
[package]
|
|
edition = "2021"
|
|
exclude = ["index.node"]
|
|
license = "GPL-3.0"
|
|
name = "desktop_native"
|
|
version = "0.0.0"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[features]
|
|
default = []
|
|
manual_test = []
|
|
|
|
[dependencies]
|
|
aes = "=0.8.4"
|
|
anyhow = "=1.0.80"
|
|
arboard = { version = "=3.3.0", default-features = false, features = ["wayland-data-control"] }
|
|
base64 = "=0.21.5"
|
|
cbc = { version = "=0.1.2", features = ["alloc"] }
|
|
napi = { version = "=2.13.3", features = ["async"] }
|
|
napi-derive = "=2.13.0"
|
|
rand = "=0.8.5"
|
|
retry = "=2.0.0"
|
|
scopeguard = "=1.2.0"
|
|
sha2 = "=0.10.8"
|
|
thiserror = "=1.0.51"
|
|
tokio = { version = "=1.32.0", features = ["full"] }
|
|
typenum = "=1.17.0"
|
|
|
|
[build-dependencies]
|
|
napi-build = "=2.0.1"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
widestring = "=1.0.2"
|
|
windows = { version = "=0.54.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.9.2"
|
|
security-framework-sys = "=2.9.1"
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
gio = "=0.19.2"
|
|
libsecret = "=0.5.0"
|