From ef53add2436c106c3d9a4e19de3ca298121493d2 Mon Sep 17 00:00:00 2001 From: Mike Nguyen Date: Mon, 1 Jun 2026 22:55:47 +0100 Subject: [PATCH] chore: release prep 0.19.0-rc.1 (#325) Signed-off-by: Mike Nguyen --- Cargo.toml | 2 +- README.md | 2 +- dapr/Cargo.toml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f67ae2c..8f16282 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,7 @@ tonic-prost = "0.14.6" tonic-prost-build = "0.14.6" [workspace.package] -version = "0.19.0-rc.0" +version = "0.19.0-rc.1" authors = ["Mike Nguyen ", "The Dapr Authors "] edition = "2024" license = "Apache-2.0" diff --git a/README.md b/README.md index 782ecef..1e76922 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ resiliency. ## Prerequisites -Ensure you have Rust version 1.85 or higher installed. If not, install Rust [here](https://www.rust-lang.org/tools/install). +Ensure you have Rust version 1.88 or higher installed. If not, install Rust [here](https://www.rust-lang.org/tools/install). These crates no longer require protoc unless to recompile the protobuf files. diff --git a/dapr/Cargo.toml b/dapr/Cargo.toml index 7373696..9d532f4 100644 --- a/dapr/Cargo.toml +++ b/dapr/Cargo.toml @@ -12,7 +12,7 @@ rust-version.workspace = true [features] default = ["workflow"] -workflow = ["dep:dapr-durabletask", "dep:tokio-util"] +workflow = ["dep:dapr-durabletask"] [dependencies] async-trait = { workspace = true } @@ -29,7 +29,7 @@ serde_json = { workspace = true } tonic = { workspace = true } tonic-prost = { workspace = true } tokio = { workspace = true, features = ["rt", "sync", "time"] } -tokio-util = { workspace = true, features = ["io"], optional = true } +tokio-util = { workspace = true, features = ["io"] } tower = { version = "0.5", features = ["util"] }