From c09306fd8c27ed2955f3fc35b91f0eb1961ca130 Mon Sep 17 00:00:00 2001 From: Luke Curley Date: Fri, 26 May 2023 14:59:00 -0700 Subject: [PATCH] Rename the quiche fork. --- Cargo.lock | 6 +++--- Cargo.toml | 3 ++- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 02fc2a5..b5a168c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -835,7 +835,7 @@ dependencies = [ [[package]] name = "octets" version = "0.2.0" -source = "git+https://github.com/kixelated/quiche.git?branch=master#007a25b35b9509d673466fed8ddc73fd8d9b4184" +source = "git+https://github.com/kixelated/quiche-webtransport.git?branch=master#007a25b35b9509d673466fed8ddc73fd8d9b4184" [[package]] name = "once_cell" @@ -922,7 +922,7 @@ dependencies = [ [[package]] name = "qlog" version = "0.9.0" -source = "git+https://github.com/kixelated/quiche.git?branch=master#007a25b35b9509d673466fed8ddc73fd8d9b4184" +source = "git+https://github.com/kixelated/quiche-webtransport.git?branch=master#007a25b35b9509d673466fed8ddc73fd8d9b4184" dependencies = [ "serde", "serde_derive", @@ -934,7 +934,7 @@ dependencies = [ [[package]] name = "quiche" version = "0.17.1" -source = "git+https://github.com/kixelated/quiche.git?branch=master#007a25b35b9509d673466fed8ddc73fd8d9b4184" +source = "git+https://github.com/kixelated/quiche-webtransport.git?branch=master#007a25b35b9509d673466fed8ddc73fd8d9b4184" dependencies = [ "cmake", "lazy_static", diff --git a/Cargo.toml b/Cargo.toml index c24ae96..bb847a7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,8 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -quiche = { git = "https://github.com/kixelated/quiche.git", branch = "master", features = [ "qlog" ] } # WebTransport fork +# Fork of quiche until they add WebTransport support. +quiche = { git = "https://github.com/kixelated/quiche-webtransport.git", branch = "master", features = [ "qlog" ] } clap = { version = "4.0", features = [ "derive" ] } log = { version = "0.4", features = ["std"] } mio = { version = "0.8", features = ["net", "os-poll"] }