login_app 0.1.5

A generic login module for web apps
Documentation
[package]
name = "login_app"
version = "0.1.5"
authors = ["Mohankumar Anna <mohankumar.anna@outlook.com>"]
edition = "2018"
license = "MIT"
description = "A generic login module for web apps"
readme = "README.md"
homepage = "https://github.com/mohankumaranna/login_app"
repository = "https://github.com/mohankumaranna/login_app"
keywords = ["library", "tool", "utility"]
categories = ["web-programming::http-server", "web-programming::http-client"]

[dependencies]
chrono = "0.4" # used for date and time features
log = "0.4"
simplelog = "^0.6.0"
isahc = "0.6" # used for url calls
config = "0.9"
lazy_static = "1.3"
regex = "1"
rand = "0.7"
bcrypt = "0.6"
native-tls = "0.2.3"
tokio = { version = "0.2", features = ["full"] }
futures = "0.3.1"
futures-util = { version = "0.3", default-features = false }
hyper = "0.13"
http = "0.2"
tera = "0.11"  # used for templating web pages
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
url = "1.0"

[dependencies.rusqlite]
version = "0.20.0"
features = ["bundled"]