| Crates.io | silent-openapi-macros |
| lib.rs | silent-openapi-macros |
| version | 2.9.0 |
| created_at | 2025-08-26 07:13:41.956073+00 |
| updated_at | 2025-09-25 01:27:46.245653+00 |
| description | Proc-macros for silent-openapi |
| homepage | https://github.com/silent-rs/silent |
| repository | https://github.com/silent-rs/silent |
| max_upload_size | |
| id | 1810630 |
| size | 22,166 |
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)
}