From 3b01fb435c24853a56db03042df1c61fcdce5947 Mon Sep 17 00:00:00 2001 From: technillogue Date: Thu, 6 Oct 2022 00:35:40 -0400 Subject: [PATCH 1/3] bump user agent version --- auxin/src/net.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/auxin/src/net.rs b/auxin/src/net.rs index 165921c..a8ab06c 100644 --- a/auxin/src/net.rs +++ b/auxin/src/net.rs @@ -16,9 +16,9 @@ pub mod api_paths { } //For "User-Agent" http header -pub const USER_AGENT: &str = "Signal-Android/5.22.3"; +pub const USER_AGENT: &str = "Signal-Android/5.52.1"; //For "X-Signal-Agent" http header -pub const X_SIGNAL_AGENT: &str = "Signal-Android/5.22.3"; +pub const X_SIGNAL_AGENT: &str = "Signal-Android/5.52.1"; pub type Body = Vec; pub type Request = http::request::Request; From 4e5657781c3476b5174c615dd421822e8817bed3 Mon Sep 17 00:00:00 2001 From: technillogue Date: Thu, 6 Oct 2022 00:43:31 -0400 Subject: [PATCH 2/3] zkgroup moved --- auxin/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auxin/Cargo.toml b/auxin/Cargo.toml index 45d0bd9..2f16360 100644 --- a/auxin/Cargo.toml +++ b/auxin/Cargo.toml @@ -19,7 +19,7 @@ auxin_protos = { path = "../auxin_protos" } #Signal protocol & zero knowledge proof stuff. libsignal-protocol = { git = "https://github.com/signalapp/libsignal-client", tag = "v0.14.0"} -zkgroup = { git = "https://github.com/signalapp/zkgroup", tag = "v0.9.0" } +zkgroup = { git = "https://github.com/signalapp/libsignal-client", tag = "v0.9.0" } hkdf = "0.11" sha2 = "0.9.8" From ae14c6cffddf31cfd643c6b830152c5e593a1660 Mon Sep 17 00:00:00 2001 From: technillogue Date: Thu, 6 Oct 2022 00:48:30 -0400 Subject: [PATCH 3/3] try no tag --- auxin/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auxin/Cargo.toml b/auxin/Cargo.toml index 2f16360..21b96ea 100644 --- a/auxin/Cargo.toml +++ b/auxin/Cargo.toml @@ -19,7 +19,7 @@ auxin_protos = { path = "../auxin_protos" } #Signal protocol & zero knowledge proof stuff. libsignal-protocol = { git = "https://github.com/signalapp/libsignal-client", tag = "v0.14.0"} -zkgroup = { git = "https://github.com/signalapp/libsignal-client", tag = "v0.9.0" } +zkgroup = { git = "https://github.com/signalapp/libsignal-client" } hkdf = "0.11" sha2 = "0.9.8"