From 9dbf436e2b86f8ff4420357238e9387a1244a1f0 Mon Sep 17 00:00:00 2001 From: Arpad Borsos Date: Tue, 20 Oct 2020 22:39:12 +0200 Subject: [PATCH] fix: Clean up sentry-actix toml --- sentry-actix/Cargo.toml | 12 +----------- sentry/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 12 deletions(-) diff --git a/sentry-actix/Cargo.toml b/sentry-actix/Cargo.toml index 0280124a0..f01403cbd 100644 --- a/sentry-actix/Cargo.toml +++ b/sentry-actix/Cargo.toml @@ -7,20 +7,10 @@ readme = "README.md" repository = "https://github.com/getsentry/sentry-rust" homepage = "https://sentry.io/welcome/" description = """ -Sentry client extension for actix-web 0.7. +Sentry client extension for actix-web 3. """ edition = "2018" -[package.metadata.docs.rs] -all-features = true - -[features] -default = ["with_sentry_default"] -with_sentry_default = [ - "sentry/transport", - "sentry/panic", -] - [dependencies] sentry-core = { version = "0.20.1", path = "../sentry-core", default-features = false } actix-web = { version = "3", default-features = false } diff --git a/sentry/Cargo.toml b/sentry/Cargo.toml index 6eb839fec..4d19343e2 100644 --- a/sentry/Cargo.toml +++ b/sentry/Cargo.toml @@ -54,7 +54,7 @@ sentry-slog = { version = "0.20.1", path = "../sentry-slog", optional = true } log_ = { package = "log", version = "0.4.8", optional = true, features = ["std"] } reqwest_ = { package = "reqwest", version = "0.10.8", optional = true, features = ["blocking", "json"], default-features = false } curl_ = { package = "curl", version = "0.4.25", optional = true } -surf_ = { package = "surf", version = "=2.0.0-alpha.7", optional = true } +surf_ = { package = "surf", version = "2.0.0", optional = true } futures = { version = "0.3", optional = true } httpdate = { version = "0.3.2", optional = true } serde_json = { version = "1.0.48", optional = true }