diff --git a/Cargo.toml b/Cargo.toml index f97fc0bf7..a1e7384a4 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.12", default-features = false } +actix-web = { version = "=4.0.0-beta.13", 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 24337d60f..754184800 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.3" tracing = "0.1" -actix-web = "4.0.0-beta.12" +actix-web = "4.0.0-beta.13" ``` `tracing-actix-web` exposes three feature flags: diff --git a/examples/custom-root-span/Cargo.toml b/examples/custom-root-span/Cargo.toml index a269e5506..17a352ab5 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.12" +actix-web = "=4.0.0-beta.13" 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 a6f252dee..1ef730738 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.12" +actix-web = "=4.0.0-beta.13" 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 52b2339f5..99c361ac0 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -12,7 +12,7 @@ //! # ... //! tracing-actix-web = "0.5.0-beta.3" //! tracing = "0.1" -//! actix-web = "4.0.0-beta.12" +//! actix-web = "4.0.0-beta.13" //! ``` //! //! `tracing-actix-web` exposes three feature flags: @@ -234,7 +234,7 @@ //! Check out the [relevant example in the GitHub repository](https://github.com/LukeMathWalker/tracing-actix-web/tree/main/examples/opentelemetry) for reference. //! //! [root span]: crate::RootSpan -//! [`actix-web`]: https://docs.rs/actix-web/4.0.0-beta.6/actix_web/index.html +//! [`actix-web`]: https://docs.rs/actix-web/4.0.0-beta.13/actix_web/index.html mod middleware; mod request_id; mod root_span; diff --git a/src/middleware.rs b/src/middleware.rs index f80a8674c..a82051167 100644 --- a/src/middleware.rs +++ b/src/middleware.rs @@ -76,8 +76,8 @@ use tracing::Span; /// ``` /// /// [`actix-web`]: https://docs.rs/actix-web -/// [`Logger`]: https://docs.rs/actix-web/4.0.0-beta.9/actix_web/middleware/struct.Logger.html -/// [`Compat`]: https://docs.rs/actix-web/4.0.0-beta.9/actix_web/middleware/struct.Compat.html +/// [`Logger`]: https://docs.rs/actix-web/4.0.0-beta.13/actix_web/middleware/struct.Logger.html +/// [`Compat`]: https://docs.rs/actix-web/4.0.0-beta.13/actix_web/middleware/struct.Compat.html /// [`tracing`]: https://docs.rs/tracing pub struct TracingLogger { root_span_builder: std::marker::PhantomData,