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

feat: builder pattern for id_token and response #26

Merged
merged 30 commits into from
Jun 7, 2023
Merged
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
586c6da
Add support for Request by reference
nanderstabel Apr 14, 2023
0bd23b7
Improve struct field serde
nanderstabel Apr 17, 2023
6c67a90
fix: remove custom serde
nanderstabel Apr 19, 2023
eb5990d
Add claims and scope parameters
nanderstabel Apr 19, 2023
c4e78b6
Add Storage and RelyingParty test improvement
nanderstabel Apr 19, 2023
cbf35ac
Update README example
nanderstabel Apr 19, 2023
db8e0b6
fix: Add standard_claims to test IdToken
nanderstabel Apr 19, 2023
ba19bf9
Move Storage trait to test_utils
nanderstabel Apr 19, 2023
7c424d9
Remove storage.rs
nanderstabel Apr 19, 2023
4f28f97
fix: fix dev-dependencies
nanderstabel Apr 24, 2023
47f728c
fix: fex rebase to dev
nanderstabel Apr 25, 2023
41a2339
fix: fix rebase to dev
nanderstabel Apr 25, 2023
ce6a463
feat: add Claim trait with associated types
nanderstabel May 12, 2023
5cabc48
fix: build
nanderstabel May 23, 2023
40d0d06
fix: remove build.rs and change crate name in doc tests
nanderstabel May 24, 2023
bbcf6e7
feat: refactor claims.rs
nanderstabel May 30, 2023
1db5af7
feat: Add builder for Response and IdToken
nanderstabel May 24, 2023
970cf9b
fix: silence clippy warning
nanderstabel May 30, 2023
23f9e48
feat: add missing ID Token claim parameters
nanderstabel May 30, 2023
6fe43e8
fix: remove skeptic crate
nanderstabel Apr 25, 2023
d5a2542
feat: allow json arguments for claims() method
nanderstabel May 12, 2023
7a96a0f
fix: replace unwraps
nanderstabel May 21, 2023
3a7be43
style: add specific request folder
nanderstabel May 26, 2023
3187c47
fix: undo unnecassary cloning
nanderstabel May 31, 2023
015c970
style: explicit serde_json usage
nanderstabel May 31, 2023
7534575
test: improve RequestBuilder tests
nanderstabel May 31, 2023
79053a2
fix: fix rebase
nanderstabel Jun 5, 2023
7907fac
style: Rename SiopRequest and add comments
nanderstabel Jun 5, 2023
c0d8b8c
style: rename Request and Response
nanderstabel Jun 5, 2023
50d4842
style: remove whitespace
nanderstabel Jun 7, 2023
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
Prev Previous commit
Next Next commit
fix: Add standard_claims to test IdToken
nanderstabel committed Jun 5, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit db8e0b601a607591ecfc103acf5e99768d57c7e4
2 changes: 1 addition & 1 deletion src/subject.rs
Original file line number Diff line number Diff line change
@@ -37,7 +37,7 @@ where
#[cfg(test)]
mod tests {
use super::*;
use crate::{test_utils::MockSubject, IdToken, Validator};
use crate::{test_utils::MockSubject, IdToken, StandardClaims, Validator};
use serde_json::json;

#[tokio::test]