Crates.io | silent |
lib.rs | silent |
version | 1.5.0 |
source | src |
created_at | 2023-04-28 02:05:47.317347 |
updated_at | 2024-11-08 07:40:23.085339 |
description | Silent Web Framework |
homepage | https://github.com/hubertshelley/silent |
repository | https://github.com/hubertshelley/silent |
max_upload_size | |
id | 851111 |
size | 209,943 |
Silent 是一个简单的基于Hyper的Web框架,它的目标是提供一个简单的、高效的、易于使用的Web框架。
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)
}