82 lines
2.8 KiB
TOML
82 lines
2.8 KiB
TOML
[package]
|
|
name = "zterton"
|
|
version = "0.1.3"
|
|
authors = ["JesusPerez <jpl@jesusperez.pro>"]
|
|
edition = "2018"
|
|
description= "WebServices and Clouds Monitoring for LibreCloud"
|
|
license-file = "LICENSE"
|
|
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]
|
|
|
|
anyhow = "1.0.43"
|
|
async-graphql = "2.9.14"
|
|
async-graphql-warp = "2.9.14"
|
|
async-jobs = "0.2.0"
|
|
async-std = "1.10.0"
|
|
base64 = "0.13.0"
|
|
bytes = "1.1.0"
|
|
casbin = "2.0.9"
|
|
chrono = "0.4.19"
|
|
dotenv = "0.15.0"
|
|
envmnt = "0.9.0"
|
|
futures-util = "0.3.17"
|
|
http = "0.2.4"
|
|
# lazy_static = "1.4.0"
|
|
log = "0.4.14"
|
|
once_cell = "1.8.0"
|
|
|
|
parking_lot = "0.11.2"
|
|
pretty_env_logger = "0.4"
|
|
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"
|
|
|
|
warp = { version = "0.3.1", features = ["default","websocket","tls","compression"] }
|
|
toml = "0.5.8"
|
|
|
|
uuid = { version = "0.8.2", features = ["serde", "v5"] }
|
|
url = "2.2.2"
|
|
tokio = { version = "1.11.0", features = ["full"] }
|
|
tokio-cron-scheduler = "0.2.1"
|
|
|
|
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"]}
|
|
|
|
webenv = { version = "0.1.2", path = "../lib/webenv" }
|
|
|
|
app_tools = { version = "0.1.0", path = "../lib/utils/app_tools" }
|
|
app_env = { version = "0.1.0", path = "../lib/defs/app_env" }
|
|
datastores = { version = "0.1.0", path = "../lib/datastores/defs" }
|
|
connectors = { version = "0.1.0", path = "../lib/datastores/connectors" }
|
|
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]
|
|
pretty_assertions = "1.0.0"
|