From 5013eb1fdca505ef9c7c28266afcf847da7c17b3 Mon Sep 17 00:00:00 2001 From: Tobias Bieniek Date: Thu, 15 Dec 2022 13:09:42 +0100 Subject: [PATCH] features: Make `tower-http` enable the `tower` feature (#532) Previous the `tower-http` feature enabled the `sentry-tower` dependency and its `http` feature, but it did not enable the `tower` feature of the `sentry` crate. This leads to `sentry::integrations::tower` not being available, even though the dependency is enabled correctly. --- sentry/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sentry/Cargo.toml b/sentry/Cargo.toml index c5cb86b9..656627df 100644 --- a/sentry/Cargo.toml +++ b/sentry/Cargo.toml @@ -33,7 +33,7 @@ debug-images = ["sentry-debug-images"] log = ["sentry-log"] slog = ["sentry-slog"] tower = ["sentry-tower"] -tower-http = ["sentry-tower", "sentry-tower/http"] +tower-http = ["tower", "sentry-tower/http"] tracing = ["sentry-tracing"] profiling = ["sentry-core/profiling"] frame-pointer = ["sentry-core/frame-pointer"]