ZTerton/Cargo.toml

82 lines
2.8 KiB
TOML
Raw Permalink Normal View History

2021-08-28 14:23:34 +00:00
[package]
name = "zterton"
2021-10-14 17:28:56 +00:00
version = "0.1.3"
2021-08-28 14:23:34 +00:00
authors = ["JesusPerez <jpl@jesusperez.pro>"]
edition = "2018"
2021-09-08 18:28:03 +00:00
description= "WebServices and Clouds Monitoring for LibreCloud"
license-file = "LICENSE"
2021-08-28 14:23:34 +00:00
publish = false
[profile.dev]
opt-level = 0
[profile.release]
opt-level = 3
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2021-09-07 09:03:56 +00:00
anyhow = "1.0.43"
async-graphql = "2.9.14"
async-graphql-warp = "2.9.14"
2021-08-28 14:23:34 +00:00
async-jobs = "0.2.0"
2021-09-07 09:03:56 +00:00
async-std = "1.10.0"
2021-08-28 14:23:34 +00:00
base64 = "0.13.0"
2021-09-07 09:03:56 +00:00
bytes = "1.1.0"
casbin = "2.0.9"
2021-08-28 14:23:34 +00:00
chrono = "0.4.19"
2021-08-31 22:01:15 +00:00
dotenv = "0.15.0"
2021-08-28 14:23:34 +00:00
envmnt = "0.9.0"
2021-09-07 09:03:56 +00:00
futures-util = "0.3.17"
2021-08-28 14:23:34 +00:00
http = "0.2.4"
# lazy_static = "1.4.0"
log = "0.4.14"
2021-09-07 09:03:56 +00:00
once_cell = "1.8.0"
2021-08-28 14:23:34 +00:00
2021-09-07 09:03:56 +00:00
parking_lot = "0.11.2"
2021-08-28 14:23:34 +00:00
pretty_env_logger = "0.4"
2021-09-07 09:03:56 +00:00
serde = { version = "1.0.130", features = ["derive"] }
serde_derive = "1.0.130"
serde_json = "1.0.67"
serde_yaml = "0.8.20"
slab = "0.4.4"
tera = "1.12.1"
thiserror = "1.0.29"
2021-08-28 14:23:34 +00:00
warp = { version = "0.3.1", features = ["default","websocket","tls","compression"] }
toml = "0.5.8"
uuid = { version = "0.8.2", features = ["serde", "v5"] }
2021-09-07 09:03:56 +00:00
url = "2.2.2"
tokio = { version = "1.11.0", features = ["full"] }
2021-09-12 16:04:53 +00:00
tokio-cron-scheduler = "0.2.1"
2021-09-20 19:49:03 +00:00
redis = { version = "0.21.2", features = [ "tokio-comp", "cluster"] }
redis-graph = { version = "0.4.1", features = ['tokio-comp'] }
sqlx = {version = "0.5.7", default-features = false, features = ["macros","runtime-tokio-rustls","sqlite", "mysql", "postgres", "decimal", "chrono"]}
2021-10-08 23:58:21 +00:00
webenv = { version = "0.1.2", path = "../lib/webenv" }
2021-08-28 14:23:34 +00:00
app_tools = { version = "0.1.0", path = "../lib/utils/app_tools" }
app_env = { version = "0.1.0", path = "../lib/defs/app_env" }
2021-09-19 22:13:25 +00:00
datastores = { version = "0.1.0", path = "../lib/datastores/defs" }
connectors = { version = "0.1.0", path = "../lib/datastores/connectors" }
2021-08-28 14:23:34 +00:00
app_auth = { version = "0.1.0", path = "../lib/defs/app_auth" }
app_errors = { version = "0.1.0", path = "../lib/defs/app_errors" }
kloud = { version = "0.1.0", path = "../lib/defs/kloud" }
gql_playground = { version = "0.1.0", path = "../lib/graphql/gql_playground" }
app_auth_handlers = { version = "0.1.0", path = "../lib/handlers/app_auth_handlers" }
app_file_filters = { version = "0.1.0", path = "../lib/filters/app_file_filters" }
app_file_handlers = { version = "0.1.0", path = "../lib/handlers/app_file_handlers" }
reqtasks = { version = "0.1.0", path = "../lib/handlers/reqtasks" }
reqenv = { version = "0.1.0", path = "../lib/handlers/reqenv" }
app_auth_filters = { version = "0.1.0", path = "../lib/filters/app_auth_filters" }
reject_filters = { version = "0.1.0", path = "../lib/filters/reject_filters" }
#kloud_entries_macro_derive = { path = "../lib/macros/kloud_entries_macro_derive" }
clds = { version = "0.1.0", path = "../lib/clds" }
key_of_life = { path = "../lib/key_of_life" }
[dev-dependencies]
2021-10-08 23:58:21 +00:00
pretty_assertions = "1.0.0"