rust-sciter
rust
rust-sciter | rust | |
---|---|---|
6 | 2,856 | |
814 | 104,879 | |
0.0% | 1.0% | |
0.0 | 10.0 | |
about 3 years ago | 2 days ago | |
Rust | Rust | |
MIT License | GNU General Public License v3.0 or later |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
rust-sciter
- Hey Rustaceans! Got a question? Ask here (16/2023)!
- Rust 1.64 Became 10-20% Faster On Windows
-
Azure CTO: “It's time to halt starting any new projects in C/C++ ”
Most GUI apps don't need what Qt provides though. They mostly need stability and cross-platform support, so ... they should start with something like Tauri or Sciter, and if there is something they need natively they will be in a much better situation to pick their poison.
https://github.com/tauri-apps/tauri uses OS provided WebView
https://github.com/sciter-sdk/rust-sciter uses Sciter
-
Do you think the Rust is production ready for GUI in 2021?
I seriously advise against using rust-sciter. It uses a lot of unsafe code, some of which is invalid and directly causes Undefined Behavior; see for example issue #114. rust-sciter's author doesn't seem to have any interest in fixing those. Besides, the code is highly unidomatic and looks like it's been written to resemble C++ – this is in itself not wrong, but always a red flag.
-
Any stable crate to develop a cross-platform Rust desktop app?
I use https://github.com/sciter-sdk/rust-sciter in my project https://github.com/rustdesk/rustdesk
rust
-
Tree Borrows
I am very sorry, but you do not address that TBAA, like C has by default, generally is easier than just no aliasing, like what Rust has for mutable references. This is a major difference. C code can opt into a similar kind of aliasing, namely by using _restrict_, but that is opt-in, while it is always on for Rust.
And there is newer UB as well in Rust stdlib
https://github.com/rust-lang/rust/pull/139553
- # [derive(Clone)] Is Broken
-
My first verified (imperative) program
Real-world programs can be verified by formally proving properties on a small part of the code (called the kernel) in a way that transitively guarantees those for the remaining code.
For example, Rust's borrow checker guarantees* memory safety of any code written in Rust, even a 10M+ LOC project. Another example is sel4, a formally-verified micro-kernel (https://sel4.systems/About/seL4-whitepaper.pdf).
* Technically not; even if the code doesn't use `unsafe`, not only is Rust's borrow checker not formally verified, there are soundness holes (https://github.com/rust-lang/rust/issues?q=is%3Aopen%20is%3A...). However, in theory it's possible to formally prove that a subset of Rust can only encode memory-safe programs, and in practice Rust's borrow checker is so effective that a 10M+ LOC project without unsafe will still probably not have memory issues.
-
The Technology Behind SmoothCSV - The Ultimate CSV Editor
Backend: Rust
-
Weird Expressions in Rust
What's weird about this?
To understand what evil_lincoln is doing, you have to understand very old Rust. Here's the commit that introduced it: https://github.com/rust-lang/rust/commit/664b0ad3fcead4fe4d2...
fn evil_lincoln() {
-
"Why is the Rust compiler so slow?"
Side note: There's an effort to cache proc macro invocations so that they get executed only once if the item they annotate hasn't changed: https://github.com/rust-lang/rust/pull/129102
There are multiple caveats on providing this to users (we can't assume that macro invocations are idempotent, so the new behavior would have to be opt in, and this only benefits incremental compilation), but it's in our radar.
- Naked functions are now stable in Rust 1.88
-
Building an iOS App with Rust Using UniFFI
Rust: Install it from the official Rust website.
- rlox: A Rust Implementation of “Crafting Interpreters” – Scanner
- 🏳️⚧️ Pride Hero: LGBTQ+ Landing Page for WASM Frameworks
What are some alternatives?
Cursive - A Text User Interface library for the Rust programming language
carbon-lang - Carbon Language's main repository: documents, design, implementation, and related tools. (NOTE: Carbon Language is experimental; see README)
Azul - Desktop GUI Framework
zig - General-purpose programming language and toolchain for maintaining robust, optimal, and reusable software.
libui-rs - Rust bindings to the minimalist, native, cross-platform UI toolkit `libui`
Odin - Odin Programming Language