Skip to content

Commit

Permalink
fix: remove build.rs and change crate name in doc tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nanderstabel committed May 24, 2023
1 parent ad71edf commit 1e8e818
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ homepage = "https://www.impierce.com/"
keywords = ["openid4vc", "siopv2", "openid4vp", "openid4vci", "OpenID Connect"]
license = "Apache-2.0"
repository = "https://github.com/impierce/openid4vc"
build = "build.rs"

[dependencies]
tokio = { version = "1.26.0", features = ["rt", "macros", "rt-multi-thread"] }
Expand Down
2 changes: 1 addition & 1 deletion src/claims.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ impl<T: Serialize + Default + Clone + DeserializeOwned> Claim for ClaimValue<T>
/// specification.
/// # Example
/// ```
/// # use siopv2::claims::{StandardClaims, IndividualClaimRequest};
/// # use openid4vc::claims::{StandardClaims, IndividualClaimRequest};
/// # use serde_json::json;
/// let claims = serde_json::from_value::<StandardClaims<IndividualClaimRequest>>(json!({
/// "name": null,
Expand Down
2 changes: 1 addition & 1 deletion src/request.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ use std::str::FromStr;
/// # Examples
///
/// ```
/// # use siopv2::RequestUrl;
/// # use openid4vc::RequestUrl;
/// # use std::str::FromStr;
///
/// // An example of a form-urlencoded request with only the `request_uri` parameter will be parsed as a
Expand Down

0 comments on commit 1e8e818

Please sign in to comment.