hermodapi 0.1.0

Hermod is a platform for automated business-customer interactions.
[package]
name = "hermodapi"
version = "0.1.0"
edition = "2018"
license = "MIT"
description = "Hermod is a platform for automated business-customer interactions."
homepage ="https://hermodapp.com"
repository = "https://github.com/hermodapp/api"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
actix = "0.11.0-beta.2"
actix-web = "4.0.0-beta.3"
tokio = "1.10.1"
serde-aux = "1.0.1"
serde = { version = "1.0", features = ["derive"] }
uuid = { version = "0.8", features = ["serde", "v4"] }
chrono = { version = "0.4", features = ["serde"] }
serde_json = "1.0.67"
anyhow = "1.0.43"
base64 = "0.13"
thiserror = "1.0.29"
config = { version = "0.10.1", default-features = false, features = ["yaml"] }
argon2 = { version = "0.3", features = ["std"] }
rand = { version = "0.8", features= ["std_rng"] }
actix-identity = "0.4.0-beta.2"
actix-session = "0.5.0-beta.2"
tracing = "0.1.26"
tracing-bunyan-formatter = "0.2.5"
tracing-log = "0.1.2"
tracing-subscriber = "0.2.20"

[dependencies.sqlx]
version="0.5.7"
default-features = false
features = [
    "runtime-actix-rustls", 
    "macros", 
    "postgres", 
    "uuid", 
    "chrono", 
    "migrate",
    "offline"
]


[dev-dependencies]
actix-rt = "2.0.2"
reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls"] }
once_cell = "1.7.2"