diff --git a/Cargo.lock b/Cargo.lock index 01dcd7c1..7811ac32 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3600,9 +3600,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[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/integrationtests/Cargo.toml b/integrationtests/Cargo.toml index d06201d3..0215b838 100644 --- a/integrationtests/Cargo.toml +++ b/integrationtests/Cargo.toml @@ -31,11 +31,11 @@ hex = "0.4.3" reqwest = { version = "0.12.1", default-features = false } [target.'cfg(not(target_family="wasm"))'.dependencies] -tokio = { version = "1.35.1", features = ["sync", "rt-multi-thread"] } +tokio = { version = "1.37.0", features = ["sync", "rt-multi-thread"] } [dev-dependencies] anyhow = { version = "1.0.80", features = ["backtrace"] } -tokio = { version = "1.36.0", features = ["full"] } +tokio = { version = "1.37.0", features = ["full"] } reqwest = { version = "0.12.1", default-features = false } moksha-mint = { path = "../moksha-mint" } moksha-wallet = { path = "../moksha-wallet" } diff --git a/moksha-cli/Cargo.toml b/moksha-cli/Cargo.toml index 58b291c7..8d998d54 100644 --- a/moksha-cli/Cargo.toml +++ b/moksha-cli/Cargo.toml @@ -16,7 +16,7 @@ name = "moksha-cli" moksha-wallet = { version = "0.2.1", path = "../moksha-wallet" } moksha-core = { version = "0.2.1", path = "../moksha-core" } clap = { version = "4.5.1", features = ["derive"] } -tokio = { version = "1.34.0", features = ["rt", "rt-multi-thread", "macros"] } +tokio = { version = "1.37.0", features = ["rt", "rt-multi-thread", "macros"] } url = "2.4.1" anyhow = { version = "1.0.75", features = ["backtrace"] } dialoguer = "0.11.0" diff --git a/moksha-mint/Cargo.toml b/moksha-mint/Cargo.toml index b67b6cca..0a8e3989 100644 --- a/moksha-mint/Cargo.toml +++ b/moksha-mint/Cargo.toml @@ -25,7 +25,7 @@ axum = { version = "0.7.5", features = ["http2"] } hyper = "1" serde = { version = "1.0.193", features = ["derive"] } serde_json = "1.0.108" -tokio = { version = "1.36.0", features = ["full"] } +tokio = { version = "1.37.0", features = ["full"] } tower-http = { version = "0.5.0", features = ["cors", "fs", "set-header"] } secp256k1 = { version = "0.28.2", default-features = false, features = ["rand", "serde"] } diff --git a/moksha-wallet/Cargo.toml b/moksha-wallet/Cargo.toml index 3a4b74d1..9775f349 100644 --- a/moksha-wallet/Cargo.toml +++ b/moksha-wallet/Cargo.toml @@ -30,7 +30,7 @@ gloo-net = { version = "0.5.0" } serde-wasm-bindgen = "0.6.3" wasm-bindgen = "0.2.90" rexie = "0.5.0" -tokio = { version = "1.35.1", features = ["rt", "sync"] } +tokio = { version = "1.37.0", features = ["rt", "sync"] } [target.'cfg(not(target_family="wasm"))'.dependencies] reqwest = { version = "0.12.1", features = ["json", "rustls-tls"], default-features = false }