Skip to content

Commit

Permalink
Update oxrdf, oxttl, and rdf-canon dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
yamdan committed Mar 18, 2024
1 parent 47efee4 commit 0000eba
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ serde = "1.0"
serde_cbor = "0.11"
serde_with = "3.2"

oxrdf = "0.2.0-alpha.1"
oxttl = "0.1.0-alpha.1"
oxrdf = "0.2.0-alpha.3"
oxttl = "0.1.0-alpha.3"
oxsdatatypes = "0.2.0-alpha.1"
oxiri = "0.2.3-alpha.1"

rdf-canon = "0.15.0-alpha.2"
rdf-canon = "0.15.0-alpha.5"

proof_system = { version = "0.24", default-features = false }
bbs_plus = { version = "0.18", default-features = false }
Expand Down
6 changes: 3 additions & 3 deletions src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ pub enum RDFProofsError {
Multibase(multibase::Error),
MissingInputToDeriveProof,
IriParse(oxiri::IriParseError),
TtlParse(oxttl::ParseError),
TtlParse(oxttl::TurtleParseError),
TtlTermParse(String),
InvalidDeanonMapFormat(String),
VCWithoutProofValue,
Expand Down Expand Up @@ -247,8 +247,8 @@ impl From<proof_system::prelude::ProofSystemError> for RDFProofsError {
}
}

impl From<oxttl::ParseError> for RDFProofsError {
fn from(e: oxttl::ParseError) -> Self {
impl From<oxttl::TurtleParseError> for RDFProofsError {
fn from(e: oxttl::TurtleParseError) -> Self {
Self::TtlParse(e)
}
}
Expand Down

0 comments on commit 0000eba

Please sign in to comment.