diff options
author | Florian Klink <flokli@flokli.de> | 2024-12-04T17·12+0200 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2024-12-04T21·52+0000 |
commit | 2879969f1b5cdc61012e08c7787a0b63a78cd248 (patch) | |
tree | 6da8f507c07488fec0a254b86c4eb98d59f26c61 /tvix/Cargo.lock | |
parent | e743e2439cd3c5b430e615c0021b47927b2dc98e (diff) |
chore(tvix): bump tower-otel-http-metrics, enable axum feature r/8982
Move back to a proper release containing the opentelemetry bump. Also enable the `axum` feature, which will give us a per-route accounting. Change-Id: Icdf4dc73588ef45b6596b320c14d9f44946327b3 Reviewed-on: https://cl.tvl.fyi/c/depot/+/12865 Reviewed-by: Ilan Joselevich <personal@ilanjoselevich.com> Autosubmit: flokli <flokli@flokli.de> Tested-by: BuildkiteCI
Diffstat (limited to 'tvix/Cargo.lock')
-rw-r--r-- | tvix/Cargo.lock | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/tvix/Cargo.lock b/tvix/Cargo.lock index 73724b57a0e1..b38ff3b48d97 100644 --- a/tvix/Cargo.lock +++ b/tvix/Cargo.lock @@ -302,6 +302,7 @@ checksum = "504e3947307ac8326a5437504c517c4b56716c9d98fac0028c2acc7ca47d70ae" dependencies = [ "async-trait", "axum-core", + "axum-macros", "bytes", "futures-util", "http", @@ -373,6 +374,17 @@ dependencies = [ ] [[package]] +name = "axum-macros" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57d123550fa8d071b7255cb0cc04dc302baa6c8c4a79f55701552684d8399bce" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.79", +] + +[[package]] name = "axum-range" version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -4448,10 +4460,11 @@ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" [[package]] name = "tower-otel-http-metrics" -version = "0.8.0" -source = "git+https://github.com/francoposa/tower-otel-http-metrics?rev=2023a58e7287a691872f8e75f433179d29d1b439#2023a58e7287a691872f8e75f433179d29d1b439" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed0ba983713ec0f5d512dc28091fa3c1cb8fa5487de32a1b0bc0cb4159f9f89f" dependencies = [ - "futures-core", + "axum", "futures-util", "http", "opentelemetry", |