Skip to content

Commit

Permalink
features: Make tower-http enable the tower feature (#532)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Turbo87 authored Dec 15, 2022
1 parent 30b949d commit 5013eb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sentry/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down

0 comments on commit 5013eb1

Please sign in to comment.