login_app 0.1.2

A generic login module for web apps
Documentation
[package]
name = "login_app"
version = "0.1.2"
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"
futures = "0.1"
hyper = "0.12"
tera = "0.11"  # used for templating web pages
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
percent-encoding = "2.1.0" #for decoding special characters, such as space, #, ;, etc prefixed with % in url string
csv = "1.1"

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