mirror of
https://github.com/nitnelave/lldap.git
synced 2023-04-12 14:25:13 +00:00
7707367c35
The response used to contain just the JWT, but now it's wrapped in JSON. Fixes #282.
33 lines
638 B
TOML
33 lines
638 B
TOML
[package]
|
|
name = "migration-tool"
|
|
version = "0.3.0-alpha.1"
|
|
edition = "2021"
|
|
authors = ["Valentin Tolmer <valentin@tolmer.fr>"]
|
|
|
|
[dependencies]
|
|
anyhow = "*"
|
|
rand = "0.8"
|
|
requestty = "0.4.1"
|
|
serde = "1"
|
|
serde_json = "1"
|
|
smallvec = "*"
|
|
|
|
[dependencies.lldap_auth]
|
|
path = "../auth"
|
|
features = ["opaque_client"]
|
|
|
|
[dependencies.graphql_client]
|
|
features = ["graphql_query_derive", "reqwest-rustls"]
|
|
default-features = false
|
|
version = "0.11"
|
|
|
|
[dependencies.reqwest]
|
|
version = "*"
|
|
default-features = false
|
|
features = ["json", "blocking", "rustls-tls"]
|
|
|
|
[dependencies.ldap3]
|
|
version = "*"
|
|
default-features = false
|
|
features = ["sync", "tls-rustls"]
|