32 lines
551 B
TOML
32 lines
551 B
TOML
[package]
|
|
name = "webldappasswd"
|
|
version = "0.1.0"
|
|
authors = ["Philipp Matthias Schaefer <philipp.matthias.schaefer@posteo.de>"]
|
|
edition = "2018"
|
|
|
|
[profile.release]
|
|
lto = true
|
|
codegen-units = 1
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
clap = "2.33"
|
|
handlebars = "3.5"
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
serde_json = "1.0"
|
|
|
|
[dependencies.ldap3]
|
|
version = "0.9"
|
|
default-features = false
|
|
features = ["sync"]
|
|
|
|
[dependencies.rocket]
|
|
version = "0.4"
|
|
default-features = false
|
|
|
|
[dependencies.rocket_contrib]
|
|
version = "0.4"
|
|
default-features = false
|
|
features = ["json"]
|