mirror of
https://github.com/bitwarden/browser
synced 2025-12-25 12:43:36 +00:00
* PM-9126: Initial scaffolding for com object registration * PM-9126: Clean Up PACOMObject trait and impl * PM-9126: Add unsafe tests * PM-9126: Clean up registration PR with a working CoRegisterClassObject call * PM-9126: Add AddAuthenticator fn call * PM-9126: Load AddAuthenticator fn call dynamically * PM-9126: Add AddAuthenticator experiments * PR-9126: add brackets around guids * PM-9126: clean up part 1 * PM-9126: Cleanup changes * Only call the register function if on Windows * PM-9126: Block two generated types that create issues for the i686-pc-windows-msvc target * PM-9126: Refine bindings file * PM-9126: Address PR comments part 1 * PM-9126: Address PR comments part 2 * PM-9126: Return result in napi layer * PM-9126: Propogate error from add authenticator call * PM-9126: Change for version update
35 lines
873 B
TOML
35 lines
873 B
TOML
[package]
|
|
name = "desktop_napi"
|
|
exclude = ["index.node"]
|
|
edition = { workspace = true }
|
|
license = { workspace = true }
|
|
version = { workspace = true }
|
|
publish = { workspace = true }
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[features]
|
|
default = []
|
|
manual_test = []
|
|
|
|
[dependencies]
|
|
base64 = { workspace = true }
|
|
hex = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
desktop_core = { path = "../core" }
|
|
napi = { workspace = true, features = ["async"] }
|
|
napi-derive = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tokio-util = { workspace = true }
|
|
tokio-stream = { workspace = true }
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
windows-registry = { workspace = true }
|
|
windows_plugin_authenticator = { path = "../windows_plugin_authenticator" }
|
|
|
|
[build-dependencies]
|
|
napi-build = { workspace = true }
|