Skip to content

Commit

Permalink
Fix gcongestion
Browse files Browse the repository at this point in the history
  • Loading branch information
mendess committed Feb 27, 2025
1 parent 0790f10 commit 3287d02
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
9 changes: 4 additions & 5 deletions tokio-quiche/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tokio-quiche"
version = "0.2.0"
version = "0.2.1"
repository = { workspace = true }
license = { workspace = true }
description = "Asynchronous wrapper around quiche"
Expand All @@ -25,7 +25,7 @@ rpk = ["boring/rpk"]
# Use the quiche-mallard fork in place of upstream quiche.
# quiche-mallard replaces quiche's original congestion control
# implementation with one adapted from google/quiche.
gcongestion = ["dep:quiche-mallard", "dep:octets-mallard"]
gcongestion = ["dep:quiche-mallard"]
# Use quiche-mallard with zero-copy send calls.
zero-copy = ["gcongestion"]

Expand All @@ -47,10 +47,9 @@ futures = { workspace = true }
futures-util = { workspace = true }
ipnetwork = { workspace = true }
log = { workspace = true }
octets = { workspace = true }
octets-mallard = { package = "octets", version = "0.3.0", optional = true }
octets = { version = "0.3.0" }
pin-project = { workspace = true }
quiche = { workspace = true, features = ["boringssl-boring-crate", "qlog"] }
quiche = { version = "0.23", features = ["boringssl-boring-crate", "qlog"] }
quiche-mallard = { version = "0.21", features = [
"boringssl-boring-crate",
"qlog",
Expand Down
3 changes: 0 additions & 3 deletions tokio-quiche/src/http3/driver/datagram.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,6 @@
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

#[cfg(feature = "gcongestion")]
extern crate octets_mallard as octets;

use super::InboundFrame;
use crate::buf_factory::BufFactory;
use crate::buf_factory::PooledDgram;
Expand Down

0 comments on commit 3287d02

Please sign in to comment.