diff --git a/Cargo.toml b/Cargo.toml index 90b6e44..0720379 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ssr_rs" -version = "0.5.2" +version = "0.5.3" authors = ["Valerio "] edition = "2021" description = "Server side rendering with the v8 engine for parse and evaluate the javascript code" diff --git a/README.md b/README.md index 5215d31..7fe0e48 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,8 @@ The crate aims to enable server side rendering on rust servers in the simplest a It uses an embedded version of the [V8](https://v8.dev/) javascript engine (rusty_v8) to parse and evaluate a built bundle file and return a string with the rendered html. +> ℹ️ This project is the backbone of [tuono](https://github.com/Valerioageno/tuono); a fullstack react framework with built in server side rendering. + Currently it works with [Vite](https://vitejs.dev/), [Webpack](https://webpack.js.org/), [Rspack](https://www.rspack.dev/) and [React 18](https://react.dev/) - Check the examples folder. > Check here the benchmark results. @@ -17,7 +19,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -ssr_rs = "0.5.2" +ssr_rs = "0.5.3" ``` ## Example diff --git a/src/lib.rs b/src/lib.rs index fa67f42..9230605 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -5,6 +5,8 @@ //! //! It uses an embedded version of the [V8](https://v8.dev/) javascript engine (rusty_v8) to parse and evaluate a built bundle file and return a string with the rendered html. //! +//! > ℹ️ This project is the backbone of [tuono](https://github.com/Valerioageno/tuono); a fullstack react framework with built in server side rendering. +//! //! Currently it works with [Vite](https://vitejs.dev/), [Webpack](https://webpack.js.org/), [Rspack](https://www.rspack.dev/) and [React 18](https://react.dev/) - Check the examples folder. //! //! > Check here the @@ -13,7 +15,7 @@ //! # Getting started //! ```toml //! [dependencies] -//! ssr_rs = "0.5.2" +//! ssr_rs = "0.5.3" //! ``` //! //! # Example