Skip to content

Commit

Permalink
chore: update tokio
Browse files Browse the repository at this point in the history
  • Loading branch information
ngutech21 committed Mar 30, 2024
1 parent d3970b3 commit 048efc2
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 36 deletions.
60 changes: 30 additions & 30 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions integrationtests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down
2 changes: 1 addition & 1 deletion moksha-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion moksha-mint/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down
4 changes: 2 additions & 2 deletions moksha-wallet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ 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 }
tokio = { version = "1.35.1", features = ["rt", "rt-multi-thread", "macros"] }
tokio = { version = "1.37.0", features = ["rt", "rt-multi-thread", "macros"] }
sqlx = { version = "0.7.4", default-features = false, features = ["sqlite", "runtime-tokio", "tls-rustls", "migrate", "macros"] }

[dev-dependencies]
Expand Down

0 comments on commit 048efc2

Please sign in to comment.