mirror of
https://github.com/bitwarden/browser
synced 2026-01-05 18:13:26 +00:00
* [BEEEP][PM-255518] Use tracing for improved observability
* feedback dani-garcia: use DefaultVisitor
* set default log level
* convert printlns in objc crate
* convert printlns in autotype crate
* convert printlns in autostart crate
* convert printlns in core/password crate
* convert printlns in core/biometric crate
* convert printlns in napi crate
* convert log usage in macos provider crate
* convert existing log macros to tracing
* fix the cargo.toml sort lint errors
* Revert "fix the cargo.toml sort lint errors"
This reverts commit fd149ab697.
* fix the sort lint using correct cargo sort version
* feedback coltonhurst: more comments/clarity on behavior
* revert changes to ssh_agent
35 lines
816 B
TOML
35 lines
816 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]
|
|
desktop_core = { path = "../core" }
|
|
futures = { workspace = true }
|
|
log = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
tokio = { workspace = true, features = ["sync"] }
|
|
tokio-util = { workspace = true }
|
|
tracing = { workspace = true }
|
|
uniffi = { workspace = true, features = ["cli"] }
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
oslog = { workspace = true }
|
|
|
|
[build-dependencies]
|
|
uniffi = { workspace = true, features = ["build"] }
|
|
|
|
[lints]
|
|
workspace = true
|