7 个版本 (破坏性)
0.6.0 | 2021年6月28日 |
---|---|
0.5.0 | 2020年12月23日 |
0.4.0 | 2020年7月19日 |
0.3.1 | 2020年6月27日 |
0.1.0 | 2020年5月31日 |
#782 in 调试
每月下载 29 次
30KB
710 代码行
Ops
Rust 实现 operational-endpoints-spec,使将标准端点添加到您的应用程序变得容易。
用法
use ops::{StatusBuilder, server};
#[tokio::main]
async fn main() {
let status = StatusBuilder::always("my app", "a description");
let server = server("0.0.0.0:3000".parse().unwrap(), status);
server.await.unwrap();
}
示例
请参阅示例文件夹以获取可运行的示例。
许可
根据您的选择,许可如下
- Apache 许可证 2.0 版,(LICENSE-APACHE 或 http://www.apache.org/licenses/LICENSE-2.0)
- MIT 许可证 (LICENSE-MIT 或 http://opensource.org/licenses/MIT)
。
依赖
~4–17MB
~223K SLoC