diff --git a/Cargo.lock b/Cargo.lock index 5a7f5fe582..1871de0ed7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -435,7 +435,7 @@ dependencies = [ [[package]] name = "aries-vcx-agent" -version = "0.63.0" +version = "0.64.0" dependencies = [ "anoncreds_types", "aries_vcx", @@ -481,7 +481,7 @@ dependencies = [ [[package]] name = "aries_vcx" -version = "0.63.0" +version = "0.64.0" dependencies = [ "anoncreds_types", "aries_vcx_anoncreds", @@ -530,7 +530,7 @@ dependencies = [ [[package]] name = "aries_vcx_anoncreds" -version = "0.63.0" +version = "0.64.0" dependencies = [ "anoncreds", "anoncreds_types", @@ -549,7 +549,7 @@ dependencies = [ [[package]] name = "aries_vcx_ledger" -version = "0.63.0" +version = "0.64.0" dependencies = [ "anoncreds_types", "aries_vcx_wallet", @@ -570,7 +570,7 @@ dependencies = [ [[package]] name = "aries_vcx_wallet" -version = "0.63.0" +version = "0.64.0" dependencies = [ "anyhow", "aries-askar", @@ -1952,7 +1952,7 @@ dependencies = [ [[package]] name = "diddoc_legacy" -version = "0.63.0" +version = "0.64.0" dependencies = [ "display_as_json", "serde", @@ -3440,7 +3440,7 @@ checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167" [[package]] name = "messages" -version = "0.63.0" +version = "0.64.0" dependencies = [ "chrono", "derive_more", @@ -4739,7 +4739,7 @@ dependencies = [ [[package]] name = "shared" -version = "0.63.0" +version = "0.64.0" dependencies = [ "bs58 0.4.0", "lazy_static", @@ -5297,7 +5297,7 @@ dependencies = [ [[package]] name = "test_utils" -version = "0.63.0" +version = "0.64.0" dependencies = [ "anoncreds_types", "aries_vcx_anoncreds", @@ -5707,7 +5707,7 @@ dependencies = [ [[package]] name = "uniffi_aries_vcx" -version = "0.63.0" +version = "0.64.0" dependencies = [ "android_logger", "aries_vcx", diff --git a/Cargo.toml b/Cargo.toml index 10a4596a1e..ac5a8b1d91 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -33,7 +33,7 @@ members = [ ] [workspace.package] -version = "0.63.0" +version = "0.64.0" authors = [ "Absa Group Limited", "Hyperledger Indy Contributors ", diff --git a/aries/aries_vcx/README.md b/aries/aries_vcx/README.md index 19b328698d..8d3269a695 100644 --- a/aries/aries_vcx/README.md +++ b/aries/aries_vcx/README.md @@ -18,7 +18,7 @@ webservers for VC issuance/verification, didcomm mediator service etc. To use `aries_vcx` in your project, you need to add GitHub dependency to your `Cargo.toml`, and best define a version through a `tag`: ```toml -aries-vcx = { tag = "0.63.0", git = "https://github.com/hyperledger/aries-vcx" } +aries-vcx = { tag = "0.64.0", git = "https://github.com/hyperledger/aries-vcx" } ``` It's also advisable to follow these [instructions](TUTORIAL.md) to check your environment is properly configured. diff --git a/did_core/did_methods/did_peer/README.md b/did_core/did_methods/did_peer/README.md index 49e5db4178..fb439664b1 100644 --- a/did_core/did_methods/did_peer/README.md +++ b/did_core/did_methods/did_peer/README.md @@ -23,7 +23,7 @@ Add the Peer DID library as a dependency in your `Cargo.toml` file: ```toml [dependencies] -peer_did = { tag = "0.63.0", git = "https://github.com/hyperledger/aries-vcx" } +peer_did = { tag = "0.64.0", git = "https://github.com/hyperledger/aries-vcx" } ``` ## Demo diff --git a/did_core/did_parser_nom/README.md b/did_core/did_parser_nom/README.md index 59f6619132..ece6798415 100644 --- a/did_core/did_parser_nom/README.md +++ b/did_core/did_parser_nom/README.md @@ -1,16 +1,21 @@ # did_parser_nom ## Overview + Rust crate for parsing [DIDs](https://www.w3.org/TR/did-core/#did-syntax) and [DID URLs](https://www.w3.org/TR/did-core/#did-url-syntax). ## Features + - **DID Parsing**: Capability to parse `did:` strings, ensuring they comply with the DID specifications. - **DID URL**: Functionality to parse DID URLs. ## Getting Started + ### Installation + Add the did_parser library as a dependency in your `Cargo.toml` file: + ```toml [dependencies] -did_parser_nom = { tag = "0.63.0", git = "https://github.com/hyperledger/aries-vcx" } +did_parser_nom = { tag = "0.64.0", git = "https://github.com/hyperledger/aries-vcx" } ```