Lots of owork on a calculator example, transparency, etc.

This commit is contained in:
2026-05-16 16:18:55 -04:00
parent e2c2563b7e
commit 6dcc2d0d00
40 changed files with 5783 additions and 125 deletions

View File

@@ -0,0 +1,14 @@
# RUIN - Rust Native Application Framework
A layered architecture for fast, native, cross-platform applications.
RUIN is a modern asynchronous runtime for interactive Rust applications on personal computers. It has a simple
threading and scheduling model, fast asynchronous I/O (io_uring on Linux, kqueue on macOS, and IOCP on windows),
and several libraries to enable building modern, reactive applications.
## Runtime
RUIN's core runtime is provided in [`ruin-runtime`](./lib/runtime/).
The runtime is non-workstealing with no threadpool. When a RUIN application starts, it runs a simple event loop on the
main thread.