-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (25 loc) · 726 Bytes
/
Cargo.toml
File metadata and controls
28 lines (25 loc) · 726 Bytes
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
[package]
name = "sql2ldap"
version = "1.1.0"
authors = ["Joel Linn <jl@conductive.de>"]
license = "AGPL-3.0-only"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
caps = "0.5"
clap = { version = "4", features = [ "cargo" ] }
futures = "0.3"
ldap3_proto = "0.4"
libc = "0.2"
log = "0.4"
num_cpus = "1"
seccompiler = "0.4"
serde = "1"
serde_derive = "1"
simplelog = "0.12"
sqlx = { version = "0.7", features = [ "runtime-tokio-rustls", "postgres" ] }
tokio = { version = "1", features = ["rt-multi-thread", "io-util", "net", "signal", "macros"] }
tokio-util = { version = "0.7", features = ["codec"] }
toml = "0.8"
[profile.release]
lto = true