From cf80f031b95fbf393a34af52ce7e536bc1354ca9 Mon Sep 17 00:00:00 2001 From: Jamil Date: Mon, 25 Sep 2023 17:20:44 -0700 Subject: [PATCH] refactor(connlib): Track boringtun stable (#2150) Fixes firezone/boringtun#1 --- rust/Cargo.lock | 5 +++-- rust/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/rust/Cargo.lock b/rust/Cargo.lock index 16440666a..64fdf6d16 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -519,8 +519,9 @@ checksum = "8d696c370c750c948ada61c69a0ee2cbbb9c50b1019ddb86d9317157a99c2cae" [[package]] name = "boringtun" -version = "0.5.2" -source = "git+https://github.com/firezone/boringtun?branch=master#9e45acd768d88ce0eb74219641fbc2463d1f7b66" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "751787b019c674b9ac353f4eaa285e6711c21badb421cd8c199bf2c83b727f29" dependencies = [ "aead 0.5.2", "base64 0.13.1", diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 8d5dc43d2..674534fc4 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -14,7 +14,7 @@ members = [ ] [workspace.dependencies] -boringtun = { git = "https://github.com/firezone/boringtun", branch = "master", default-features = false } +boringtun = { version = "0.6", default-features = false } chrono = { version = "0.4", default-features = false, features = ["std", "clock", "oldtime", "serde"] } swift-bridge = "0.1.52" backoff = { version = "0.4", features = ["tokio"] }