From 167734d306ad5bba39ffaecb099cff82b485f6dc Mon Sep 17 00:00:00 2001 From: Robert Date: Mon, 16 Sep 2024 13:29:05 +0200 Subject: [PATCH] fix: version bumped: 0.7.2 (#27) --- .github/workflows/release.yaml | 1 + Cargo.lock | 39 +++++++++++++++++++++++++++++++--- Cargo.toml | 2 +- 3 files changed, 38 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 75a7a36..0c8d103 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -11,3 +11,4 @@ jobs: secrets: inherit with: auditIgnore: "RUSTSEC-2022-0040,RUSTSEC-2023-0071,RUSTSEC-2024-0373" + publish_dry_run: false diff --git a/Cargo.lock b/Cargo.lock index b99a72b..c7454cb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -73,9 +73,9 @@ dependencies = [ [[package]] name = "affinidi-did-resolver-cache-sdk" -version = "0.1.7" +version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "71015a9d0142ab7a667deca80e852ae199ea746ed0130d0e044e6bc5b7187479" +checksum = "ab36e5d1f19fb5d1aa0d3489ffce7fb75ba4c484671b9a59853b1cce40a034a1" dependencies = [ "blake2", "did-peer", @@ -87,7 +87,7 @@ dependencies = [ "ssi", "thiserror", "tokio", - "tokio-tungstenite 0.23.1", + "tokio-tungstenite 0.24.0", "tracing", "tracing-subscriber", ] @@ -7019,6 +7019,20 @@ dependencies = [ "tungstenite 0.23.0", ] +[[package]] +name = "tokio-tungstenite" +version = "0.24.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "edc5f74e248dc973e0dbb7b74c7e0d6fcc301c694ff50049504004ef4d0cdcd9" +dependencies = [ + "futures-util", + "log", + "native-tls", + "tokio", + "tokio-native-tls", + "tungstenite 0.24.0", +] + [[package]] name = "tokio-util" version = "0.7.12" @@ -7263,6 +7277,25 @@ dependencies = [ "utf-8", ] +[[package]] +name = "tungstenite" +version = "0.24.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "18e5b8366ee7a95b16d32197d0b2604b43a0be89dc5fac9f8e96ccafbaedda8a" +dependencies = [ + "byteorder", + "bytes", + "data-encoding", + "http 1.1.0", + "httparse", + "log", + "native-tls", + "rand", + "sha1", + "thiserror", + "utf-8", +] + [[package]] name = "typenum" version = "1.17.0" diff --git a/Cargo.toml b/Cargo.toml index 542438e..b38a8db 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,6 +21,6 @@ license = "Apache-2.0" [workspace.dependencies] affinidi-messaging-sdk = { version = "0.7", path = "./affinidi-messaging-sdk" } affinidi-messaging-didcomm = { version = "0.7", path = "./affinidi-messaging-didcomm" } -affinidi-did-resolver-cache-sdk = { version = "0.1.7" } +affinidi-did-resolver-cache-sdk = { version = "0.1.9" } did-peer = { version = "0.1.7" } clap = { version = "4.5", features = ["derive"] }