-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* WIP: Add OAuth resolvers * WIP: Add DpopClient * Add PKSC, exchange code * Update http_client, use generics * Update config for client and resolvers * Unify resolver traits * Update * Implement client authentication * Remove k256, use jose methods for dpop request * Support wasm32 * Update resolvers, add examples for oauth * Update resolver config * Add DohDnsTxtResolver as optional * Update store * Move to atrium-identity, add cached_resolver * Add workflows * Add wasm32 cached_resolver * Add wasm workflows * identity: Add throttled_resolver * Update atrium-identity * Update oauth-client * Update resolvers * Fix SimpleStore trait
- Loading branch information
Showing
58 changed files
with
4,168 additions
and
285 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Identity | ||
|
||
on: | ||
push: | ||
branches: ["main"] | ||
pull_request: | ||
branches: ["main"] | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Build | ||
run: | | ||
cargo build -p atrium-identity --verbose | ||
- name: Run tests | ||
run: | | ||
cargo test -p atrium-identity --lib | ||
cargo test -p atrium-identity --lib --no-default-features --features doh-handle-resolver |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: OAuth Client | ||
|
||
on: | ||
push: | ||
branches: ["main"] | ||
pull_request: | ||
branches: ["main"] | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Build | ||
run: | | ||
cargo build -p atrium-oauth-client --verbose | ||
- name: Run tests | ||
run: | | ||
cargo test -p atrium-oauth-client --lib | ||
cargo test -p atrium-oauth-client --lib --no-default-features |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.