mirror of
https://github.com/bitwarden/browser
synced 2025-12-30 07:03:26 +00:00
34 lines
793 B
TOML
34 lines
793 B
TOML
[package]
|
|
name = "macos_provider"
|
|
edition = { workspace = true }
|
|
license = { workspace = true }
|
|
version = { workspace = true }
|
|
publish = { workspace = true }
|
|
|
|
[[bin]]
|
|
name = "uniffi-bindgen"
|
|
path = "uniffi-bindgen.rs"
|
|
|
|
[lib]
|
|
crate-type = ["staticlib", "cdylib"]
|
|
bench = false
|
|
|
|
[dependencies]
|
|
uniffi = { workspace = true, features = ["cli"] }
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
desktop_core = { path = "../core" }
|
|
futures = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
tokio = { workspace = true, features = ["sync"] }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
tracing-oslog = "=0.3.0"
|
|
|
|
[build-dependencies]
|
|
uniffi = { workspace = true, features = ["build"] }
|
|
|
|
[lints]
|
|
workspace = true
|