diff --git a/Cargo.lock b/Cargo.lock index bc49852..237cd3a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3686,9 +3686,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.40.0" +version = "1.41.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2b070231665d27ad9ec9b8df639893f46727666c6767db40317fbe920a5d998" +checksum = "145f3413504347a2be84393cc8a7d2fb4d863b375909ea59f2158261aa258bbb" dependencies = [ "backtrace", "bytes", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 61aa876..e2c0a74 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -10,4 +10,4 @@ clap = { version = "4.5.19", features = ["derive"] } dotenv = "0.15.0" sdk = { path = "../sdk" } serde_json = "1.0.128" -tokio = { version = "1.40.0", features = ["full"] } +tokio = { version = "1.41.0", features = ["full"] } diff --git a/examples/Cargo.toml b/examples/Cargo.toml index 05ca3e0..50a868c 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -19,4 +19,4 @@ futures = "0.3.31" rand = "0.8.5" sdk = { path = "../sdk" } serde_json = "1.0.128" -tokio = { version = "1.40.0", features = ["full"] } +tokio = { version = "1.41.0", features = ["full"] } diff --git a/sdk/Cargo.toml b/sdk/Cargo.toml index 2a4846d..0976e06 100644 --- a/sdk/Cargo.toml +++ b/sdk/Cargo.toml @@ -9,7 +9,7 @@ reqwest = { version = "0.12.8", features = ["json"] } serde = { version = "1.0.213", features = ["derive"] } serde_json = "1.0.128" thiserror = "1.0.65" -tokio = { version = "1.40.0", features = ["full"] } +tokio = { version = "1.41.0", features = ["full"] } url = "2.5.2" [dev-dependencies] diff --git a/server/Cargo.toml b/server/Cargo.toml index 67d535f..4c2fb15 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -24,7 +24,7 @@ serde = { version = "1.0.213", features = ["derive"] } serde_json = { version = "1.0.128", features = ["raw_value"] } sqlx = { version = "0.8", features = ["runtime-tokio", "postgres", "chrono"] } svix-ksuid = { version = "^0.8.0", features = ["serde"] } -tokio = { version = "1.40.0", features = ["full"] } +tokio = { version = "1.41.0", features = ["full"] } url = "2.5.2" validator = { version = "0.18.1", features = ["derive"] }