Skip to content

Commit

Permalink
update actix web to beta 21 (actix#71)
Browse files Browse the repository at this point in the history
* Bump actix web

* Bump crate version

* Update version numbers in readme, lib.rs
  • Loading branch information
asonix authored Jan 23, 2022
1 parent 860adc1 commit d0f1019
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = [".", "examples/opentelemetry", "examples/custom-root-span"]

[package]
name = "tracing-actix-web"
version = "0.5.0-beta.10"
version = "0.5.0-beta.11"
authors = ["Luca Palmieri <[email protected]>"]
edition = "2018"

Expand All @@ -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.20", default-features = false }
actix-web = { version = "=4.0.0-beta.21", default-features = false }
pin-project = "1.0.0"
tracing = "0.1.19"
tracing-futures = "0.2.4"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ Add `tracing-actix-web` to your dependencies:
```toml
[dependencies]
# ...
tracing-actix-web = "=0.5.0-beta.10"
tracing-actix-web = "=0.5.0-beta.11"
tracing = "0.1"
actix-web = "=4.0.0-beta.20"
actix-web = "=4.0.0-beta.21"
```

`tracing-actix-web` exposes three feature flags:
Expand Down
2 changes: 1 addition & 1 deletion examples/custom-root-span/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.20"
actix-web = "=4.0.0-beta.21"
opentelemetry = { version = "0.16", features = ["rt-tokio-current-thread"] }
opentelemetry-jaeger = { version = "0.15", features = ["rt-tokio-current-thread"] }
tracing-opentelemetry = { version = "0.16" }
Expand Down
2 changes: 1 addition & 1 deletion examples/opentelemetry/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2018"
license = "MIT/Apache-2.0"

[dependencies]
actix-web = "=4.0.0-beta.20"
actix-web = "=4.0.0-beta.21"
tracing = "0.1.19"
opentelemetry = { version = "0.16", features = ["rt-tokio-current-thread"] }
opentelemetry-jaeger = { version = "0.15", features = ["rt-tokio-current-thread"] }
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
//! ```toml
//! [dependencies]
//! # ...
//! tracing-actix-web = "=0.5.0-beta.10"
//! tracing-actix-web = "=0.5.0-beta.11"
//! tracing = "0.1"
//! actix-web = "=4.0.0-beta.20"
//! actix-web = "=4.0.0-beta.21"
//! ```
//!
//! `tracing-actix-web` exposes three feature flags:
Expand Down

0 comments on commit d0f1019

Please sign in to comment.