Skip to content

Commit

Permalink
build: update tokio
Browse files Browse the repository at this point in the history
  • Loading branch information
lklimek committed Oct 7, 2024
1 parent aa4a38b commit f132a7e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions packages/rs-dapi-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ http-serde = { version = "2.1", optional = true }
rand = { version = "0.8.5", features = ["small_rng"] }
thiserror = "1.0.64"
tracing = "0.1.40"
tokio = { version = "1.39", default-features = false }
tokio = { version = "1.40", default-features = false }
sha2 = { version = "0.10", optional = true }
hex = { version = "0.4.3", optional = true }
lru = { version = "0.12.3" }
serde = { version = "1.0.197", optional = true, features = ["derive"] }
serde_json = { version = "1.0.120", optional = true }
chrono = { version = "0.4.38", features = ["serde"] }
[dev-dependencies]
tokio = { version = "1.39", features = ["macros"] }
tokio = { version = "1.40", features = ["macros"] }
2 changes: 1 addition & 1 deletion packages/rs-dpp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ once_cell = "1.19.0"

[dev-dependencies]
test-case = { version = "3.3" }
tokio = { version = "1.39", features = ["full"] }
tokio = { version = "1.40", features = ["full"] }
pretty_assertions = { version = "1.4.1" }
dpp = { path = ".", features = ["all_features_without_client"] }
assert_matches = "1.5.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/rs-drive-abci/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ metrics-exporter-prometheus = { version = "0.15", default-features = false, feat
] }
url = { version = "2.3.1" }
ureq = { "version" = "2.6.2" }
tokio = { version = "1.39", features = [
tokio = { version = "1.40", features = [
"macros",
"signal",
"rt-multi-thread",
Expand Down
4 changes: 2 additions & 2 deletions packages/rs-sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ drive-proof-verifier = { path = "../rs-drive-proof-verifier" }
dapi-grpc-macros = { path = "../rs-dapi-grpc-macros" }
http = { version = "1.1" }
thiserror = "1.0.64"
tokio = { version = "1.40.0", features = ["macros"] }
tokio = { version = "1.40", features = ["macros"] }
tokio-util = { version = "0.7.12" }
async-trait = { version = "0.1.83" }
ciborium = { git = "https://github.com/qrayven/ciborium", branch = "feat-ser-null-as-undefined" }
Expand All @@ -39,7 +39,7 @@ bip37-bloom-filter = { git = "https://github.com/dashpay/rs-bip37-bloom-filter",
pollster = { version = "0.3.0" }

[dev-dependencies]
tokio = { version = "1.40.0", features = ["macros", "rt-multi-thread"] }
tokio = { version = "1.40", features = ["macros", "rt-multi-thread"] }
rs-dapi-client = { path = "../rs-dapi-client", features = ["mocks"] }
base64 = { version = "0.22.1" }
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
Expand Down

0 comments on commit f132a7e

Please sign in to comment.