< 返回版块

长琴 发表于 2021-11-21 22:20

Tags:rust,日报

RustFest Global 2021:Rust In Arts Edition

235c6106c66c28ae13e16a65739645cf.png

日程:(https://rustfest.global/schedule/

地址:https://watch.rustfest.global/

pigeon-rs:电子邮件自动化工具

Pigeon 是一种命令行工具,用于以廉价且高效的方式自动化电子邮件工作流程。

比如,查询时事通讯的订阅者并向他们发送电子邮件:

pigeon send-bulk \
    sender@your-domain.com \
    --receiver-query "select email from user where newsletter_confirmed = true" \
    --message-file "message.yaml" \
    --display \
    --assume-yes

结果如下:

> Display query result: shape: (4, 1)
+------------------------------+
| email                        |
| ---                          |
| str                          |
+==============================+
| "marie@curie.com"            |
+------------------------------+
| "alexandre@grothendieck.com" |
+------------------------------+
| "emmy@noether.com"           |
+------------------------------+
| "elie@cartan.com"            |
+------------------------------+
> Sending email to 4 receivers ...
marie@curie.com ... ok
alexandre@grothendieck.com ... ok
emmy@noether.com ... ok
elie@cartan.com ... ok

Massage 配置文件格式如下:

# You can leave EITHER the text OR the html empty, but not both. Ideally, fill out both.
# You MUST provide a subject. Personalize message by wrapping variables in curly brackets, eg. {firstname}.

message:
    # The subject of your email
    subject: "Test subject"
    # The plaintext version
    text: "This is a test message (plaintext)."
    # The html version
    html: "This is a test message (html)."

GitHub:https://github.com/quambene/pigeon-rs

Top10 Cargo 命令

cargo install [options] crate...
cargo uninstall [options] [spec...]
cargo tree [options]
cargo search [options] [query...]
cargo edit
cargo +nightly udeps
cargo expand
cargo tarpaulin
cargo audit
cargo deny

链接:https://dev.to/davidadewoyin/top-rust-cargo-commands-2b70

Rust WebAPP 监控

使用 Prometheus 和 Grafana 监控 Rust Web 应用程序。

18ae1520e6f1efdb5cd379864d464275.png

链接:https://romankudryashov.com/blog/2021/11/monitoring-rust-web-application/

如何为嵌入式系统学习 Rust

也包含了一些 Rust 的学习资源。

链接:https://www.embeddedrelated.com/showarticle/1432.php

RustSBI-Nezha项目已经可以在oreboot引导链中使用

oreboot是类似于coreboot的引导程序项目,而RustSBI是适用于RISC-V的引导程序环境,这两者都是纯粹由rust编写的嵌入式应用程序。

经过社区成员@OrangeCMS和贡献者们的进一步适配,RustSBI-Nezha现在能在oreboot引导链中能正常运行。图片的控制台输出显示,引导链在初始化DDR内存后,能够做到M态的陷入处理,随后进入下一步的系统启动过程。这项适配工作意味着,oreboot和RustSBI-Nezha提供了一种启动Linux系统可用的新引导途径。

RustSBI-Nezha项目是湖南农业大学的杨云枫同学、天津科技大学的王涛同学和队友们在暑假的“2021年开源操作系统夏令营”活动中发起的开源项目。

项目分支地址: https://github.com/orangecms/rustsbi-nezha/tree/rustsbi-nezha

推文链接:https://twitter.com/OrangeCMS/status/1462197961606246403?t=_n8beWS2OFhygZ9CWdrwiA&s=19

文章推荐

  • 测试 Trait 的多个 implementation:https://eli.thegreenplace.net/2021/testing-multiple-implementations-of-a-trait-in-rust/
  • 循环引用数据结构:https://eli.thegreenplace.net/2021/rust-data-structures-with-circular-references/
  • Rust 安全相关:https://kerkour.com/rust-crate-backdoor/

From 日报小组 长琴

社区学习交流平台订阅:

评论区

写评论

还没有评论

1 共 0 条评论, 1 页