Skip to content

Commit

Permalink
Fix main docs prior to release
Browse files Browse the repository at this point in the history
  • Loading branch information
slawlor committed Oct 25, 2024
1 parent 3914f6d commit 30c5db1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ Install `ractor` by adding the following to your Cargo.toml dependencies.

```toml
[dependencies]
ractor = "0.12"
ractor = "0.13"
```

The minimum supported Rust version (MSRV) of `ractor` is `1.64`. However to utilize the native `async fn` support in traits and not rely on the `async-trait` crate's desugaring functionliaty, you need to be on Rust version `>= 1.75`. The stabilization of `async fn` in traits [was recently added](https://blog.rust-lang.org/2023/12/21/async-fn-rpit-in-traits.html).
Expand Down
2 changes: 1 addition & 1 deletion ractor/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
//!
//! ```toml
//! [dependencies]
//! ractor = "0.12"
//! ractor = "0.13"
//! ```
//!
//! The minimum supported Rust version (MSRV) is 1.64. However if you disable the `async-trait` feature, then you need Rust >= 1.75 due to the native
Expand Down
4 changes: 2 additions & 2 deletions ractor_cluster/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ Install `ractor_cluster` by adding the following to your Cargo.toml dependencies

```toml
[dependencies]
ractor = { version = "0.12", features = ["cluster"] }
ractor_cluster = "0.12"
ractor = { version = "0.13", features = ["cluster"] }
ractor_cluster = "0.13"
```

## Ractor in distribucted clusters
Expand Down
1 change: 0 additions & 1 deletion ractor_cluster/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
//! for binary serialization + deserialization. The "remote" actor will simply encode your message type and send it
//! over the wire for you
//!
//!
//! (Future) When nodes connect, they identify all of the nodes the remote node is also connected to and additionally connect
//! to them as well.
//!
Expand Down

0 comments on commit 30c5db1

Please sign in to comment.