diff --git a/Cargo.toml b/Cargo.toml index fd200e8..4de28b9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ssr_rs" -version = "0.5.5" +version = "0.5.6" authors = ["Valerio "] edition = "2021" description = "Server side rendering with the v8 engine for parse and evaluate the javascript code" @@ -22,7 +22,7 @@ name = "ssr_rs" path = "src/lib.rs" [dependencies] -v8= "0.94.0" +v8= "0.96.0" [dev-dependencies] diff --git a/README.md b/README.md index 51b3e78..0292e14 100644 --- a/README.md +++ b/README.md @@ -6,8 +6,8 @@ The crate aims to enable server side rendering on rust servers in the simplest and lightest way possible. 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.** +> [!NOTE] +> This project is the backbone of [tuono](https://github.com/Valerioageno/tuono); a fullstack react framework with built in SSR. Currently it works with [Vite](https://vitejs.dev/), [Webpack](https://webpack.js.org/), [Rspack](https://www.rspack.dev/), [React 18](https://react.dev/) and [Svelte 4](https://svelte.dev/) - Check the `examples/` folder. diff --git a/src/lib.rs b/src/lib.rs index fcc7981..79b01ab 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -5,7 +5,7 @@ //! //! 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.** +//! ℹ️ **This project is the backbone of [tuono](https://github.com/Valerioageno/tuono); a fullstack react framework with built in SSR.** //! //! Currently it works with [Vite](https://vitejs.dev/), [Webpack](https://webpack.js.org/), [Rspack](https://www.rspack.dev/), [React 18](https://react.dev/) and [Svelte 4](https://svelte.dev/) - Check the examples folder. //!