Skip to content

Commit

Permalink
feat(router_env): add support for UUID v7 for tracing actix web (#2661)
Browse files Browse the repository at this point in the history
  • Loading branch information
NishantJoshi00 authored Oct 25, 2023
1 parent cfe9c25 commit 65319fe
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 deletions.
9 changes: 9 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,15 @@ rustflags = [
# "-Wmissing_docs",
"-Wrust_2018_idioms",
"-Wunused_qualifications",
"--cfg",
"uuid_unstable"
]


[build]
rustdocflags = [
"--cfg",
"uuid_unstable"
]

[alias]
Expand Down
11 changes: 9 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/router_env/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ strum = { version = "0.24.1", features = ["derive"] }
time = { version = "0.3.21", default-features = false, features = ["formatting"] }
tokio = { version = "1.28.2" }
tracing = { version = "=0.1.36" }
tracing-actix-web = { version = "0.7.5", features = ["opentelemetry_0_19"], optional = true }
tracing-actix-web = { version = "0.7.8", features = ["opentelemetry_0_19", "uuid_v7"], optional = true }
tracing-appender = { version = "0.2.2" }
tracing-attributes = "=0.1.22"
tracing-opentelemetry = { version = "0.19.0" }
Expand Down

0 comments on commit 65319fe

Please sign in to comment.