Skip to content

Commit

Permalink
fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
abdulmth committed Dec 11, 2023
1 parent afec75a commit 6670730
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions examples/sd_jwt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ use josekit::jws::JwsHeader;
use josekit::jws::HS256;
use josekit::jwt::JwtPayload;
use josekit::jwt::{self};
use sd_jwt::Disclosure;
use sd_jwt::SdJwt;
use sd_jwt::SdObjectDecoder;
use sd_jwt::SdObjectEncoder;
use sd_jwt_payload::Disclosure;
use sd_jwt_payload::SdJwt;
use sd_jwt_payload::SdObjectDecoder;
use sd_jwt_payload::SdObjectEncoder;
use serde_json::json;

fn main() -> Result<(), Box<dyn Error>> {
Expand Down
8 changes: 4 additions & 4 deletions tests/api_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ use serde_json::json;
use serde_json::Map;
use serde_json::Value;

use sd_jwt::Disclosure;
use sd_jwt::SdJwt;
use sd_jwt::SdObjectDecoder;
use sd_jwt::SdObjectEncoder;
use sd_jwt_payload::Disclosure;
use sd_jwt_payload::SdJwt;
use sd_jwt_payload::SdObjectDecoder;
use sd_jwt_payload::SdObjectEncoder;

#[test]
fn test_complex_structure() {
Expand Down

0 comments on commit 6670730

Please sign in to comment.