From 390ecc467950c392b0e0603362c51639d21e2268 Mon Sep 17 00:00:00 2001 From: Jan Haller Date: Mon, 25 Nov 2024 11:51:18 +0100 Subject: [PATCH] Mention rustyscript --- ReadMe.md | 3 ++- js-sandbox/src/lib.rs | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ReadMe.md b/ReadMe.md index 85b3de5..ec947cc 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -15,7 +15,8 @@ Instead, `js-sandbox` focuses on calling standalone JS code from Rust, and tries The typical use case is a core Rust application that integrates with scripts from external users, for example a plugin system or a game that runs external mods. -This library is in early development, with a basic but powerful API. The API may still evolve considerably. +> [!TIP] +> If you are looking for a more feature-rich integration, check out [rustyscript](https://github.com/rscarson/rustyscript)! ## Examples diff --git a/js-sandbox/src/lib.rs b/js-sandbox/src/lib.rs index af5a246..ad0f6ec 100644 --- a/js-sandbox/src/lib.rs +++ b/js-sandbox/src/lib.rs @@ -15,7 +15,8 @@ //! The typical use case is a core Rust application that integrates with scripts from external users, for example a plugin system or a game that runs //! external mods. //! -//! This library is in early development, with a basic but powerful API. The API may still evolve considerably. +//! > [!TIP] +//! > If you are looking for a more feature-rich integration, check out [rustyscript](https://github.com/rscarson/rustyscript)! //! //! # Examples //!