auth-server/Cargo.toml

26 lines
693 B
TOML

[package]
name = "auth"
version = "0.1.0"
authors = ["alex"]
edition = "2018"
[dependencies]
rocket = { git = "https://github.com/SergioBenitez/Rocket.git", branch="master" }
rocket_contrib = { git = "https://github.com/SergioBenitez/Rocket.git", branch="master", features = ["tera_templates", "diesel_postgres_pool"] }
diesel = { version = "1.4.3", features = ["postgres", "chrono"] }
chrono = { version = "0.4.10", features = ["serde"] }
r2d2 = "0.8.8"
r2d2-diesel = "1.0.0"
futures = "0.1.21"
ldap3 = "0.6"
tokio = "0.1.0"
base64 = "0.10.0"
serde = "1.0.40"
serde_json = "1.0.40"
serde_derive = "1.0.40"
biscuit = "0.4.1"
num = "0.2"
openssl = "0.10.28"
env_logger = "0.7.1"
log = "0.4.8"