From 450f6dfd82e941a54c56182b347c94b87af334b5 Mon Sep 17 00:00:00 2001 From: sunrosa <79175772+sunrosa@users.noreply.github.com> Date: Tue, 2 Jan 2024 16:54:57 +0000 Subject: [PATCH] Update 03_state_of_async_rust.md for 1.75.0 --- src/01_getting_started/03_state_of_async_rust.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/01_getting_started/03_state_of_async_rust.md b/src/01_getting_started/03_state_of_async_rust.md index deaaf616..5a15c332 100644 --- a/src/01_getting_started/03_state_of_async_rust.md +++ b/src/01_getting_started/03_state_of_async_rust.md @@ -40,8 +40,8 @@ language features and library support: details. Some language features you may be used to from synchronous Rust are not yet -available in async Rust. Notably, Rust does not let you declare async -functions in traits. Instead, you need to use workarounds to achieve the same +available in async Rust. Notably, Rust did not let you declare async +functions in traits until 1.75.0 stable (and still has limitations on dynamic dispatch for those traits). Instead, you need to use workarounds to achieve the same result, which can be more verbose. ## Compiling and debugging