rpa_macros 0.5.1

Macros Module for RPA.
Documentation
[package]
name = "rpa_macros"
version = "0.5.1"
authors = ["jonathan <jonathan.franco.2103@gmail.com>", "hebert <hebver20@gmail.com>"]
edition = "2018"
license-file = "LICENSE"
description = "Macros Module for RPA."
repository = "https://gitlab.com/artsoftwar3/public-libraries/rust/rpa_modules/rpa_macros"
readme = "Readme.md"
keywords = ["rpa", "database", "jpa", "persistence", "diesel"]
categories = ["database", "database-implementations"]

[dependencies]
rocket = "0.4.10"
serde_json = "1.0.64"
Inflector = "0.11.4"
regex = "1.5.4"
log = "0.4.14"

[dependencies.rocket_contrib]
version = "0.4.10"
default-features = false
features = ["json", "diesel_mysql_pool"]

# For connecting with the MySQL database
[dependencies.diesel]
version = "1.4.6"
features = ["chrono", "numeric"]

# bigdecimal for diesel has to be compatible, for now we have that diesel needs bigdecimal < 0.2.0
[dependencies.bigdecimal]
version = "0.2.0"
features = ["serde"]

[dependencies.serde]
version = "1.0.126"
features = ["derive"]

[dependencies.chrono]
version = "0.4.19"
features = ["serde"]