I want to use rsx! for some string templating outside of dioxus ecosystem, thus I do not need dioxus app/router/request handler/etc.
- Which dependencies do I need to add to
Cargo.tomlto have justrsx!? - How then to then convert
let some_rsx_template = rsx! { "Hello, World!" }to a string?
I know there's a related question at github (https://github.com/DioxusLabs/dioxus/discussions/3645), but the answer is rather short - it just links to https://docs.rs/dioxus-ssr/latest/dioxus_ssr/ docs, and the docs/answer do not take (1) into account - docs use full dioxus install, operate on VDom, and tbh I could not make it work outside of dioxus app context.
Thanks in advance.