diff --git a/Cargo.lock b/Cargo.lock index 2840db4..fc75557 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -751,9 +751,9 @@ dependencies = [ [[package]] name = "tokio" -version = "1.36.0" +version = "1.37.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61285f6515fa018fb2d1e46eb21223fff441ee8db5d0f1435e8ab4f5cdb80931" +checksum = "1adbebffeca75fcfd058afa480fb6c0b81e165a0323f9c9d39c9697e37c46787" dependencies = [ "backtrace", "bytes", diff --git a/src/cmd/prae/Cargo.toml b/src/cmd/prae/Cargo.toml index 1451554..ad1c6e3 100644 --- a/src/cmd/prae/Cargo.toml +++ b/src/cmd/prae/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -tokio = { version = "1.36", features = ["full"] } +tokio = { version = "1.37", features = ["full"] } tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } anyhow = {version = "1.0.81"} diff --git a/src/lib/prae_api/Cargo.toml b/src/lib/prae_api/Cargo.toml index a43c7bb..2d53835 100644 --- a/src/lib/prae_api/Cargo.toml +++ b/src/lib/prae_api/Cargo.toml @@ -9,7 +9,7 @@ edition = "2021" axum = { version = "0.7" } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0.115" -tokio = { version = "1.36", features = ["full"] } +tokio = { version = "1.37", features = ["full"] } tracing = "0.1" tracing-subscriber = { version = "0.3" } anyhow = { version = "1.0.81" }