[Updating] Rust Books and Blogs Recommendations
[Chinese] Rust Course
https://course.rs/into-rust.html Very well written, the first choice for beginners
[Chinese] Rust Getting Started Guide
https://rust-book.junmajinlong.com/ch102/tracing.html Contains many tips that help you get started quickly without searching for hours
[Chinese] Rust Coding Guidelines V 1.0 beta
https://rust-coding-guidelines.github.io/rust-coding-guidelines-zh/ Even if you can write code, standards are important. If you don't want to forget what you wrote today by tomorrow, at least good standards will help you understand your old code faster
[English] The Cargo Book
https://doc.rust-lang.org/cargo/index.html Cargo is Rust's package manager. This is the Cargo user manual - although in English, the content is very detailed
[Chinese] Event-driven Non-blocking I/O Platform Tokio
https://tokio-zh.github.io/document/
[English] DelayTimer
A cyclic task manager with delay attributes, based on internal event manager and task scheduler, supporting synchronous and asynchronous tasks with runtime support from Smol and Tokio, making it easy to manage and dynamically add/cancel/delete tasks. https://docs.rs/delay_timer/latest/delay_timer/
Best Example of Rust Scheduled Tasks
A simple cron-like job scheduling library for Rust. https://github.com/lholden/job_scheduler