-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Clean up OneOrMany * Clean up Timestamp * Replace chrono with time * Clean up Url * Move conversion helpers to top-level module * Move identity_crypto to identity_core::crypto * Move identity_proof to identity_core::proof * Clean up Context * Use did_doc/did_url crates * Update DID resolution * Update test fixtures * Remove old tests * Refactor Credentials/Presentations * Manually implement builders * Replace builders for small structs with explicit ctors * Refactor IotaDID * Refactor IotaDocument * Use identity_core Credentials/Presentations * Update Client for DID/Document changes * New identity_iota examples * Cleanup/Restore normalization * Update WASM lib * Pin did_doc crate version * Fix WASM * Dont match internal error messages
- Loading branch information
Showing
175 changed files
with
3,050 additions
and
6,916 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,10 @@ | ||
#[macro_use] | ||
mod macros; | ||
|
||
pub mod context; | ||
pub mod convert; | ||
pub mod object; | ||
pub mod one_or_many; | ||
pub mod timestamp; | ||
pub mod url; | ||
pub mod value; | ||
|
||
pub use self::url::Url; | ||
pub use context::Context; | ||
pub use convert::{AsJson, FromJson, SerdeInto, ToJson}; | ||
pub use object::Object; | ||
pub use did_doc::{Object, Value}; | ||
pub use one_or_many::OneOrMany; | ||
pub use timestamp::Timestamp; | ||
pub use value::Value; | ||
pub use url::Url; |
Oops, something went wrong.