From 49b40fc0e0b6747cf81f41f346478c24ae3169ae Mon Sep 17 00:00:00 2001 From: Tim Geoghegan Date: Mon, 28 Sep 2020 15:25:01 -0700 Subject: [PATCH] facilitator: update libprio dependency branch Bad news: the build broke because we changed the default branch of libprio-rs to main, and eventually deleted the master branch, so the dependency became unresolvable. Good news: our CI setup works! --- facilitator/Cargo.lock | 2 +- facilitator/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/facilitator/Cargo.lock b/facilitator/Cargo.lock index 43c9de7ef..d89d1d8b6 100644 --- a/facilitator/Cargo.lock +++ b/facilitator/Cargo.lock @@ -337,7 +337,7 @@ checksum = "3286f09f7d4926fc486334f28d8d2e6ebe4f7f9994494b6dab27ddfad2c9b11b" [[package]] name = "libprio-rs" version = "0.1.0" -source = "git+https://github.com/abetterinternet/libprio-rs#c0a62779b6ad7642edbb99d84c32d57ea9d132d3" +source = "git+https://github.com/abetterinternet/libprio-rs?branch=main#2b442cdb31aac1796e5da70006cb3c0f81a766f3" dependencies = [ "aes-ctr", "aes-gcm", diff --git a/facilitator/Cargo.toml b/facilitator/Cargo.toml index 10690794d..d3d3cb1b1 100644 --- a/facilitator/Cargo.toml +++ b/facilitator/Cargo.toml @@ -10,7 +10,7 @@ avro-rs = "0.11.0" base64 = "0.12.3" chrono = "0.4" clap = "2.33.3" -libprio-rs = { git = "https://github.com/abetterinternet/libprio-rs"} +libprio-rs = { git = "https://github.com/abetterinternet/libprio-rs", branch = "main" } rand = "0.7" ring = "0.16.15" serde = { version = "1.0", features = ["derive"] }