From 6f1f43a120328637f416a3c1f5e0d82f08ea5e29 Mon Sep 17 00:00:00 2001 From: Valerio Ageno <51341197+Valerioageno@users.noreply.github.com> Date: Fri, 10 May 2024 16:59:49 +0200 Subject: [PATCH] chore: update rusty_v8 to v0.91.1 (#36) --- Cargo.toml | 4 ++-- README.md | 2 +- src/lib.rs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 03ddffb..9cd075a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ssr_rs" -version = "0.5.0" +version = "0.5.1" 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.91.0" +v8= "0.91.1" [dev-dependencies] diff --git a/README.md b/README.md index 77e943a..cdeca20 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -ssr_rs = "0.5.0" +ssr_rs = "0.5.1" ``` ## Example diff --git a/src/lib.rs b/src/lib.rs index 2f3ff97..33a097c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -13,7 +13,7 @@ //! # Getting started //! ```toml //! [dependencies] -//! ssr_rs = "0.5.0" +//! ssr_rs = "0.5.1" //! ``` //! //! # Example