Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weโ€™ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[PM-17619] Add Intial Windows WebAuthn Plugin Authenticator Bindings Crate #13112

Merged
merged 23 commits into from
Feb 3, 2025
Merged
Show file tree
Hide file tree
Changes from 21 commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
b101094
PM-17619: Add intial Windows WebAuthn Plugin Authenticator bindings cโ€ฆ
coltonhurst Jan 28, 2025
0265a55
Merge branch 'main' into autofill/pm-17619/initial-win-pa-bindings
coltonhurst Jan 28, 2025
0b6004c
PM-17619: Move crate to desktop_native
coltonhurst Jan 29, 2025
be7e576
Merge branch 'main' into autofill/pm-17619/initial-win-pa-bindings
coltonhurst Jan 29, 2025
fb39f20
PM-17619: Update codeowners file
coltonhurst Jan 29, 2025
a0e5d72
PM-17619: Fix failing Mac build
coltonhurst Jan 29, 2025
946a9b6
Merge branch 'main' into autofill/pm-17619/initial-win-pa-bindings
coltonhurst Jan 29, 2025
a1358ff
PM-17619: Switch to OUT_DIR
coltonhurst Jan 29, 2025
4edd5bc
PM-17619: cargo fmt
coltonhurst Jan 29, 2025
6c1ae75
PM-17619: Update bindings output dir
coltonhurst Jan 29, 2025
18acf4b
Merge branch 'main' into autofill/pm-17619/initial-win-pa-bindings
coltonhurst Jan 29, 2025
f21704e
PM-17619: Use std::env::var for OUT_DIR
coltonhurst Jan 30, 2025
7d2887e
Merge branch 'main' into autofill/pm-17619/initial-win-pa-bindings
coltonhurst Jan 30, 2025
22940c3
PM-17619: Prevent clippy failures on the generated Rust code
coltonhurst Jan 30, 2025
344b643
Merge branch 'main' into autofill/pm-17619/initial-win-pa-bindings
coltonhurst Jan 30, 2025
f6e8e39
PM-17619: Test moving the clippy:all
coltonhurst Jan 31, 2025
cdedc27
PM-17619: Small updates
coltonhurst Jan 31, 2025
a3436d4
Merge main into branch
coltonhurst Jan 31, 2025
937afca
PM-17619: Remove todo
coltonhurst Jan 31, 2025
f849e6b
PM-17619: Ignore rustc warnings on the generated code
coltonhurst Jan 31, 2025
158ade1
Merge branch 'main' into autofill/pm-17619/initial-win-pa-bindings
coltonhurst Jan 31, 2025
65481bc
PM-17619: Address PR comments
coltonhurst Feb 3, 2025
7531297
Merge branch 'main' into autofill/pm-17619/initial-win-pa-bindings
coltonhurst Feb 3, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ apps/browser/src/autofill @bitwarden/team-autofill-dev
apps/desktop/src/autofill @bitwarden/team-autofill-dev
libs/common/src/autofill @bitwarden/team-autofill-dev
apps/desktop/macos/autofill-extension @bitwarden/team-autofill-dev
apps/desktop/desktop_native/windows-plugin-authenticator @bitwarden/team-autofill-dev
# DuckDuckGo integration
apps/desktop/native-messaging-test-runner @bitwarden/team-autofill-dev
apps/desktop/src/services/duckduckgo-message-handler.service.ts @bitwarden/team-autofill-dev
Expand Down
1 change: 1 addition & 0 deletions apps/desktop/desktop_native/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ index.node
npm-debug.log*
*.node
dist
windows_pluginauthenticator_bindings.rs
72 changes: 72 additions & 0 deletions apps/desktop/desktop_native/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion apps/desktop/desktop_native/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[workspace]
resolver = "2"
members = ["napi", "core", "proxy", "macos_provider"]
members = ["napi", "core", "proxy", "macos_provider", "windows-plugin-authenticator"]

[workspace.dependencies]
anyhow = "=1.0.94"
Expand Down
Loading
Loading