Skip to content

Commit f0db733

Browse files
Dependency bumping
1 parent 76ac571 commit f0db733

File tree

3 files changed

+10
-13
lines changed

3 files changed

+10
-13
lines changed

Cargo.toml

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -19,32 +19,31 @@ http_server = ["hyper", "hyper/server", "hyper/http2", "hyper-util", "tokio/net"
1919
tracing-span-filter = ["dep:tracing-subscriber"]
2020

2121
[dependencies]
22-
bytes = "1.6.1"
22+
bytes = "1.10"
2323
futures = "0.3"
24-
http = "1.1.0"
24+
http = "1.3"
2525
http-body-util = { version = "0.1", optional = true }
26-
hyper = { version = "1.4.1", optional = true}
26+
hyper = { version = "1.6", optional = true}
2727
hyper-util = { version = "0.1", features = ["tokio", "server", "server-graceful", "http2"], optional = true }
2828
pin-project-lite = "0.2"
29-
rand = { version = "0.8.5", optional = true }
29+
rand = { version = "0.9", optional = true }
3030
regress = "0.10"
31-
restate-sdk-macros = { version = "0.3.2", path = "macros" }
31+
restate-sdk-macros = { version = "0.3", path = "macros" }
3232
restate-sdk-shared-core = { git = "https://github.com/restatedev/sdk-shared-core.git", branch = "main", features = ["request_identity", "sha2_random_seed", "http"] }
3333
serde = "1.0"
3434
serde_json = "1.0"
35-
thiserror = "1.0.63"
36-
tokio = { version = "1", default-features = false, features = ["sync"] }
37-
tower-service = "0.3"
35+
thiserror = "2.0"
36+
tokio = { version = "1.44", default-features = false, features = ["sync"] }
3837
tracing = "0.1"
3938
tracing-subscriber = { version = "0.3", features = ["registry"], optional = true }
40-
uuid = { version = "1.10.0", optional = true }
39+
uuid = { version = "1.16.0", optional = true }
4140

4241
[dev-dependencies]
4342
tokio = { version = "1", features = ["full"] }
4443
tracing-subscriber = { version = "0.3", features = ["env-filter", "registry"] }
4544
trybuild = "1.0"
4645
reqwest = { version = "0.12", features = ["json"] }
47-
rand = "0.8.5"
46+
rand = "0.9"
4847

4948
[build-dependencies]
5049
jsonptr = "0.5.1"

examples/failures.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ impl FailureExample for FailureExampleImpl {
1717
async fn do_run(&self, context: Context<'_>) -> Result<(), TerminalError> {
1818
context
1919
.run::<_, _, ()>(|| async move {
20-
if rand::thread_rng().next_u32() % 4 == 0 {
20+
if rand::rng().next_u32() % 4 == 0 {
2121
Err(TerminalError::new("Failed!!!"))?
2222
}
2323

test-services/Cargo.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,3 @@ futures = "0.3"
1212
restate-sdk = { path = ".." }
1313
serde = { version = "1", features = ["derive"] }
1414
tracing = "0.1.40"
15-
rand = "0.8.5"
16-
uuid = "1.10.0"

0 commit comments

Comments
 (0)