From a4a97f06ce46cbf396dc707ad783370365d2de65 Mon Sep 17 00:00:00 2001 From: Cameron Bytheway Date: Thu, 27 Apr 2023 19:21:36 -0600 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Wesley Rosenblum <55108558+WesleyRosenblum@users.noreply.github.com> --- tools/xdp/s2n-quic-xdp/Cargo.toml | 2 +- tools/xdp/s2n-quic-xdp/src/task.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/xdp/s2n-quic-xdp/Cargo.toml b/tools/xdp/s2n-quic-xdp/Cargo.toml index 037aad2c1a..71e5c8f60e 100644 --- a/tools/xdp/s2n-quic-xdp/Cargo.toml +++ b/tools/xdp/s2n-quic-xdp/Cargo.toml @@ -16,5 +16,5 @@ tokio = { version = "1", optional = true } [dev-dependencies] bolero = "0.9" rand = "0.8" -s2n-quic-core = { path = "../../../quic/s2n-quic-core", version = "0.19", features = ["testing"] } +s2n-quic-core = { path = "../../../quic/s2n-quic-core", features = ["testing"] } tokio = { version = "1", features = ["full"] } diff --git a/tools/xdp/s2n-quic-xdp/src/task.rs b/tools/xdp/s2n-quic-xdp/src/task.rs index a7bcdc3c6a..9c36d69c48 100644 --- a/tools/xdp/s2n-quic-xdp/src/task.rs +++ b/tools/xdp/s2n-quic-xdp/src/task.rs @@ -4,7 +4,7 @@ //! A set of async tasks responsible for managing ring buffer and queue state //! //! Fundamentally, each task takes a set of input sources and routes them to one or more output -//! queues. Each task is generic over the execution environment, meaning it can be using in +//! queues. Each task is generic over the execution environment, meaning it can be used in //! something driven by polling for events, like `tokio`, or spawned on its own thread in a busy //! poll loop. //!