1 个不稳定版本
0.1.0 | 2023年2月6日 |
---|
#15 在 #tarantool
每月下载量 233
7KB
100 行
Ldapico
tarantool-module 使用的 ldap3 封装。
查看示例目录,了解如何为 tarantool-module 创建函数。
简单示例
use ldapico::Ldap;
use tokio::sync::oneshot::channel;
fn main() {
let ldap = Ldap::new("ldap://127.0.0.1:389");
let (tx, rx) = channel();
ldap.simple_bind(tx, "cn=user1,ou=users,dc=example,dc=org", "pwd1");
let result = rx.blocking_recv().unwrap().unwrap();
assert!(result.success().is_ok());
}
依赖项
~6–18MB
~224K SLoC