mirror of
https://github.com/bitwarden/browser.git
synced 2025-02-15 01:11:47 +01:00
31 lines
656 B
TOML
31 lines
656 B
TOML
[package]
|
|
name = "macos_provider"
|
|
license = "GPL-3.0"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[[bin]]
|
|
name = "uniffi-bindgen"
|
|
path = "uniffi-bindgen.rs"
|
|
|
|
[lib]
|
|
crate-type = ["staticlib", "cdylib"]
|
|
bench = false
|
|
|
|
[dependencies]
|
|
desktop_core = { path = "../core" }
|
|
futures = "=0.3.31"
|
|
log = "0.4.22"
|
|
serde = { version = "1.0.205", features = ["derive"] }
|
|
serde_json = "1.0.122"
|
|
tokio = { version = "1.39.2", features = ["sync"] }
|
|
tokio-util = "0.7.11"
|
|
uniffi = { version = "0.28.3", features = ["cli"] }
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
oslog = "0.2.0"
|
|
|
|
[build-dependencies]
|
|
uniffi = { version = "0.28.3", features = ["build"] }
|