mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 00:03:56 +00:00
* Moved all desktop native dependencies to workspace * Excluded workspace Cargo.toml from code ownership * Added all Cargo dependencies to Renovate config * Fixed from test warnings. * Updates to lockfile
19 lines
550 B
TOML
19 lines
550 B
TOML
[package]
|
|
name = "desktop_proxy"
|
|
edition = { workspace = true }
|
|
license = { workspace = true }
|
|
version = { workspace = true }
|
|
publish = { workspace = true }
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
desktop_core = { path = "../core" }
|
|
futures = { workspace = true }
|
|
log = { workspace = true }
|
|
simplelog = { workspace = true }
|
|
tokio = { workspace = true, features = ["io-std", "io-util", "macros", "rt"] }
|
|
tokio-util = { workspace = true, features = ["codec"] }
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
embed_plist = { workspace = true }
|