rust-sciter
rust-sciter copied to clipboard
Rust bindings for Sciter
this pr allow set env `SCITER_STATIC_LIBRARY` and disable `dynamic` feature to link static library in windows fix #121
hi, i have a license for sciter and already generated the sciter.static.lib, how should i proceed to embed the static library to my final executable? can you just give me...
It should be clear that rust-sciter supports both.
Because http://sciter.com removed TIScript documentation :(
Tauri is a similar project which is also based on Rust and frontend technologies. I wonder what are the advantages and disadvantages of rust-sciter compared to tauri?
There's a serious bug in the `sciter::value::Value` implementation related to `std::ops::Index`: let mut v = sciter::value::Value::array(2); v.set(0, 5); v.set(1, 6); let v_0 = &v[0]; let v_1 = &v[1]; dbg!(v_0); dbg!(v_1);...
Any Example for rust green thread await async ? Thanks!
Another potential way to improve code, albeit at the expense of adding another dependency https://github.com/sciter-sdk/rust-sciter/compare/master...Alovchin91:feature/bitflags
The example works as intended. But porting it to Sciter.JS does not: ```html extension test // copy "extension.dll" next to the "sciter.dll" import { loadLibrary } from "@sciter"; const ext...
I'll keep the name scope but eliminate unsafe transmute from integers to enums