fix: js, py and lua allow &'static str, use it

This commit is contained in:
əlemi 2024-10-13 18:42:37 +02:00 committed by alemi.dev
parent 3c0a5d4919
commit b09e9452f2
4 changed files with 5 additions and 6 deletions

View file

@ -1,7 +1,6 @@
use jni_toolbox::jni;
/// Gets the current version of the Rust crate.
#[allow(non_snake_case)]
#[jni(package = "mp.code", class = "Extensions")]
fn version() -> String {
crate::version().to_string()

View file

@ -8,6 +8,6 @@ pub fn js_hash(data: String) -> i64 {
/// Get the current version of the client
#[napi(js_name = "version")]
pub fn js_version() -> String {
crate::version().to_string()
pub fn js_version() -> &'static str {
crate::version()
}

View file

@ -45,7 +45,7 @@ fn entrypoint(lua: &Lua) -> LuaResult<LuaTable> {
exports.set(
"version",
lua.create_function(|_, ()| Ok(crate::version().to_string()))?,
lua.create_function(|_, ()| Ok(crate::version()))?,
)?;
// runtime

View file

@ -133,8 +133,8 @@ impl Driver {
}
#[pyfunction]
fn version() -> String {
crate::version().to_string()
fn version() -> &'static str {
crate::version()
}
#[pyfunction]