Skip to content

Commit 228252d

Browse files
authored
release 0.64.0 (#1223)
Signed-off-by: James Ebert <[email protected]>
1 parent f0c8184 commit 228252d

File tree

5 files changed

+19
-14
lines changed

5 files changed

+19
-14
lines changed

Cargo.lock

+10-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ members = [
3333
]
3434

3535
[workspace.package]
36-
version = "0.63.0"
36+
version = "0.64.0"
3737
authors = [
3838
"Absa Group Limited",
3939
"Hyperledger Indy Contributors <[email protected]>",

aries/aries_vcx/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ webservers for VC issuance/verification, didcomm mediator service etc.
1818
To use `aries_vcx` in your project, you need to add GitHub dependency to your `Cargo.toml`, and best
1919
define a version through a `tag`:
2020
```toml
21-
aries-vcx = { tag = "0.63.0", git = "https://github.com/hyperledger/aries-vcx" }
21+
aries-vcx = { tag = "0.64.0", git = "https://github.com/hyperledger/aries-vcx" }
2222
```
2323
It's also advisable to follow these [instructions](TUTORIAL.md) to check your environment is properly configured.
2424

did_core/did_methods/did_peer/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Add the Peer DID library as a dependency in your `Cargo.toml` file:
2323

2424
```toml
2525
[dependencies]
26-
peer_did = { tag = "0.63.0", git = "https://github.com/hyperledger/aries-vcx" }
26+
peer_did = { tag = "0.64.0", git = "https://github.com/hyperledger/aries-vcx" }
2727
```
2828

2929
## Demo

did_core/did_parser_nom/README.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,21 @@
11
# did_parser_nom
22

33
## Overview
4+
45
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).
56

67
## Features
8+
79
- **DID Parsing**: Capability to parse `did:` strings, ensuring they comply with the DID specifications.
810
- **DID URL**: Functionality to parse DID URLs.
911

1012
## Getting Started
13+
1114
### Installation
15+
1216
Add the did_parser library as a dependency in your `Cargo.toml` file:
17+
1318
```toml
1419
[dependencies]
15-
did_parser_nom = { tag = "0.63.0", git = "https://github.com/hyperledger/aries-vcx" }
20+
did_parser_nom = { tag = "0.64.0", git = "https://github.com/hyperledger/aries-vcx" }
1621
```

0 commit comments

Comments
 (0)