Cow<str>
作为返回类型Crossbeam channels
取代标准库Scopeguard
实现类似 Golang 的延迟运算Cargo-make
打包impl Trait
Clippy
thiserror
和 anyhow
处理惯用错误dbg!()
替换 println!()
include_str!()
和 include_bytes!()
宏在编译时读取文件cc
crate 与 C/C++ 代码交互链接:https://federicoterzi.com/blog/12-rust-tips-and-tricks-you-might-not-know-yet/
又又又一个 Rust 教程:对 Rust 语言进行全面且深入的讲解,辅以生动的示例和习题。
教程地址:https://course.rs/
GitHub:https://github.com/sunface/rust-course
通过基于 arena 的 scapegoat tree(内存高效、自平衡二叉搜索树)实现的有序集合和映射数据结构。
#![no_std]
#![forbid(unsafe_code)]
,包含所有依赖两个 API:
SgSet
,BTreeSet 的子集SgMap
,BTreeMap 的子集分享 Slide:https://tiemoko.com/slides/SafeAndPortableDataStructureDesign_CodeAndSupply_Dec2021.pdf
GitHub:https://github.com/tnballo/scapegoat
RedisJSON 是一个 Redis 模块,实现了 ECMA-404 JSON 数据交换标准作为原生数据类型。它允许从 Redis 键(文档)存储、更新和获取 JSON 值。主要特点:
文档:https://oss.redis.com/redisjson/
GitHub:https://github.com/RedisJSON/RedisJSON
又一个并行处理库,适用于在一个已有的 iterator 中加入多线程处理;如果有许多已经存储在 collection 的值,想要执行大量计算,最好使用 rayon
。
博客:https://dpc.pw/adding-parallelism-to-your-rust-iterators
GitHub:https://github.com/dpc/pariter
From 日报小组 长琴