viz
viz copied to clipboard
Fast, flexible, lightweight web framework for Rust
RPC
rustc -V rustc 1.78.0 (9b00956e5 2024-04-29) windows 10 stable-x86_64-pc-windows-gnu ``` cargo new app > cd app > cargo add viz > cargo add tokio ``` config.toml : ``` [package] name...
This problem of Viz is exactly the same as Axum: https://github.com/tokio-rs/axum/issues/2611 This is due to a bug in `hyper-util`: issue: https://github.com/hyperium/hyper/issues/3576 pr: https://github.com/hyperium/hyper-util/pull/101 Patching `hyper-util` in Cargo.toml like this also...
功能相关疑问
我认真阅读了相关代码,发现代码质量非常高,接口设计也非常合理。 但是我想,我和很多开发者可能都会有以下几个疑问: 1. 这里有一个长期性的组织吗?因为个人项目较为难以成为核心基石,尤其是web框架这种,可能一旦选型就是公司根本性的选择 2. viz除了代码质量高外,核心的特色是什么?我怎么说服同时不选择axum,而选择viz这个小众的项目。仅仅只是代码质量更高? 其实周围有团队选择了salvo,其实salvo很多东西做得一般,但是核心是特色明显,他们主打支持http3和简化了https以及openapi等。我个人非常喜欢viz的代码和设计风格。也真心希望这个项目越来越好,但是可能是时候,写一些文档,建立一些信条和方向,让开发者们知道viz的特点是什么,已经在什么情况下选择viz
I am interested in building a full-stack blog website with Rust and found viz-rs to be a suitable package for this purpose. This project also serves as my introduction to...