From 8726d9d6d43e87595dc328f7483f736654c2cd71 Mon Sep 17 00:00:00 2001 From: ArcticLampyrid Date: Wed, 6 Mar 2024 17:01:46 +0800 Subject: [PATCH] chore: disable unused features of `ipp` --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 077e15e..5d897e1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -41,7 +41,7 @@ http = "1" http-body = "1" http-body-util = "0.1" bytes = "1" -ipp = "5" +ipp = { version = "5", features = ["async"], default-features = false } num-traits = "0.2" thiserror = "1.0" tokio = { version = "1", features = [ @@ -56,4 +56,4 @@ uuid = "1" [[example]] name = "save_as_pdf" -required-features = ["server"] +required-features = ["server", "tokio/fs"]