Ben Chuanlong Du's Blog

It is never too late to learn.

Rust for Financial Investment

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

hyperswitch

hyperswitch is a Payment Switch that lets you connect with multiple payment processors with a single API integration. Once integrated, you can add new payment processors and route traffic effortlessly …

Tips on Cargo

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

Create a Project

cargo init
cargo new project_name
cargo new --lib project_name

Install a Rust Crate (Package)

Install a Rust crate from GitHub (the default branch).

cargo install --git https://github …