Skip to content

Commit

Permalink
Merge branch 'main' into enable_tests
Browse files Browse the repository at this point in the history
  • Loading branch information
maratsh authored Sep 10, 2024
2 parents 6881fe5 + cfa8e94 commit 9b57096
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 38 deletions.
35 changes: 6 additions & 29 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ members = [
resolver = "2"

[workspace.package]
version = "0.1.0"
version = '0.7.0'
edition = "2021"
authors = ["Glenn Gore <glenn@affinidi.com>"]
description = "Affinidi Trusted Messaging"
Expand Down
2 changes: 1 addition & 1 deletion affinidi-messaging-didcomm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ harness = false

[package]
name = 'affinidi-messaging-didcomm'
version = '0.6.0'
version.workspace = true
authors = [
'Vyacheslav Gudkov <vyacheslav.gudkov@dsr-corporation.com>',
'Glenn Gore <glenn@affinidi.com>',
Expand Down
8 changes: 4 additions & 4 deletions affinidi-messaging-mediator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "affinidi-messaging-mediator"
version = "0.2.2"
version.workspace = true
description = "DIDComm Mediator service for Affinidi Messaging"
edition.workspace = true
authors.workspace = true
Expand All @@ -13,8 +13,9 @@ readme = "README.md"
[dependencies]
async-convert = "1"
async-trait = "0.1"
affinidi-messaging-sdk = { version = "0.1.3", path = "../affinidi-messaging-sdk" }
affinidi-did-resolver-cache-sdk = { version = "0.1.5" }
affinidi-messaging-sdk = { path = "../affinidi-messaging-sdk" }
affinidi-messaging-didcomm = { path = "../affinidi-messaging-didcomm" }
affinidi-did-resolver-cache-sdk.workspace = true
aws-config = "1.5"
aws-sdk-dynamodb = "1.29"
aws-sdk-memorydb = "1.26.0"
Expand All @@ -26,7 +27,6 @@ axum-server = { version = "0.7", features = ["tls-rustls"] }
base64 = "0.22"
chrono = "0.4"
deadpool-redis = { version = "0.17", features = ["rt_tokio_1"] }
affinidi-messaging-didcomm = { version = "0.6" }
hostname = "0.4"
http = "1"
jsonwebtoken = "9.3"
Expand Down
2 changes: 1 addition & 1 deletion affinidi-messaging-processor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "affinidi-messaging-processing"
version = "0.1.1"
version.workspace = true
description = "Affinidi Messaging Processor"
edition.workspace = true
authors.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions affinidi-messaging-sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "affinidi-messaging-sdk"
version = "0.1.4"
version.workspace = true
description = "Affinidi Messaging SDK"
edition.workspace = true
authors.workspace = true
Expand All @@ -12,7 +12,7 @@ readme = "README.md"

[dependencies]
async-trait = "0.1"
affinidi-messaging-didcomm = { version = "0.6" }
affinidi-messaging-didcomm = { path = "../affinidi-messaging-didcomm" }
affinidi-did-resolver-cache-sdk.workspace = true
base64 = "0.22"
futures-util = "0.3"
Expand Down

0 comments on commit 9b57096

Please sign in to comment.