6个版本
0.2.0 | 2023年7月25日 |
---|---|
0.1.4 | 2022年12月22日 |
0.1.3 | 2022年7月24日 |
805 在 HTTP服务器
每月 26 下载
12KB
262 代码行
Zero Rust SDK
Zero的Rust SDK。提供了一个清晰简单的接口,用于访问密钥管理器的GraphQL API。
安装
将以下内容添加到您的 Cargo.toml
[dependencies]
zero-sdk = "0.2.0"
使用方法
use zero_sdk::{Arguments, Zero};
let secrets = Zero::new(Arguments {
pick: Some(vec![String::from("my-secret")]),
token: String::from("my-zero-token-from-env"),
caller_name: Some(String::from("cicd")),
})
.unwrap()
.fetch();
依赖项
~25–41MB
~730K SLoC