タグ in Rust
人気順 5 users 50 users 100 users 500 users 1000 userswebpack互換のRust製高速バンドラ「Rspack」が正式版となるバージョン1.0に到達。webpackより10倍高速と
webpack互換のRust製高速バンドラ「Rspack」が正式版となるバージョン1.0に到達。webpackより10倍高速と webpack互換のRust製高速バンドラ「Rspack」が正式版となる「Rspack 1.0」としてリリースされました。 Announcing Rspack 1.0 - the next generation JavaScript bundler written in Rust, webpack compatible, 10x... 続きを読む
Building a Simple DB in Rust - Part 1 - Parsing
This article is part of the Building a Simple DB in Rust series. While I've used rust for a while and have had a few small projects in it, I felt like I was missing a truly "systems" project. So when I came across this series for making a simple DB in C, I figured why not try to make my own basic... 続きを読む
YJIT: Dive into Ruby's JIT compiler written in Rust / Rust.Tokyo 2022
YJIT: Dive into Ruby's JIT compiler written in Rust / Rust.Tokyo 2022 続きを読む
Announcing Parcel CSS: A new CSS parser, compiler, and minifier written in Rust!
I'm very excited to announce @parcel/css, a new CSS parser, compiler, and minifier written in Rust! Check it out on GitHub, or try a live demo right in your browser. Parcel CSS has significantly better performance than existing tools, while also improving minification quality. In addition to mini... 続きを読む
GitHub - emilk/emigui: egui: Immediate mode GUI written in Rust, made for WASM
Dismiss Join GitHub today GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together. Sign up 続きを読む
GitHub - google/OpenSK: OpenSK is an open-source implementation for security keys written in Rust that supports both FIDO U2F and FIDO2 standards.
Dismiss Join GitHub today GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together. Sign up OpenSK is an open-source implementation for security keys written in Rust that supports both FIDO U2F and FIDO2 standards. 続きを読む
GitHub - nushell/nushell: A modern shell written in Rust
Nu Shell A modern, GitHub-era shell written in Rust Status This project has reached a minimum-viable product level of quality. While contributors dogfood it as their daily driver, it may be instable for some commands. Future releases will work fill out missing features and improve stability. Its ... 続きを読む
GitHub - RustPython/RustPython: A Python Interpreter written in Rust
Dismiss Join GitHub today GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together. Sign up 続きを読む
You can’t “turn off the borrow checker” in Rust
Every once in a while, someone will talk about unsafe in Rust, and how it “turns off the borrow checker.” I think this framing leads to misconceptions about unsafe and how it interacts with safe code. Here’s some code that causes a borrow checker error: fn main() { let mut x = 5; let y = &x; let ... 続きを読む