From d450676055132a235a529f3d8cef04e114297c96 Mon Sep 17 00:00:00 2001 From: Radim Date: Thu, 31 Aug 2023 14:22:54 +0900 Subject: [PATCH] Stable Rust docs --- docs/book/src/get_started.md | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/docs/book/src/get_started.md b/docs/book/src/get_started.md index 9a40e34..b36d096 100644 --- a/docs/book/src/get_started.md +++ b/docs/book/src/get_started.md @@ -32,10 +32,7 @@ Please refer to the [functions list](functions.md) for more details. ## Stable Rust -By default — like `leptos` — the library assumes you're using the -nightly Rust toolchain. This allows for more ergonomic use of signals. -If you want to use stable Rust, you have to enable the `stable` crate feature. - -```toml -leptos-use = { version = "...", features = ["stable"] } -``` +Just like `leptos` this library can be safely run on stable rust. Just don't +forget to consult the Getting Started section of the `leptos` docs to understand +what that means. As of writing, it concerns mainly the getter and setter syntax +on signals, and the use of `cx` in closures.