64 lines
1.6 KiB
TOML
64 lines
1.6 KiB
TOML
[package]
|
|
name = "webenv"
|
|
version = "0.1.2"
|
|
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
|
|
|
|
[profile.dev]
|
|
opt-level = 0
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
|
|
[dependencies]
|
|
|
|
anyhow = "1.0.43"
|
|
async-trait = "0.1.42"
|
|
async-std = "1.10.0"
|
|
|
|
base64 = "0.13.0"
|
|
clap = "2.33.3"
|
|
dotenv = "0.15.0"
|
|
envmnt = "0.9.0"
|
|
glob = "0.3.0"
|
|
json = "0.12.4"
|
|
once_cell = "1.7.2"
|
|
parking_lot = "0.11.1"
|
|
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"
|
|
tempfile = "3.2.0"
|
|
thiserror = "1.0.29"
|
|
toml = "0.5.8"
|
|
|
|
app_tools = { version = "0.1.0", path = "../utils/app_tools" }
|
|
app_env = { version = "0.1.0", path = "../defs/app_env" }
|
|
app_auth = { version = "0.1.0", path = "../defs/app_auth" }
|
|
app_errors = { version = "0.1.0", path = "../defs/app_errors" }
|
|
kloud = { version = "0.1.0", path = "../defs/kloud" }
|
|
app_auth_handlers = { version = "0.1.0", path = "../handlers/app_auth_handlers" }
|
|
|
|
[dev-dependencies]
|
|
pretty_env_logger = "0.4"
|
|
tracing-subscriber = "0.2.15"
|
|
tracing-log = "0.1"
|
|
serde_derive = "1.0.130"
|
|
handlebars = "4.1.0"
|
|
tokio = { version = "1.11.0", features = ["macros", "rt-multi-thread"] }
|
|
tokio-stream = { version = "0.1.7", features = ["net"] }
|
|
listenfd = "0.3"
|
|
envmnt = "0.9.0"
|
|
|
|
[build-dependencies]
|
|
envmnt = "0.9.0"
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
bench = false
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|