diff --git a/Cargo.lock b/Cargo.lock index 6fc22d8..613625f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1668,10 +1668,12 @@ version = "0.34.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5484316556650182f03b43d4c746ce0e3e48074a21e2f51244b648b6542e1066" dependencies = [ + "httpdate", "reqwest", "rustls 0.22.4", "sentry-core", "sentry-tracing", + "tokio", "ureq", "webpki-roots", ] diff --git a/Cargo.toml b/Cargo.toml index 43a0ced..7d2781d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,6 +25,6 @@ axum = { version = "0.7.7", features = ["macros"] } thiserror = "1.0.49" serde_json = "1.0.132" maud = "0.26.0" -sentry = { version = "0.34.0", features = ["tracing", "rustls"], default-features = false } +sentry = { version = "0.34.0", features = ["tracing", "reqwest", "rustls"], default-features = false } tracing = "0.1.40" tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }