Skip to content

Commit

Permalink
Prepare release of tarpc v0.35.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tikue committed Oct 27, 2024
1 parent 2ed2be9 commit bacf2c7
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ Some other features of tarpc:
Add to your `Cargo.toml` dependencies:

```toml
tarpc = "0.34"
tarpc = "0.35"
```

The `tarpc::service` attribute expands to a collection of items that form an rpc service.
Expand All @@ -82,7 +82,7 @@ your `Cargo.toml`:
```toml
anyhow = "1.0"
futures = "0.3"
tarpc = { version = "0.34", features = ["tokio1"] }
tarpc = { version = "0.35", features = ["tokio1"] }
tokio = { version = "1.0", features = ["rt-multi-thread", "macros"] }
```

Expand Down
4 changes: 2 additions & 2 deletions example-service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ homepage = "https://github.com/google/tarpc"
repository = "https://github.com/google/tarpc"
keywords = ["rpc", "network", "server", "microservices", "example"]
categories = ["asynchronous", "network-programming"]
readme = "../README.md"
readme = "README.md"
description = "An example server built on tarpc."

[dependencies]
Expand All @@ -21,7 +21,7 @@ futures = "0.3"
opentelemetry = { version = "0.26.0" }
opentelemetry-otlp = "0.26.0"
rand = "0.8"
tarpc = { version = "0.34", path = "../tarpc", features = ["full"] }
tarpc = { version = "0.35", path = "../tarpc", features = ["full"] }
tokio = { version = "1", features = ["macros", "net", "rt-multi-thread"] }
tracing = { version = "0.1" }
tracing-opentelemetry = "0.27.0"
Expand Down
2 changes: 1 addition & 1 deletion tarpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tarpc"
version = "0.34.0"
version = "0.35.0"
rust-version = "1.65.0"
authors = [
"Adam Wright <adam.austin.wright@gmail.com>",
Expand Down
4 changes: 2 additions & 2 deletions tarpc/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
//! Add to your `Cargo.toml` dependencies:
//!
//! ```toml
//! tarpc = "0.34"
//! tarpc = "0.35"
//! ```
//!
//! The `tarpc::service` attribute expands to a collection of items that form an rpc service.
Expand All @@ -69,7 +69,7 @@
//! ```toml
//! anyhow = "1.0"
//! futures = "0.3"
//! tarpc = { version = "0.34", features = ["tokio1"] }
//! tarpc = { version = "0.35", features = ["tokio1"] }
//! tokio = { version = "1.0", features = ["macros"] }
//! ```
//!
Expand Down

0 comments on commit bacf2c7

Please sign in to comment.