From 1594e5b3818ad38399a110dd59a717880b3d796e Mon Sep 17 00:00:00 2001 From: Konrad Kohbrok Date: Wed, 7 Aug 2024 08:25:36 +0200 Subject: [PATCH] pin openmls and mls-assist to the same openmls rev --- Cargo.toml | 4 ++-- coreclient/Cargo.toml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 34f64d59..fdeea4d8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,8 +25,8 @@ reqwest = { version = "^0.12", features = [ ], default-features = false } privacypass = { git = "https://github.com/raphaelrobert/privacypass" } privacypass-middleware = { git = "https://github.com/phnx-im/pp-middleware" } -openmls = { git = "https://github.com/openmls/openmls" } -mls-assist = { git = "https://github.com/phnx-im/mls-assist" } +openmls = { git = "https://github.com/openmls/openmls", rev = "96c38a806f9c706d2cf67566c9c846eee3ac4430" } +mls-assist = { git = "https://github.com/phnx-im/mls-assist", branch = "konrad/pin_openmls" } phnxtypes = { path = "./types" } [patch.crates-io] diff --git a/coreclient/Cargo.toml b/coreclient/Cargo.toml index 4697fa8a..9ee2c3ee 100644 --- a/coreclient/Cargo.toml +++ b/coreclient/Cargo.toml @@ -12,10 +12,10 @@ edition = "2021" [dependencies] thiserror = "1.0" -openmls_traits = { git = "https://github.com/openmls/openmls" } -openmls_rust_crypto = { git = "https://github.com/openmls/openmls" } -openmls_memory_storage = { git = "https://github.com/openmls/openmls" } -openmls_basic_credential = { git = "https://github.com/openmls/openmls" } +openmls_traits = { git = "https://github.com/openmls/openmls", rev = "96c38a806f9c706d2cf67566c9c846eee3ac4430" } +openmls_rust_crypto = { git = "https://github.com/openmls/openmls", rev = "96c38a806f9c706d2cf67566c9c846eee3ac4430" } +openmls_memory_storage = { git = "https://github.com/openmls/openmls", rev = "96c38a806f9c706d2cf67566c9c846eee3ac4430" } +openmls_basic_credential = { git = "https://github.com/openmls/openmls", rev = "96c38a806f9c706d2cf67566c9c846eee3ac4430" } log = "^0.4.14" url = "2.2" base64 = "0.13"