1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-07-01 12:15:08 +02:00

Update to latest actix-web (#59)

This commit is contained in:
DW
2021-12-01 04:48:51 -05:00
committed by GitHub
parent 46455193d0
commit d726662f80
6 changed files with 8 additions and 8 deletions

View File

@ -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;

View File

@ -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<RootSpan: RootSpanBuilder> {
root_span_builder: std::marker::PhantomData<RootSpan>,