Silent 是一个简单的基于Hyper的Web框架,它的目标是提供一个简单的、高效的、易于使用的Web框架。
- 路由
- 中间件
- 静态文件
- WebSocket
- 模板
- 数据库
- 日志 (使用了tracing)
- 配置
- 会话
- 安全
- 测试
- 文档
- GRPC
add make_password and verify_password function
add make_password and verify_password function
re-export aes/aes_gcm
re-export rsa
use silent::Configs;
let mut configs = Configs::default ();
configs.insert(1i32);
async fn call(req: Request) -> Result<i32> {
let num = req.configs().get::<i32>().unwrap();
Ok(*num)
}