From 41ee8938b7493b2373bcaf6ca097d849e4f43342 Mon Sep 17 00:00:00 2001 From: Simone Cottini Date: Thu, 5 Sep 2024 10:14:20 +0200 Subject: [PATCH] Fix cargo make docs command --- Makefile.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.toml b/Makefile.toml index d7266b6..47112bd 100644 --- a/Makefile.toml +++ b/Makefile.toml @@ -130,7 +130,7 @@ description = "Run cargo-deny with tracing_opentelemetry_0_23 feature" [tasks.docs] description = "Build docs as they are rendered on docs.rs" command = "cargo" -args = ["doc", "--document-private-items", "--all-features", "--no-deps"] +args = ["doc", "--document-private-items", "--features=auth0,gzip", "--no-deps"] env = { "RUSTDOCFLAGS" = "-Dwarnings" } [tasks.release]