mirror of
https://github.com/bitwarden/browser
synced 2026-02-10 05:30:01 +00:00
31 lines
831 B
TOML
31 lines
831 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 = [
|
|
"System",
|
|
"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 }
|
|
tracing-appender = "0.2.4"
|
|
tracing-subscriber = { workspace = true }
|
|
ciborium = "0.2"
|
|
tokio = { workspace = true }
|
|
base64 = { workspace = true }
|
|
win_webauthn = { path = "../win_webauthn" }
|
|
|
|
[lints]
|
|
workspace = true |