Freya GUI 库
我发布了 Freya 的第一个版本,这是一个由 Dioxus 和 Skia 提供支持的 Rust 实验性原生 GUI 库。目前它可以在 Windows、macOS 和 Linux 上运行。
我希望第一个版本能够收集建议、想法、反馈和贡献。
文章链接,https://www.reddit.com/r/rust/comments/167zdd8/announcing_freya_gui_library/
Github 链接,https://github.com/marc2332/freya
Granian HTTP server
用于 Python 应用程序的 Rust HTTP 服务器。
Granian背后的主要原因是:
- 拥有单一、正确的 HTTP 实现,支持版本 1、2(最终是 3)
- 为多个平台提供单一包
- 避免 unix 系统上常见的 Gunicorn + uvicorn + http-tools 依赖组合
- 与现有替代方案相比,提供稳定的性能
文章链接,https://www.reddit.com/r/rust/comments/167yf41/granian_http_server_open_call_for_core/
Github 链接,https://github.com/emmett-framework/granian
Pavex DevLog #6: 设计安全且符合人体工程学的中间件
现在是 Pavex 的另一份进度报告的时候了,其中涵盖了 7 月和 8 月所做的工作!
我一直在努力实现一个目标:为 Pavex 添加中间件支持。目前还远未完善,但它(终于)可以工作了
我将利用这份报告作为深入探讨以下几个主题的机会:
- 为什么中间件支持是生产就绪的关键要求
- 为 Rust Web 框架设计中间件系统的挑战
- Pavex的中间件设计
- 我们当前实施的局限性
但如果您时间有限,这里有一个简单的超时中间件来展示 Pavex 中的中间件:
use pavex::{middleware::Next, response::Response};
use std::future::IntoFuture;
use tokio::time::{timeout, error::Elapsed};
pub async fn timeout_middleware<C>(
// A handle on the rest of the processing pipeline for the incoming
// request.
//
// Middlewares can choose to short-circuit the execution (i.e.
// return an error and abort the processing) or perform some
// computation and then delegate to `next` by awaiting it.
//
// All middlewares in Pavex *must* take `Next<_>` as an input.
next: Next<C>,
// Middlewares can take advantage of dependency injection!
// You just list what inputs you need and the framework will provide them
// (if possible, or return a nice error at *compile-time* if not).
//
// `TimeoutConfig` could be defined at start-up time, sharing the same
// value for all routes, or it could be customised at runtime on a
// per-request basis (e.g. to provide a configurable quality of service
// depending on the pricing plan of the client issueing the request).
// `timeout_middleware` doesn't care how or when `TimeoutConfig`
// gets computed.
// Happy decoupling!
config: TimeoutConfig
) -> Result<Response, Elapsed>
where
C: IntoFuture<Output = Response>
{
timeout(config.request_timeout, next.into_future()).await
}
文章链接,https://www.lpalmieri.com/posts/pavex-progress-report-06/
From 日报小组 TOM
社区学习交流平台订阅:
评论区
写评论还没有评论