赞
踩
与 Python 和 Go 等其他编程语言相比,Rust 的标准库非常小,仅包含一些核心数据结构,所有其他功能都交给第三方 crate 去完成,Rust 新手的一个常见抱怨是,他们不知道从哪里开始:应该使用哪些 crate,应该信任哪些 crate。bless.rs这个网站旨在回答这些问题。
bless.rs 列举了 Rust 开发中最常用的一些库,包括了网络开发、并发、日志、命令行、错误处理等各个方面,将它作为你的 Rust crate cheat sheet 再合适不过了。
bless.rs 网址: https://blessed.rs/crates
RustFFT 是用纯 Rust 编写的高性能、SIMD 加速的快速傅氏变换库,6.1.0 版本将 SIMD 的支持扩展到 AArch64 的 Neon 指令集,也就意味着可以在 Apple M1 上运用新的 Neon 加速代码。至此,RustFFT 已经支持了 AVX、AVX2、SSE4.1 和 Neon 指令集。
Hurl 是一个开源的命令行处理工具,能让你通过普通的文本文件,测试 REST API 和 HTML 内容。其基于 curl 实现,具有轻量,跨平台的优点,能够很好地集成到 CI/CD, Github Action 等环节中。
下面是 Hurl 的一个示例
- POST https://example.org/api/tests
- {
- "id": "4568",
- "evaluate": true
- }
-
- HTTP/1.1 200
- [Asserts]
- header "X-Frame-Options" == "SAMEORIGIN"
- jsonpath "$.status" == "RUNNING" # Check the status code
- jsonpath "$.tests" count == 25 # Check the number of items
- jsonpath "$.id" matches /\d{4}/ # Check the format of the id
通过 hurl /path/to/file
即可执行 API 测试。
1.8.0 版本中,Hurl 新增了请求重试、URL断言、Debug日志等特性,给开发者带来了更好的体验,详细内容可以阅读以下资料:
your-first-hurl-file 示例
1.8.0 changelog
github 仓库地址: https://github.com/Orange-OpenSource/hurl
-- From 日报小组 RustPlumber
社区学习交流平台订阅:
Rust.cc 论坛: 支持 rss
微信公众号:Rust 语言中文社区
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。