6 posts tagged with "rust"
OxideAuth — Decentralized Identity & Access Management Platform
A fully featured, decentralized Identity and Access Management (IAM) platform built in Rust. Multi-tenant workspaces with fine-grained RBAC via roles, permissions, and policies. Stateless JWT authentication with a Redis-backed blacklist pattern. Designed as a general-purpose auth service — not tied to any single product or organization.
Feb 19, 2026
Raderbot — Rust Trading Bot
A Rust-based trading bot connecting to Binance / BingX WebSocket APIs for live market data (kline, ticker, trade streams), position management, and algorithmic strategies — exposed through an Actix Web REST API and static UI on `localhost:3000`.
Mar 5, 2024
Orion Chain — Custom Blockchain in Rust
A feature-rich blockchain implementation written in Rust, featuring a custom TCP-based peer-to-peer communication protocol, ECDSA cryptographic signing (k256/p256 curves), RocksDB persistent storage, an Actix-web HTTP API, and a validator runtime for executing transactions. Designed as a full-node platform for decentralized applications with 55 source files across 7 modules.
Aug 23, 2024
orOS — Monolithic 64-bit Kernel in Rust
A 64-bit operating system kernel written from scratch in freestanding Rust. Features custom interrupt handling (IDT, GDT, PIC), physical memory management with paging, multiple heap allocator implementations, a VGA text-mode driver with framebuffer support, and an async cooperative task executor with keyboard input. Built for x86_64-unknown-none using the Rust nightly toolchain.
Feb 7, 2024
Rust Chess — Full-Stack Chess Application in Rust
A comprehensive full-stack chess application written entirely in Rust. The chess engine compiles to WebAssembly for high-performance in-browser move generation and validation, while the Actix-web backend provides real-time WebSocket communication for online multiplayer games, chat rooms, and session management. The frontend is built with Gatsby.js and React, consuming the WASM chess library for instant board evaluation.
Nov 19, 2023
Hack Assembler — Two-Pass Assembler in Rust
A robust two-pass assembler written in Rust that translates symbolic Hack Assembly (.asm) into 16-bit binary machine code (.hack). Demonstrates foundational knowledge of deterministic translation, symbol table management, lexical analysis, and bit-level instruction encoding — all with zero external dependencies.
Feb 7, 2023