mirror of
https://github.com/lldap/lldap.git
synced 2024-11-24 16:47:01 +00:00
37 lines
831 B
TOML
37 lines
831 B
TOML
[package]
|
|
authors = ["Valentin Tolmer <valentin@tolmer.fr>"]
|
|
description = "CLI migration tool to go from OpenLDAP to LLDAP"
|
|
edition = "2021"
|
|
homepage = "https://github.com/lldap/lldap"
|
|
license = "GPL-3.0-only"
|
|
name = "lldap_migration_tool"
|
|
repository = "https://github.com/lldap/lldap"
|
|
version = "0.4.2"
|
|
|
|
[dependencies]
|
|
anyhow = "*"
|
|
base64 = "0.13"
|
|
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"]
|