Skip to content

Commit

Permalink
Re-export ssi-status as ssi::status. (#571)
Browse files Browse the repository at this point in the history
* Move and re-export `ssi-status`.
* Make the `ssi-security::multibase` module public.
  • Loading branch information
timothee-haudebourg authored Jul 3, 2024
1 parent 0e60cba commit b604e0d
Show file tree
Hide file tree
Showing 30 changed files with 6 additions and 1 deletion.
2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ ssi-caips = { path = "./crates/caips", version = "0.2", default-features = false
ssi-ucan = { path = "./crates/ucan", version = "0.2", default-features = false }
ssi-zcap-ld = { path = "./crates/zcap-ld", version = "0.2", default-features = false }
ssi-ssh = { path = "./crates/ssh", version = "0.2", default-features = false }
ssi-status = { path = "./crates/status", version = "0.1", default-features = false }

# Verifiable Claims
ssi-claims-core = { path = "./crates/claims/core", version = "0.1", default-features = false }
Expand Down Expand Up @@ -210,6 +211,7 @@ ssi-rdf.workspace = true
ssi-json-ld.workspace = true
ssi-security.workspace = true
ssi-claims.workspace = true
ssi-status.workspace = true
ssi-verification-methods.workspace = true
ssi-dids.workspace = true
ssi-eip712.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/security/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use static_iref::iri;
mod ethereum_adress;
pub use ethereum_adress::*;

mod multibase;
pub mod multibase;
pub use multibase::{Multibase, MultibaseBuf};

// #[tldr("ssi-vc/src/schema/sec.ttl")]
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
3 changes: 3 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,9 @@ pub use ssi_security as security;
#[doc(inline)]
pub use ssi_claims as claims;

/// Claims status.
pub use ssi_status as status;

/// Default verification parameters type.
///
/// This type can be used as parameters of the
Expand Down

0 comments on commit b604e0d

Please sign in to comment.