build(deps): bump tokio from 1.44.2 to 1.45.0 (#4520)

This commit is contained in:
Quentin Gliech
2025-05-07 19:37:13 +02:00
committed by GitHub
3 changed files with 16 additions and 7 deletions

4
Cargo.lock generated
View File

@@ -6380,9 +6380,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
[[package]]
name = "tokio"
version = "1.44.2"
version = "1.45.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6b88822cbe49de4185e3a4cbf8321dd487cf5fe0c5c65695fef6346371e9c48"
checksum = "2513ca694ef9ede0fb23fe71a4ee4107cb102b9dc1930f6d0fd77aae068ae165"
dependencies = [
"backtrace",
"bytes",

View File

@@ -371,7 +371,7 @@ version = "0.2.1"
# Async runtime
[workspace.dependencies.tokio]
version = "1.44.2"
version = "1.45.0"
features = ["full"]
[workspace.dependencies.tokio-stream]

View File

@@ -126,7 +126,6 @@ pub fn observe(metrics: RuntimeMetrics) {
.build();
}
#[cfg(tokio_unstable)]
{
let metrics = metrics.clone();
METER
@@ -144,6 +143,19 @@ pub fn observe(metrics: RuntimeMetrics) {
.build();
}
#[cfg(tokio_unstable)]
{
let metrics = metrics.clone();
METER
.u64_observable_counter("tokio_runtime.spawned_tasks_count")
.with_description("The number of tasks spawned in this runtime since it was created.")
.with_unit("{task}")
.with_callback(move |instrument| {
instrument.observe(metrics.spawned_tasks_count(), &[]);
})
.build();
}
#[cfg(tokio_unstable)]
{
let metrics = metrics.clone();
@@ -163,7 +175,6 @@ pub fn observe(metrics: RuntimeMetrics) {
.build();
}
#[cfg(tokio_unstable)]
{
let metrics = metrics.clone();
METER
@@ -247,7 +258,6 @@ pub fn observe(metrics: RuntimeMetrics) {
.build();
}
#[cfg(tokio_unstable)]
{
let metrics = metrics.clone();
METER
@@ -416,7 +426,6 @@ pub fn observe(metrics: RuntimeMetrics) {
}
/// Helper to construct a [`KeyValue`] with the worker index.
#[allow(dead_code)]
fn worker_idx(i: usize) -> KeyValue {
KeyValue::new("worker_idx", i.try_into().unwrap_or(i64::MAX))
}