mirror of
https://github.com/bitwarden/browser
synced 2026-02-09 13:10:17 +00:00
30 lines
800 B
TOML
30 lines
800 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",
|
|
] }
|
|
windows-core = { workspace = true }
|
|
hex = { workspace = true }
|
|
reqwest = { version = "0.12", features = ["json", "blocking"] }
|
|
serde_json = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
ciborium = "0.2"
|
|
sha2 = "0.10"
|
|
tokio = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|