46 个版本
新 0.1.10 | 2024 年 8 月 16 日 |
---|---|
0.1.6 | 2024 年 7 月 30 日 |
0.0.36 | 2024 年 2 月 16 日 |
0.0.35 | 2023 年 12 月 15 日 |
0.0.6 | 2023 年 3 月 31 日 |
#245 在 HTTP 服务器
每月 875 次下载
用于 4 crates
310KB
8K SLoC
sylvia-iot-auth
Sylvia-IoT 平台的认证/授权模块。
本模块提供
- 支持以下授权流程的 OAuth2 授权
- 授权码
- 客户端凭证(待实现)
- 用户管理。
- 客户端管理。
文档
在您的 axum 应用中挂载 sylvia-iot-auth
您可以将 sylvia-iot-auth 简单地挂载到您的 axum 应用中
use axum::Router;
use clap::App as ClapApp;
use std::net::SocketAddr;
use sylvia_iot_auth::{libs, routes};
use tokio::{self, net::TcpListener};
#[tokio::main]
async fn main() -> std::io::Result<()> {
let args = ClapApp::new("your-project-name").get_matches();
let conf = libs::config::read_args(&args);
let auth_state = match routes::new_state("/auth", &conf).await {
Err(e) => {
println!("Error: {}", e);
return Ok(());
},
Ok(state) => state,
};
let app = Router::new().merge(routes::new_service(&auth_state));
let listener = match TcpListener::bind("0.0.0.0:1080").await.unwrap();
axum::serve(listener, app.into_make_service_with_connect_info::<SocketAddr>()).await
}
请参阅 src/bin/sylvia-iot-auth.rs
获取真实世界的示例。
依赖关系
~77MB
~1.5M SLoC