News
webrtc.rs,纯Rust实现的WebRTC API
webrtc.rs,用 Rust 重写 Pion WebRTC (http://Pion.ly)。目前 v1.0 仍然处于开发中,欢迎开源贡献者提PR。其路线图如下:
Article
Deno 2020年度回顾
2020年,Deno 项目有了很多进展,几个大型基础设施的重构,API 趋于稳定,v1.0 版本的发布等。
Deno,是 Rust 实现的使用 V8 引擎的 JavaScript 和 TypeScript 安全运行时。
博客文章链接,https://deno.land/posts/deno-in-2020
Release
Async-std v1.9.0 发布
这个版本发布了稳定的 async_std::channel
子模块,并引入了 tokio v1.0 的功能,同时,移除了不赞成使用的sync::channel
类型。
use async_std::channel;
let (sender, receiver) = channel::unbounded();
assert_eq!(sender.send("Hello").await, Ok(()));
assert_eq!(receiver.recv().await, Ok("Hello"));
async-std v1.9.0 的链接,https://github.com/async-rs/async-std/releases/tag/v1.9.0
warp,更新到了 Tokio v1.0
warp,一个超级便捷,可组合的 Web 服务器框架,其构建于 hyper 之上。
GitHub Merge 的链接地址,https://github.com/seanmonstar/warp/pull/753#issuecomment-761093937
From 日报小组 洋芋
社区学习交流平台订阅:
评论区
写评论warp 0.3下载地址:https://github.com/seanmonstar/warp/tree/release-0.3.0