-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
35 lines (30 loc) · 897 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
authors = ["Kasun Ranasingge <[email protected]>"]
description = "A high-level LDAP client for Rust"
license = "MIT/Apache-2.0"
readme = "README.md"
repository = "https://github.com/keaz/simple-ldap"
keywords = ["ldap", "ldap3", "async", "high-level"]
name = "simple-ldap"
version = "2.1.1"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-trait = "0.1.83"
deadpool = "0.10.0"
futures = "0.3.31"
ldap3 = { version = "0.11.5", default-features = false }
log = "0.4.22"
serde = { version = "1.0.214", features = ["derive"] }
serde-value = "0.7.0"
serde_json = "1.0.132"
thiserror = "2.0.2"
[features]
default = ["ldap3/default"]
tls = ["ldap3/tls"]
tls-native = ["ldap3/tls-native"]
tls-rustls = ["ldap3/tls-rustls"]
gssapi = ["ldap3/gssapi"]
sync = ["ldap3/sync"]
[lib]
doctest = false