From c133e9127df41630282e97d782bb11387db0ecd9 Mon Sep 17 00:00:00 2001 From: Chris Martinez Date: Sun, 24 Dec 2023 12:56:20 -0800 Subject: [PATCH] Simplify required dependencies --- src/Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Cargo.toml b/src/Cargo.toml index 6318842..4a7bd10 100644 --- a/src/Cargo.toml +++ b/src/Cargo.toml @@ -17,10 +17,11 @@ path = "lib.rs" doctest = false [dependencies] -axum = "0.7" +axum = { version = "0.7", default-features = false } more-di = { version = "3.1", features = ["async"] } [dev-dependencies] +axum = { version = "0.7", default-features = false, features = ["http1", "tokio", "tower-log"] } # REF: https://github.com/tokio-rs/axum/blob/main/axum/Cargo.toml#L33 bytes = "1.0" http = "1.0.0"