35 lines
898 B
TOML
35 lines
898 B
TOML
[package]
|
|
name = "app_env"
|
|
version = "0.1.0"
|
|
authors = ["JesusPerez <jpl@jesusperez.pro>"]
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
|
|
anyhow = "1.0.40"
|
|
base64 = "0.13.0"
|
|
chrono = "0.4.19"
|
|
dotenv = "0.15.0"
|
|
envmnt = "0.9.0"
|
|
json = "0.12.4"
|
|
once_cell = "1.7.2"
|
|
parking_lot = "0.11.1"
|
|
rand = "0.8.3"
|
|
regex = "1.4.3"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_derive = "1.0.125"
|
|
serde_json = "1.0.64"
|
|
serde_yaml = "0.8.17"
|
|
tera = "1.8.0"
|
|
toml = "0.5.8"
|
|
uuid = { version = "0.8", features = ["serde", "v4"] }
|
|
app_tools = { version = "0.1.0", path = "../../utils/app_tools" }
|
|
datastores = { version = "0.1.0", path = "../../datastores/defs" }
|
|
connectors = { version = "0.1.0", path = "../../datastores/connectors" }
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = "0.7.2"
|
|
# test-case = "1.1.0" |