mirror of
https://github.com/bitwarden/browser
synced 2026-02-11 05:53:42 +00:00
29 lines
749 B
TOML
29 lines
749 B
TOML
[package]
|
|
name = "windows_plugin_authenticator"
|
|
version = { workspace = true }
|
|
edition = { workspace = true }
|
|
license = { workspace = true }
|
|
publish = { workspace = true }
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
desktop_core = { path = "../core" }
|
|
futures = { workspace = true }
|
|
windows = { workspace = true, features = [
|
|
"Win32_Foundation",
|
|
"Win32_Security",
|
|
"Win32_System_Com",
|
|
"Win32_System_LibraryLoader",
|
|
"Win32_UI_HiDpi",
|
|
] }
|
|
windows-core = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
tracing = { workspace = true }
|
|
ciborium = "0.2"
|
|
tokio = { workspace = true }
|
|
base64 = { workspace = true }
|
|
win_webauthn = { path = "../win_webauthn" }
|
|
|
|
[lints]
|
|
workspace = true
|