From d8bc1d5335273fe02b40ba49b48f775e70646206 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Fri, 10 Feb 2023 12:09:47 -0500 Subject: [PATCH] chore(cargo): add 'full' feature as shorthand --- Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 395057b3..9355bd20 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,6 +37,9 @@ tokio = { version = "1", features = ["macros", "test-util"] } pnet_datalink = "0.27.2" [features] +# Shorthand to enable everything +full = ["http1", "http2", "tcp", "runtime"] + runtime = [] tcp = [] http1 = []