From f0882677fe434efa154a81eb492161965e699d9f Mon Sep 17 00:00:00 2001 From: ondra05 Date: Sat, 18 Dec 2021 14:11:52 +0100 Subject: [PATCH] Updated actix-web dependency to `4.0.0-beta.15` (#63) --- Cargo.toml | 2 +- README.md | 2 +- examples/custom-root-span/Cargo.toml | 2 +- examples/opentelemetry/Cargo.toml | 2 +- src/lib.rs | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9ca83e58b..6d46729f4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,7 +27,7 @@ opentelemetry_0_16 = ["opentelemetry_0_16_pkg", "tracing-opentelemetry_0_16_pkg" emit_event_on_error = [] [dependencies] -actix-web = { version = "=4.0.0-beta.14", default-features = false } +actix-web = { version = "=4.0.0-beta.15", default-features = false } pin-project = "1.0.0" tracing = "0.1.19" tracing-futures = "0.2.4" diff --git a/README.md b/README.md index dd3e7ba6d..bec000023 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ Add `tracing-actix-web` to your dependencies: # ... tracing-actix-web = "0.5.0-beta.5" tracing = "0.1" -actix-web = "4.0.0-beta.14" +actix-web = "4.0.0-beta.15" ``` `tracing-actix-web` exposes three feature flags: diff --git a/examples/custom-root-span/Cargo.toml b/examples/custom-root-span/Cargo.toml index 94ae5f056..48fa183da 100644 --- a/examples/custom-root-span/Cargo.toml +++ b/examples/custom-root-span/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -actix-web = "=4.0.0-beta.14" +actix-web = "=4.0.0-beta.15" opentelemetry = { version = "0.16", features = ["rt-tokio-current-thread"] } opentelemetry-jaeger = { version = "0.15", features = ["rt-tokio-current-thread"] } tracing-opentelemetry = { version = "0.16" } diff --git a/examples/opentelemetry/Cargo.toml b/examples/opentelemetry/Cargo.toml index 0a20b99cb..52c4091d3 100644 --- a/examples/opentelemetry/Cargo.toml +++ b/examples/opentelemetry/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" license = "MIT/Apache-2.0" [dependencies] -actix-web = "=4.0.0-beta.14" +actix-web = "=4.0.0-beta.15" tracing = "0.1.19" opentelemetry = { version = "0.16", features = ["rt-tokio-current-thread"] } opentelemetry-jaeger = { version = "0.15", features = ["rt-tokio-current-thread"] } diff --git a/src/lib.rs b/src/lib.rs index c81578f9c..acd6c9935 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -12,7 +12,7 @@ //! # ... //! tracing-actix-web = "0.5.0-beta.5" //! tracing = "0.1" -//! actix-web = "4.0.0-beta.14" +//! actix-web = "4.0.0-beta.15" //! ``` //! //! `tracing-actix-web` exposes three feature flags: