From 036193a19ee6b12f95554943dade5758fbf14be6 Mon Sep 17 00:00:00 2001 From: "(on company time)" <_@_> Date: Mon, 31 Oct 2022 12:54:46 -0500 Subject: [PATCH] add udp_over_tcp as dep to ptth_quic --- Cargo.lock | 1 + crates/ptth_quic/Cargo.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 5a39f54..380b457 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1283,6 +1283,7 @@ dependencies = [ "tokio", "tracing", "tracing-subscriber", + "udp_over_tcp", ] [[package]] diff --git a/crates/ptth_quic/Cargo.toml b/crates/ptth_quic/Cargo.toml index 7e43a9f..dab944c 100644 --- a/crates/ptth_quic/Cargo.toml +++ b/crates/ptth_quic/Cargo.toml @@ -23,6 +23,7 @@ structopt = "0.3.20" tokio = { version = "1.8.1", features = ["full"] } tracing-subscriber = "0.2.16" tracing = "0.1.25" +udp_over_tcp = { path = "../udp_over_tcp" } [dependencies.reqwest] version = "0.11.10"